32 """Unit test for the gtest_xml_output module"""
39 from xml.dom
import minidom, Node
41 import gtest_test_utils
42 import gtest_xml_test_utils
44 GTEST_FILTER_FLAG =
'--gtest_filter'
45 GTEST_LIST_TESTS_FLAG =
'--gtest_list_tests'
46 GTEST_OUTPUT_FLAG =
'--gtest_output'
47 GTEST_DEFAULT_OUTPUT_FILE =
'test_detail.xml'
48 GTEST_PROGRAM_NAME =
'gtest_xml_output_unittest_'
51 NO_STACKTRACE_SUPPORT_FLAG =
'--no_stacktrace_support'
54 TOTAL_SHARDS_ENV_VAR =
'GTEST_TOTAL_SHARDS'
55 SHARD_INDEX_ENV_VAR =
'GTEST_SHARD_INDEX'
56 SHARD_STATUS_FILE_ENV_VAR =
'GTEST_SHARD_STATUS_FILE'
58 SUPPORTS_STACK_TRACES = NO_STACKTRACE_SUPPORT_FLAG
not in sys.argv
60 if SUPPORTS_STACK_TRACES:
61 STACK_TRACE_TEMPLATE =
'\nStack trace:\n*'
63 STACK_TRACE_TEMPLATE =
''
65 sys.argv.remove(NO_STACKTRACE_SUPPORT_FLAG)
67 EXPECTED_NON_EMPTY_XML =
"""<?xml version="1.0" encoding="UTF-8"?>
68 <testsuites tests="24" failures="4" disabled="2" errors="0" time="*" timestamp="*" name="AllTests" ad_hoc_property="42">
69 <testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*">
70 <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/>
72 <testsuite name="FailedTest" tests="1" failures="1" disabled="0" errors="0" time="*">
73 <testcase name="Fails" status="run" time="*" classname="FailedTest">
74 <failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 1
 2" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
75 Expected equality of these values:
77 2%(stack)s]]></failure>
80 <testsuite name="MixedResultTest" tests="3" failures="1" disabled="1" errors="0" time="*">
81 <testcase name="Succeeds" status="run" time="*" classname="MixedResultTest"/>
82 <testcase name="Fails" status="run" time="*" classname="MixedResultTest">
83 <failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 1
 2" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
84 Expected equality of these values:
86 2%(stack)s]]></failure>
87 <failure message="gtest_xml_output_unittest_.cc:*
Expected equality of these values:
 2
 3" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
88 Expected equality of these values:
90 3%(stack)s]]></failure>
92 <testcase name="DISABLED_test" status="notrun" time="*" classname="MixedResultTest"/>
94 <testsuite name="XmlQuotingTest" tests="1" failures="1" disabled="0" errors="0" time="*">
95 <testcase name="OutputsCData" status="run" time="*" classname="XmlQuotingTest">
96 <failure message="gtest_xml_output_unittest_.cc:*
Failed
XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]></top>" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
98 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]><![CDATA[</top>%(stack)s]]></failure>
101 <testsuite name="InvalidCharactersTest" tests="1" failures="1" disabled="0" errors="0" time="*">
102 <testcase name="InvalidCharactersInMessage" status="run" time="*" classname="InvalidCharactersTest">
103 <failure message="gtest_xml_output_unittest_.cc:*
Failed
Invalid characters in brackets []" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
105 Invalid characters in brackets []%(stack)s]]></failure>
108 <testsuite name="DisabledTest" tests="1" failures="0" disabled="1" errors="0" time="*">
109 <testcase name="DISABLED_test_not_run" status="notrun" time="*" classname="DisabledTest"/>
111 <testsuite name="SkippedTest" tests="1" failures="0" disabled="0" errors="0" time="*">
112 <testcase name="Skipped" status="skipped" time="*" classname="SkippedTest"/>
114 <testsuite name="PropertyRecordingTest" tests="4" failures="0" disabled="0" errors="0" time="*" SetUpTestSuite="yes" TearDownTestSuite="aye">
115 <testcase name="OneProperty" status="run" time="*" classname="PropertyRecordingTest">
117 <property name="key_1" value="1"/>
120 <testcase name="IntValuedProperty" status="run" time="*" classname="PropertyRecordingTest">
122 <property name="key_int" value="1"/>
125 <testcase name="ThreeProperties" status="run" time="*" classname="PropertyRecordingTest">
127 <property name="key_1" value="1"/>
128 <property name="key_2" value="2"/>
129 <property name="key_3" value="3"/>
132 <testcase name="TwoValuesForOneKeyUsesLastValue" status="run" time="*" classname="PropertyRecordingTest">
134 <property name="key_1" value="2"/>
138 <testsuite name="NoFixtureTest" tests="3" failures="0" disabled="0" errors="0" time="*">
139 <testcase name="RecordProperty" status="run" time="*" classname="NoFixtureTest">
141 <property name="key" value="1"/>
144 <testcase name="ExternalUtilityThatCallsRecordIntValuedProperty" status="run" time="*" classname="NoFixtureTest">
146 <property name="key_for_utility_int" value="1"/>
149 <testcase name="ExternalUtilityThatCallsRecordStringValuedProperty" status="run" time="*" classname="NoFixtureTest">
151 <property name="key_for_utility_string" value="1"/>
155 <testsuite name="Single/ValueParamTest" tests="4" failures="0" disabled="0" errors="0" time="*">
156 <testcase name="HasValueParamAttribute/0" value_param="33" status="run" time="*" classname="Single/ValueParamTest" />
157 <testcase name="HasValueParamAttribute/1" value_param="42" status="run" time="*" classname="Single/ValueParamTest" />
158 <testcase name="AnotherTestThatHasValueParamAttribute/0" value_param="33" status="run" time="*" classname="Single/ValueParamTest" />
159 <testcase name="AnotherTestThatHasValueParamAttribute/1" value_param="42" status="run" time="*" classname="Single/ValueParamTest" />
161 <testsuite name="TypedTest/0" tests="1" failures="0" disabled="0" errors="0" time="*">
162 <testcase name="HasTypeParamAttribute" type_param="*" status="run" time="*" classname="TypedTest/0" />
164 <testsuite name="TypedTest/1" tests="1" failures="0" disabled="0" errors="0" time="*">
165 <testcase name="HasTypeParamAttribute" type_param="*" status="run" time="*" classname="TypedTest/1" />
167 <testsuite name="Single/TypeParameterizedTestSuite/0" tests="1" failures="0" disabled="0" errors="0" time="*">
168 <testcase name="HasTypeParamAttribute" type_param="*" status="run" time="*" classname="Single/TypeParameterizedTestSuite/0" />
170 <testsuite name="Single/TypeParameterizedTestSuite/1" tests="1" failures="0" disabled="0" errors="0" time="*">
171 <testcase name="HasTypeParamAttribute" type_param="*" status="run" time="*" classname="Single/TypeParameterizedTestSuite/1" />
173 </testsuites>""" % {
'stack': STACK_TRACE_TEMPLATE}
175 EXPECTED_FILTERED_TEST_XML =
"""<?xml version="1.0" encoding="UTF-8"?>
176 <testsuites tests="1" failures="0" disabled="0" errors="0" time="*"
177 timestamp="*" name="AllTests" ad_hoc_property="42">
178 <testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0"
180 <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/>
184 EXPECTED_SHARDED_TEST_XML =
"""<?xml version="1.0" encoding="UTF-8"?>
185 <testsuites tests="3" failures="0" disabled="0" errors="0" time="*" timestamp="*" name="AllTests" ad_hoc_property="42">
186 <testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*">
187 <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/>
189 <testsuite name="PropertyRecordingTest" tests="1" failures="0" disabled="0" errors="0" time="*" SetUpTestSuite="yes" TearDownTestSuite="aye">
190 <testcase name="TwoValuesForOneKeyUsesLastValue" status="run" time="*" classname="PropertyRecordingTest">
192 <property name="key_1" value="2"/>
196 <testsuite name="Single/ValueParamTest" tests="1" failures="0" disabled="0" errors="0" time="*">
197 <testcase name="AnotherTestThatHasValueParamAttribute/0" value_param="33" status="run" time="*" classname="Single/ValueParamTest" />
201 EXPECTED_EMPTY_XML =
"""<?xml version="1.0" encoding="UTF-8"?>
202 <testsuites tests="0" failures="0" disabled="0" errors="0" time="*"
203 timestamp="*" name="AllTests">
209 [GTEST_PROGRAM_PATH, GTEST_LIST_TESTS_FLAG], capture_stderr=
False).output
214 Unit test for Google Test's XML output functionality.
219 if SUPPORTS_TYPED_TESTS:
222 Runs a test program that generates a non-empty XML output, and
223 tests that the XML output is expected.
225 self.
_TestXmlOutput(GTEST_PROGRAM_NAME, EXPECTED_NON_EMPTY_XML, 1)
228 """Verifies XML output for a Google Test binary without actual tests.
230 Runs a test program that generates an empty XML output, and
231 tests that the XML output is expected.
234 self.
_TestXmlOutput(
'gtest_no_test_unittest', EXPECTED_EMPTY_XML, 0)
237 """Checks whether the timestamp attribute in the XML output is valid.
239 Runs a test program that generates an empty XML output, and checks if
240 the timestamp attribute in the testsuites tag is valid.
242 actual = self.
_GetXmlOutput(
'gtest_no_test_unittest', [], {}, 0)
243 date_time_str = actual.documentElement.getAttributeNode(
'timestamp').value
246 match = re.match(
r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
249 'XML datettime string %s has incorrect format' % date_time_str)
250 date_time_from_xml = datetime.datetime(
251 year=int(match.group(1)), month=int(match.group(2)),
252 day=int(match.group(3)), hour=int(match.group(4)),
253 minute=int(match.group(5)), second=int(match.group(6)))
255 time_delta = abs(datetime.datetime.now() - date_time_from_xml)
257 self.assertTrue(time_delta < datetime.timedelta(seconds=600),
258 'time_delta is %s' % time_delta)
263 Confirms that Google Test produces an XML output file with the expected
264 default name if no name is explicitly specified.
267 GTEST_DEFAULT_OUTPUT_FILE)
269 'gtest_no_test_unittest')
271 os.remove(output_file)
273 e = sys.exc_info()[1]
274 if e.errno != errno.ENOENT:
278 [gtest_prog_path,
'%s=xml' % GTEST_OUTPUT_FLAG],
280 self.assert_(p.exited)
281 self.assertEquals(0, p.exit_code)
282 self.assert_(os.path.isfile(output_file))
286 Tests that no XML file is generated if the default XML listener is
287 shut down before RUN_ALL_TESTS is invoked.
291 GTEST_PROGRAM_NAME +
'out.xml')
292 if os.path.isfile(xml_path):
295 command = [GTEST_PROGRAM_PATH,
296 '%s=xml:%s' % (GTEST_OUTPUT_FLAG, xml_path),
299 if p.terminated_by_signal:
302 p.terminated_by_signal,
303 '%s was killed by signal %d' % (GTEST_PROGRAM_NAME, p.signal))
305 self.assert_(p.exited)
306 self.assertEquals(1, p.exit_code,
307 "'%s' exited with code %s, which doesn't match "
308 'the expected exit code %s.'
309 % (command, p.exit_code, 1))
311 self.assert_(
not os.path.isfile(xml_path))
314 """Verifies XML output when a filter is applied.
316 Runs a test program that executes only some tests and verifies that
317 non-selected tests do not show up in the XML output.
320 self.
_TestXmlOutput(GTEST_PROGRAM_NAME, EXPECTED_FILTERED_TEST_XML, 0,
321 extra_args=[
'%s=SuccessfulTest.*' % GTEST_FILTER_FLAG])
324 """Verifies XML output when run using multiple shards.
326 Runs a test program that executes only one shard and verifies that tests
327 from other shards do not show up in the XML output.
332 EXPECTED_SHARDED_TEST_XML,
334 extra_env={SHARD_INDEX_ENV_VAR:
'0',
335 TOTAL_SHARDS_ENV_VAR:
'10'})
340 Returns the xml output generated by running the program gtest_prog_name.
341 Furthermore, the program's exit code must be expected_exit_code.
344 gtest_prog_name +
'out.xml')
347 command = ([gtest_prog_path,
'%s=xml:%s' % (GTEST_OUTPUT_FLAG, xml_path)] +
349 environ_copy = os.environ.copy()
351 environ_copy.update(extra_env)
354 if p.terminated_by_signal:
356 '%s was killed by signal %d' % (gtest_prog_name, p.signal))
358 self.assert_(p.exited)
359 self.assertEquals(expected_exit_code, p.exit_code,
360 "'%s' exited with code %s, which doesn't match "
361 'the expected exit code %s.'
362 % (command, p.exit_code, expected_exit_code))
363 actual = minidom.parse(xml_path)
367 expected_exit_code, extra_args=None, extra_env=None):
369 Asserts that the XML document generated by running the program
370 gtest_prog_name matches expected_xml, a string containing another
371 XML document. Furthermore, the program's exit code must be
375 actual = self.
_GetXmlOutput(gtest_prog_name, extra_args
or [],
376 extra_env
or {}, expected_exit_code)
377 expected = minidom.parseString(expected_xml)
380 actual.documentElement)
385 if __name__ ==
'__main__':
386 os.environ[
'GTEST_STACK_TRACE_DEPTH'] =
'1'