gtest_env_var_test.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #!/usr/bin/env python
  2. #
  3. # Copyright 2008, Google Inc.
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions are
  8. # met:
  9. #
  10. # * Redistributions of source code must retain the above copyright
  11. # notice, this list of conditions and the following disclaimer.
  12. # * Redistributions in binary form must reproduce the above
  13. # copyright notice, this list of conditions and the following disclaimer
  14. # in the documentation and/or other materials provided with the
  15. # distribution.
  16. # * Neither the name of Google Inc. nor the names of its
  17. # contributors may be used to endorse or promote products derived from
  18. # this software without specific prior written permission.
  19. #
  20. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. """Verifies that Google Test correctly parses environment variables."""
  32. __author__ = 'wan@google.com (Zhanyong Wan)'
  33. import os
  34. import gtest_test_utils
  35. IS_WINDOWS = os.name == 'nt'
  36. IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux'
  37. COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_env_var_test_')
  38. environ = os.environ.copy()
  39. def AssertEq(expected, actual):
  40. if expected != actual:
  41. print 'Expected: %s' % (expected,)
  42. print ' Actual: %s' % (actual,)
  43. raise AssertionError
  44. def SetEnvVar(env_var, value):
  45. """Sets the env variable to 'value'; unsets it when 'value' is None."""
  46. if value is not None:
  47. environ[env_var] = value
  48. elif env_var in environ:
  49. del environ[env_var]
  50. def GetFlag(flag):
  51. """Runs gtest_env_var_test_ and returns its output."""
  52. args = [COMMAND]
  53. if flag is not None:
  54. args += [flag]
  55. return gtest_test_utils.Subprocess(args, env=environ).output
  56. def TestFlag(flag, test_val, default_val):
  57. """Verifies that the given flag is affected by the corresponding env var."""
  58. env_var = 'GTEST_' + flag.upper()
  59. SetEnvVar(env_var, test_val)
  60. AssertEq(test_val, GetFlag(flag))
  61. SetEnvVar(env_var, None)
  62. AssertEq(default_val, GetFlag(flag))
  63. class GTestEnvVarTest(gtest_test_utils.TestCase):
  64. def testEnvVarAffectsFlag(self):
  65. """Tests that environment variable should affect the corresponding flag."""
  66. TestFlag('break_on_failure', '1', '0')
  67. TestFlag('color', 'yes', 'auto')
  68. TestFlag('filter', 'FooTest.Bar', '*')
  69. TestFlag('output', 'xml:tmp/foo.xml', '')
  70. TestFlag('print_time', '0', '1')
  71. TestFlag('repeat', '999', '1')
  72. TestFlag('throw_on_failure', '1', '0')
  73. TestFlag('death_test_style', 'threadsafe', 'fast')
  74. TestFlag('catch_exceptions', '0', '1')
  75. if IS_LINUX:
  76. TestFlag('death_test_use_fork', '1', '0')
  77. TestFlag('stack_trace_depth', '0', '100')
  78. if __name__ == '__main__':
  79. gtest_test_utils.Main()