gtest_xml_output_unittest.py 13.3 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
#!/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 the gtest_xml_output module"""

__author__ = 'eefacm@gmail.com (Sean Mcafee)'

36
import datetime
shiqian's avatar
shiqian committed
37
38
import errno
import os
39
import re
shiqian's avatar
shiqian committed
40
41
42
import sys
from xml.dom import minidom, Node

43
import gtest_test_utils
shiqian's avatar
shiqian committed
44
45
import gtest_xml_test_utils

46

vladlosev's avatar
vladlosev committed
47
GTEST_LIST_TESTS_FLAG = '--gtest_list_tests'
shiqian's avatar
shiqian committed
48
49
GTEST_OUTPUT_FLAG         = "--gtest_output"
GTEST_DEFAULT_OUTPUT_FILE = "test_detail.xml"
50
GTEST_PROGRAM_NAME = "gtest_xml_output_unittest_"
shiqian's avatar
shiqian committed
51

52
53
54
SUPPORTS_STACK_TRACES = False

if SUPPORTS_STACK_TRACES:
vladlosev's avatar
vladlosev committed
55
  STACK_TRACE_TEMPLATE = '\nStack trace:\n*'
56
else:
vladlosev's avatar
vladlosev committed
57
  STACK_TRACE_TEMPLATE = ''
58

shiqian's avatar
shiqian committed
59
EXPECTED_NON_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
60
<testsuites tests="23" failures="4" disabled="2" errors="0" time="*" timestamp="*" name="AllTests" ad_hoc_property="42">
shiqian's avatar
shiqian committed
61
62
63
64
65
  <testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*">
    <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/>
  </testsuite>
  <testsuite name="FailedTest" tests="1" failures="1" disabled="0" errors="0" time="*">
    <testcase name="Fails" status="run" time="*" classname="FailedTest">
66
      <failure message="gtest_xml_output_unittest_.cc:*&#x0A;Value of: 2&#x0A;Expected: 1" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
shiqian's avatar
shiqian committed
67
Value of: 2
68
Expected: 1%(stack)s]]></failure>
shiqian's avatar
shiqian committed
69
70
71
72
73
    </testcase>
  </testsuite>
  <testsuite name="MixedResultTest" tests="3" failures="1" disabled="1" errors="0" time="*">
    <testcase name="Succeeds" status="run" time="*" classname="MixedResultTest"/>
    <testcase name="Fails" status="run" time="*" classname="MixedResultTest">
74
      <failure message="gtest_xml_output_unittest_.cc:*&#x0A;Value of: 2&#x0A;Expected: 1" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
shiqian's avatar
shiqian committed
75
Value of: 2
76
Expected: 1%(stack)s]]></failure>
77
      <failure message="gtest_xml_output_unittest_.cc:*&#x0A;Value of: 3&#x0A;Expected: 2" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
shiqian's avatar
shiqian committed
78
Value of: 3
79
Expected: 2%(stack)s]]></failure>
shiqian's avatar
shiqian committed
80
81
82
    </testcase>
    <testcase name="DISABLED_test" status="notrun" time="*" classname="MixedResultTest"/>
  </testsuite>
83
84
  <testsuite name="XmlQuotingTest" tests="1" failures="1" disabled="0" errors="0" time="*">
    <testcase name="OutputsCData" status="run" time="*" classname="XmlQuotingTest">
85
      <failure message="gtest_xml_output_unittest_.cc:*&#x0A;Failed&#x0A;XML output: &lt;?xml encoding=&quot;utf-8&quot;&gt;&lt;top&gt;&lt;![CDATA[cdata text]]&gt;&lt;/top&gt;" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
86
87
88
89
90
91
Failed
XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
    </testcase>
  </testsuite>
  <testsuite name="InvalidCharactersTest" tests="1" failures="1" disabled="0" errors="0" time="*">
    <testcase name="InvalidCharactersInMessage" status="run" time="*" classname="InvalidCharactersTest">
92
      <failure message="gtest_xml_output_unittest_.cc:*&#x0A;Failed&#x0A;Invalid characters in brackets []" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
93
94
95
96
Failed
Invalid characters in brackets []%(stack)s]]></failure>
    </testcase>
  </testsuite>
shiqian's avatar
shiqian committed
97
98
99
  <testsuite name="DisabledTest" tests="1" failures="0" disabled="1" errors="0" time="*">
    <testcase name="DISABLED_test_not_run" status="notrun" time="*" classname="DisabledTest"/>
  </testsuite>
100
  <testsuite name="PropertyRecordingTest" tests="4" failures="0" disabled="0" errors="0" time="*" SetUpTestCase="yes" TearDownTestCase="aye">
shiqian's avatar
shiqian committed
101
102
103
104
105
106
107
108
109
110
    <testcase name="OneProperty" status="run" time="*" classname="PropertyRecordingTest" key_1="1"/>
    <testcase name="IntValuedProperty" status="run" time="*" classname="PropertyRecordingTest" key_int="1"/>
    <testcase name="ThreeProperties" status="run" time="*" classname="PropertyRecordingTest" key_1="1" key_2="2" key_3="3"/>
    <testcase name="TwoValuesForOneKeyUsesLastValue" status="run" time="*" classname="PropertyRecordingTest" key_1="2"/>
  </testsuite>
  <testsuite name="NoFixtureTest" tests="3" failures="0" disabled="0" errors="0" time="*">
     <testcase name="RecordProperty" status="run" time="*" classname="NoFixtureTest" key="1"/>
     <testcase name="ExternalUtilityThatCallsRecordIntValuedProperty" status="run" time="*" classname="NoFixtureTest" key_for_utility_int="1"/>
     <testcase name="ExternalUtilityThatCallsRecordStringValuedProperty" status="run" time="*" classname="NoFixtureTest" key_for_utility_string="1"/>
  </testsuite>
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  <testsuite name="Single/ValueParamTest" tests="4" failures="0" disabled="0" errors="0" time="*">
    <testcase name="HasValueParamAttribute/0" value_param="33" status="run" time="*" classname="Single/ValueParamTest" />
    <testcase name="HasValueParamAttribute/1" value_param="42" status="run" time="*" classname="Single/ValueParamTest" />
    <testcase name="AnotherTestThatHasValueParamAttribute/0" value_param="33" status="run" time="*" classname="Single/ValueParamTest" />
    <testcase name="AnotherTestThatHasValueParamAttribute/1" value_param="42" status="run" time="*" classname="Single/ValueParamTest" />
  </testsuite>
  <testsuite name="TypedTest/0" tests="1" failures="0" disabled="0" errors="0" time="*">
    <testcase name="HasTypeParamAttribute" type_param="*" status="run" time="*" classname="TypedTest/0" />
  </testsuite>
  <testsuite name="TypedTest/1" tests="1" failures="0" disabled="0" errors="0" time="*">
    <testcase name="HasTypeParamAttribute" type_param="*" status="run" time="*" classname="TypedTest/1" />
  </testsuite>
  <testsuite name="Single/TypeParameterizedTestCase/0" tests="1" failures="0" disabled="0" errors="0" time="*">
    <testcase name="HasTypeParamAttribute" type_param="*" status="run" time="*" classname="Single/TypeParameterizedTestCase/0" />
  </testsuite>
  <testsuite name="Single/TypeParameterizedTestCase/1" tests="1" failures="0" disabled="0" errors="0" time="*">
    <testcase name="HasTypeParamAttribute" type_param="*" status="run" time="*" classname="Single/TypeParameterizedTestCase/1" />
  </testsuite>
129
</testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
shiqian's avatar
shiqian committed
130
131
132


EXPECTED_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
133
<testsuites tests="0" failures="0" disabled="0" errors="0" time="*" timestamp="*" name="AllTests">
134
</testsuites>"""
shiqian's avatar
shiqian committed
135

vladlosev's avatar
vladlosev committed
136
137
138
139
140
GTEST_PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath(GTEST_PROGRAM_NAME)

SUPPORTS_TYPED_TESTS = 'TypedTest' in gtest_test_utils.Subprocess(
    [GTEST_PROGRAM_PATH, GTEST_LIST_TESTS_FLAG], capture_stderr=False).output

shiqian's avatar
shiqian committed
141
142
143
144
145
146

class GTestXMLOutputUnitTest(gtest_xml_test_utils.GTestXMLTestCase):
  """
  Unit test for Google Test's XML output functionality.
  """

vladlosev's avatar
vladlosev committed
147
148
149
150
151
152
153
154
155
  # This test currently breaks on platforms that do not support typed and
  # type-parameterized tests, so we don't run it under them.
  if SUPPORTS_TYPED_TESTS:
    def testNonEmptyXmlOutput(self):
      """
      Runs a test program that generates a non-empty XML output, and
      tests that the XML output is expected.
      """
      self._TestXmlOutput(GTEST_PROGRAM_NAME, EXPECTED_NON_EMPTY_XML, 1)
shiqian's avatar
shiqian committed
156
157

  def testEmptyXmlOutput(self):
158
159
    """Verifies XML output for a Google Test binary without actual tests.

shiqian's avatar
shiqian committed
160
161
162
163
    Runs a test program that generates an empty XML output, and
    tests that the XML output is expected.
    """

vladlosev's avatar
vladlosev committed
164
    self._TestXmlOutput('gtest_no_test_unittest', EXPECTED_EMPTY_XML, 0)
shiqian's avatar
shiqian committed
165

166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
  def testTimestampValue(self):
    """Checks whether the timestamp attribute in the XML output is valid.

    Runs a test program that generates an empty XML output, and checks if
    the timestamp attribute in the testsuites tag is valid.
    """
    actual = self._GetXmlOutput('gtest_no_test_unittest', 0)
    date_time_str = actual.documentElement.getAttributeNode('timestamp').value
    # datetime.strptime() is only available in Python 2.5+ so we have to
    # parse the expected datetime manually.
    match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
    self.assertTrue(
        re.match,
        'XML datettime string %s has incorrect format' % date_time_str)
    date_time_from_xml = datetime.datetime(
        year=int(match.group(1)), month=int(match.group(2)),
        day=int(match.group(3)), hour=int(match.group(4)),
        minute=int(match.group(5)), second=int(match.group(6)))

    time_delta = abs(datetime.datetime.now() - date_time_from_xml)
    # timestamp value should be near the current local time
    self.assertTrue(time_delta < datetime.timedelta(seconds=600),
                    'time_delta is %s' % time_delta)
    actual.unlink()

shiqian's avatar
shiqian committed
191
192
193
194
195
  def testDefaultOutputFile(self):
    """
    Confirms that Google Test produces an XML output file with the expected
    default name if no name is explicitly specified.
    """
196
197
    output_file = os.path.join(gtest_test_utils.GetTempDir(),
                               GTEST_DEFAULT_OUTPUT_FILE)
198
    gtest_prog_path = gtest_test_utils.GetTestExecutablePath(
vladlosev's avatar
vladlosev committed
199
        'gtest_no_test_unittest')
shiqian's avatar
shiqian committed
200
201
202
203
204
205
    try:
      os.remove(output_file)
    except OSError, e:
      if e.errno != errno.ENOENT:
        raise

206
    p = gtest_test_utils.Subprocess(
vladlosev's avatar
vladlosev committed
207
        [gtest_prog_path, '%s=xml' % GTEST_OUTPUT_FLAG],
208
        working_dir=gtest_test_utils.GetTempDir())
209
210
    self.assert_(p.exited)
    self.assertEquals(0, p.exit_code)
shiqian's avatar
shiqian committed
211
212
    self.assert_(os.path.isfile(output_file))

213
214
215
216
217
218
219
  def testSuppressedXmlOutput(self):
    """
    Tests that no XML file is generated if the default XML listener is
    shut down before RUN_ALL_TESTS is invoked.
    """

    xml_path = os.path.join(gtest_test_utils.GetTempDir(),
vladlosev's avatar
vladlosev committed
220
                            GTEST_PROGRAM_NAME + 'out.xml')
221
222
223
    if os.path.isfile(xml_path):
      os.remove(xml_path)

vladlosev's avatar
vladlosev committed
224
225
226
    command = [GTEST_PROGRAM_PATH,
               '%s=xml:%s' % (GTEST_OUTPUT_FLAG, xml_path),
               '--shut_down_xml']
227
228
    p = gtest_test_utils.Subprocess(command)
    if p.terminated_by_signal:
229
230
231
232
      # p.signal is avalable only if p.terminated_by_signal is True.
      self.assertFalse(
          p.terminated_by_signal,
          '%s was killed by signal %d' % (GTEST_PROGRAM_NAME, p.signal))
233
234
235
236
    else:
      self.assert_(p.exited)
      self.assertEquals(1, p.exit_code,
                        "'%s' exited with code %s, which doesn't match "
vladlosev's avatar
vladlosev committed
237
                        'the expected exit code %s.'
238
239
240
241
                        % (command, p.exit_code, 1))

    self.assert_(not os.path.isfile(xml_path))

242
  def _GetXmlOutput(self, gtest_prog_name, expected_exit_code):
shiqian's avatar
shiqian committed
243
    """
244
245
    Returns the xml output generated by running the program gtest_prog_name.
    Furthermore, the program's exit code must be expected_exit_code.
shiqian's avatar
shiqian committed
246
    """
247
    xml_path = os.path.join(gtest_test_utils.GetTempDir(),
vladlosev's avatar
vladlosev committed
248
                            gtest_prog_name + 'out.xml')
249
    gtest_prog_path = gtest_test_utils.GetTestExecutablePath(gtest_prog_name)
shiqian's avatar
shiqian committed
250

vladlosev's avatar
vladlosev committed
251
    command = [gtest_prog_path, '%s=xml:%s' % (GTEST_OUTPUT_FLAG, xml_path)]
252
253
    p = gtest_test_utils.Subprocess(command)
    if p.terminated_by_signal:
254
      self.assert_(False,
vladlosev's avatar
vladlosev committed
255
                   '%s was killed by signal %d' % (gtest_prog_name, p.signal))
256
    else:
257
258
      self.assert_(p.exited)
      self.assertEquals(expected_exit_code, p.exit_code,
259
                        "'%s' exited with code %s, which doesn't match "
vladlosev's avatar
vladlosev committed
260
                        'the expected exit code %s.'
261
                        % (command, p.exit_code, expected_exit_code))
262
263
    actual = minidom.parse(xml_path)
    return actual
shiqian's avatar
shiqian committed
264

265
266
267
268
269
270
271
272
273
  def _TestXmlOutput(self, gtest_prog_name, expected_xml, expected_exit_code):
    """
    Asserts that the XML document generated by running the program
    gtest_prog_name matches expected_xml, a string containing another
    XML document.  Furthermore, the program's exit code must be
    expected_exit_code.
    """

    actual = self._GetXmlOutput(gtest_prog_name, expected_exit_code)
shiqian's avatar
shiqian committed
274
    expected = minidom.parseString(expected_xml)
shiqian's avatar
shiqian committed
275
276
277
    self.NormalizeXml(actual.documentElement)
    self.AssertEquivalentNodes(expected.documentElement,
                               actual.documentElement)
shiqian's avatar
shiqian committed
278
    expected.unlink()
279
    actual.unlink()
shiqian's avatar
shiqian committed
280
281
282


if __name__ == '__main__':
shiqian's avatar
shiqian committed
283
  os.environ['GTEST_STACK_TRACE_DEPTH'] = '1'
shiqian's avatar
shiqian committed
284
  gtest_test_utils.Main()