You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

218 lines
7.0 KiB

  1. #!/usr/bin/env python
  2. #
  3. # Copyright 2006, 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. """Unit test for Google Test's break-on-failure mode.
  32. A user can ask Google Test to seg-fault when an assertion fails, using
  33. either the GTEST_BREAK_ON_FAILURE environment variable or the
  34. --gtest_break_on_failure flag. This script tests such functionality
  35. by invoking gtest_break_on_failure_unittest_ (a program written with
  36. Google Test) with different environments and command line flags.
  37. """
  38. __author__ = 'wan@google.com (Zhanyong Wan)'
  39. import gtest_test_utils
  40. import os
  41. import sys
  42. # Constants.
  43. IS_WINDOWS = os.name == 'nt'
  44. # The environment variable for enabling/disabling the break-on-failure mode.
  45. BREAK_ON_FAILURE_ENV_VAR = 'GTEST_BREAK_ON_FAILURE'
  46. # The command line flag for enabling/disabling the break-on-failure mode.
  47. BREAK_ON_FAILURE_FLAG = 'gtest_break_on_failure'
  48. # The environment variable for enabling/disabling the throw-on-failure mode.
  49. THROW_ON_FAILURE_ENV_VAR = 'GTEST_THROW_ON_FAILURE'
  50. # The environment variable for enabling/disabling the catch-exceptions mode.
  51. CATCH_EXCEPTIONS_ENV_VAR = 'GTEST_CATCH_EXCEPTIONS'
  52. # Path to the gtest_break_on_failure_unittest_ program.
  53. EXE_PATH = gtest_test_utils.GetTestExecutablePath(
  54. 'gtest_break_on_failure_unittest_')
  55. # Utilities.
  56. environ = os.environ.copy()
  57. def SetEnvVar(env_var, value):
  58. """Sets an environment variable to a given value; unsets it when the
  59. given value is None.
  60. """
  61. if value is not None:
  62. environ[env_var] = value
  63. elif env_var in environ:
  64. del environ[env_var]
  65. def Run(command):
  66. """Runs a command; returns 1 if it was killed by a signal, or 0 otherwise."""
  67. p = gtest_test_utils.Subprocess(command, env=environ)
  68. if p.terminated_by_signal:
  69. return 1
  70. else:
  71. return 0
  72. # The tests.
  73. class GTestBreakOnFailureUnitTest(gtest_test_utils.TestCase):
  74. """Tests using the GTEST_BREAK_ON_FAILURE environment variable or
  75. the --gtest_break_on_failure flag to turn assertion failures into
  76. segmentation faults.
  77. """
  78. def RunAndVerify(self, env_var_value, flag_value, expect_seg_fault):
  79. """Runs gtest_break_on_failure_unittest_ and verifies that it does
  80. (or does not) have a seg-fault.
  81. Args:
  82. env_var_value: value of the GTEST_BREAK_ON_FAILURE environment
  83. variable; None if the variable should be unset.
  84. flag_value: value of the --gtest_break_on_failure flag;
  85. None if the flag should not be present.
  86. expect_seg_fault: 1 if the program is expected to generate a seg-fault;
  87. 0 otherwise.
  88. """
  89. SetEnvVar(BREAK_ON_FAILURE_ENV_VAR, env_var_value)
  90. if env_var_value is None:
  91. env_var_value_msg = ' is not set'
  92. else:
  93. env_var_value_msg = '=' + env_var_value
  94. if flag_value is None:
  95. flag = ''
  96. elif flag_value == '0':
  97. flag = '--%s=0' % BREAK_ON_FAILURE_FLAG
  98. else:
  99. flag = '--%s' % BREAK_ON_FAILURE_FLAG
  100. command = [EXE_PATH]
  101. if flag:
  102. command.append(flag)
  103. if expect_seg_fault:
  104. should_or_not = 'should'
  105. else:
  106. should_or_not = 'should not'
  107. has_seg_fault = Run(command)
  108. SetEnvVar(BREAK_ON_FAILURE_ENV_VAR, None)
  109. msg = ('when %s%s, an assertion failure in "%s" %s cause a seg-fault.' %
  110. (BREAK_ON_FAILURE_ENV_VAR, env_var_value_msg, ' '.join(command),
  111. should_or_not))
  112. self.assert_(has_seg_fault == expect_seg_fault, msg)
  113. def testDefaultBehavior(self):
  114. """Tests the behavior of the default mode."""
  115. self.RunAndVerify(env_var_value=None,
  116. flag_value=None,
  117. expect_seg_fault=0)
  118. def testEnvVar(self):
  119. """Tests using the GTEST_BREAK_ON_FAILURE environment variable."""
  120. self.RunAndVerify(env_var_value='0',
  121. flag_value=None,
  122. expect_seg_fault=0)
  123. self.RunAndVerify(env_var_value='1',
  124. flag_value=None,
  125. expect_seg_fault=1)
  126. def testFlag(self):
  127. """Tests using the --gtest_break_on_failure flag."""
  128. self.RunAndVerify(env_var_value=None,
  129. flag_value='0',
  130. expect_seg_fault=0)
  131. self.RunAndVerify(env_var_value=None,
  132. flag_value='1',
  133. expect_seg_fault=1)
  134. def testFlagOverridesEnvVar(self):
  135. """Tests that the flag overrides the environment variable."""
  136. self.RunAndVerify(env_var_value='0',
  137. flag_value='0',
  138. expect_seg_fault=0)
  139. self.RunAndVerify(env_var_value='0',
  140. flag_value='1',
  141. expect_seg_fault=1)
  142. self.RunAndVerify(env_var_value='1',
  143. flag_value='0',
  144. expect_seg_fault=0)
  145. self.RunAndVerify(env_var_value='1',
  146. flag_value='1',
  147. expect_seg_fault=1)
  148. def testBreakOnFailureOverridesThrowOnFailure(self):
  149. """Tests that gtest_break_on_failure overrides gtest_throw_on_failure."""
  150. SetEnvVar(THROW_ON_FAILURE_ENV_VAR, '1')
  151. try:
  152. self.RunAndVerify(env_var_value=None,
  153. flag_value='1',
  154. expect_seg_fault=1)
  155. finally:
  156. SetEnvVar(THROW_ON_FAILURE_ENV_VAR, None)
  157. if IS_WINDOWS:
  158. def testCatchExceptionsDoesNotInterfere(self):
  159. """Tests that gtest_catch_exceptions doesn't interfere."""
  160. SetEnvVar(CATCH_EXCEPTIONS_ENV_VAR, '1')
  161. try:
  162. self.RunAndVerify(env_var_value='1',
  163. flag_value='1',
  164. expect_seg_fault=1)
  165. finally:
  166. SetEnvVar(CATCH_EXCEPTIONS_ENV_VAR, None)
  167. if __name__ == '__main__':
  168. gtest_test_utils.Main()