gtest_list_tests_unittest.py 5.29 KB
Newer Older
shiqian's avatar
shiqian committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
#
# Copyright 2006, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
#     * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

"""Unit test for Google Test's --gtest_list_tests flag.

A user can ask Google Test to list all tests by specifying the
--gtest_list_tests flag.  This script tests such functionality
by invoking gtest_list_tests_unittest_ (a program written with
Google Test) the command line flags.
"""

__author__ = 'phanna@google.com (Patrick Hanna)'

42
import gtest_test_utils
shiqian's avatar
shiqian committed
43
44
45
46
47
48
49
50


# Constants.

# The command line flag for enabling/disabling listing all tests.
LIST_TESTS_FLAG = 'gtest_list_tests'

# Path to the gtest_list_tests_unittest_ program.
51
EXE_PATH = gtest_test_utils.GetTestExecutablePath('gtest_list_tests_unittest_')
shiqian's avatar
shiqian committed
52
53
54

# The expected output when running gtest_list_tests_unittest_ with
# --gtest_list_tests
55
EXPECTED_OUTPUT_NO_FILTER = """FooDeathTest.
shiqian's avatar
shiqian committed
56
57
58
59
  Test1
Foo.
  Bar1
  Bar2
60
  DISABLED_Bar3
shiqian's avatar
shiqian committed
61
62
63
64
65
66
67
Abc.
  Xyz
  Def
FooBar.
  Baz
FooTest.
  Test1
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  DISABLED_Test2
  Test3
"""

# The expected output when running gtest_list_tests_unittest_ with
# --gtest_list_tests and --gtest_filter=Foo*.
EXPECTED_OUTPUT_FILTER_FOO = """FooDeathTest.
  Test1
Foo.
  Bar1
  Bar2
  DISABLED_Bar3
FooBar.
  Baz
FooTest.
  Test1
  DISABLED_Test2
shiqian's avatar
shiqian committed
85
86
87
88
89
  Test3
"""

# Utilities.

90

91
92
def Run(args):
  """Runs gtest_list_tests_unittest_ and returns the list of tests printed."""
shiqian's avatar
shiqian committed
93

94
95
  return gtest_test_utils.Subprocess([EXE_PATH] + args,
                                     capture_stderr=False).output
shiqian's avatar
shiqian committed
96
97
98
99


# The unit test.

100
class GTestListTestsUnitTest(gtest_test_utils.TestCase):
101
  """Tests using the --gtest_list_tests flag to list all tests."""
shiqian's avatar
shiqian committed
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119

  def RunAndVerify(self, flag_value, expected_output, other_flag):
    """Runs gtest_list_tests_unittest_ and verifies that it prints
    the correct tests.

    Args:
      flag_value:       value of the --gtest_list_tests flag;
                        None if the flag should not be present.

      expected_output:  the expected output after running command;

      other_flag:       a different flag to be passed to command
                        along with gtest_list_tests;
                        None if the flag should not be present.
    """

    if flag_value is None:
      flag = ''
120
      flag_expression = 'not set'
shiqian's avatar
shiqian committed
121
    elif flag_value == '0':
122
123
      flag = '--%s=0' % LIST_TESTS_FLAG
      flag_expression = '0'
shiqian's avatar
shiqian committed
124
    else:
125
126
      flag = '--%s' % LIST_TESTS_FLAG
      flag_expression = '1'
shiqian's avatar
shiqian committed
127

128
    args = [flag]
shiqian's avatar
shiqian committed
129
130

    if other_flag is not None:
131
      args += [other_flag]
shiqian's avatar
shiqian committed
132

133
    output = Run(args)
shiqian's avatar
shiqian committed
134
135

    msg = ('when %s is %s, the output of "%s" is "%s".' %
136
           (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output))
shiqian's avatar
shiqian committed
137
138
139
140

    if expected_output is not None:
      self.assert_(output == expected_output, msg)
    else:
141
      self.assert_(output != EXPECTED_OUTPUT_NO_FILTER, msg)
shiqian's avatar
shiqian committed
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156

  def testDefaultBehavior(self):
    """Tests the behavior of the default mode."""

    self.RunAndVerify(flag_value=None,
                      expected_output=None,
                      other_flag=None)

  def testFlag(self):
    """Tests using the --gtest_list_tests flag."""

    self.RunAndVerify(flag_value='0',
                      expected_output=None,
                      other_flag=None)
    self.RunAndVerify(flag_value='1',
157
                      expected_output=EXPECTED_OUTPUT_NO_FILTER,
shiqian's avatar
shiqian committed
158
159
                      other_flag=None)

160
161
  def testOverrideNonFilterFlags(self):
    """Tests that --gtest_list_tests overrides the non-filter flags."""
shiqian's avatar
shiqian committed
162

163
    self.RunAndVerify(flag_value='1',
164
                      expected_output=EXPECTED_OUTPUT_NO_FILTER,
165
                      other_flag='--gtest_break_on_failure')
shiqian's avatar
shiqian committed
166

167
168
169
170
  def testWithFilterFlags(self):
    """Tests that --gtest_list_tests takes into account the
    --gtest_filter flag."""

171
    self.RunAndVerify(flag_value='1',
172
                      expected_output=EXPECTED_OUTPUT_FILTER_FOO,
173
                      other_flag='--gtest_filter=Foo*')
174
175


shiqian's avatar
shiqian committed
176
177
if __name__ == '__main__':
  gtest_test_utils.Main()