@@ -3928,6 +3928,12 @@ class XmlUnitTestResultPrinter : public EmptyTestEventListener {
3928
3928
// Streams an XML CDATA section, escaping invalid CDATA sequences as needed.
3929
3929
static void OutputXmlCDataSection (::std::ostream* stream, const char * data);
3930
3930
3931
+ // Streams a test suite XML stanza containing the given test result.
3932
+ //
3933
+ // Requires: result.Failed()
3934
+ static void OutputXmlTestSuiteForTestResult (::std::ostream* stream,
3935
+ const TestResult& result);
3936
+
3931
3937
// Streams an XML representation of a TestResult object.
3932
3938
static void OutputXmlTestResult (::std::ostream* stream,
3933
3939
const TestResult& result);
@@ -4147,6 +4153,43 @@ void XmlUnitTestResultPrinter::OutputXmlAttribute(
4147
4153
*stream << " " << name << " =\" " << EscapeXmlAttribute (value) << " \" " ;
4148
4154
}
4149
4155
4156
+ // Streams a test suite XML stanza containing the given test result.
4157
+ void XmlUnitTestResultPrinter::OutputXmlTestSuiteForTestResult (
4158
+ ::std::ostream* stream, const TestResult& result) {
4159
+ // Output the boilerplate for a minimal test suite with one test.
4160
+ *stream << " <testsuite" ;
4161
+ OutputXmlAttribute (stream, " testsuite" , " name" , " NonTestSuiteFailure" );
4162
+ OutputXmlAttribute (stream, " testsuite" , " tests" , " 1" );
4163
+ OutputXmlAttribute (stream, " testsuite" , " failures" , " 1" );
4164
+ OutputXmlAttribute (stream, " testsuite" , " disabled" , " 0" );
4165
+ OutputXmlAttribute (stream, " testsuite" , " skipped" , " 0" );
4166
+ OutputXmlAttribute (stream, " testsuite" , " errors" , " 0" );
4167
+ OutputXmlAttribute (stream, " testsuite" , " time" ,
4168
+ FormatTimeInMillisAsSeconds (result.elapsed_time ()));
4169
+ OutputXmlAttribute (
4170
+ stream, " testsuite" , " timestamp" ,
4171
+ FormatEpochTimeInMillisAsIso8601 (result.start_timestamp ()));
4172
+ *stream << " >" ;
4173
+
4174
+ // Output the boilerplate for a minimal test case with a single test.
4175
+ *stream << " <testcase" ;
4176
+ OutputXmlAttribute (stream, " testcase" , " name" , " " );
4177
+ OutputXmlAttribute (stream, " testcase" , " status" , " run" );
4178
+ OutputXmlAttribute (stream, " testcase" , " result" , " completed" );
4179
+ OutputXmlAttribute (stream, " testcase" , " classname" , " " );
4180
+ OutputXmlAttribute (stream, " testcase" , " time" ,
4181
+ FormatTimeInMillisAsSeconds (result.elapsed_time ()));
4182
+ OutputXmlAttribute (
4183
+ stream, " testcase" , " timestamp" ,
4184
+ FormatEpochTimeInMillisAsIso8601 (result.start_timestamp ()));
4185
+
4186
+ // Output the actual test result.
4187
+ OutputXmlTestResult (stream, result);
4188
+
4189
+ // Complete the test suite.
4190
+ *stream << " </testsuite>\n " ;
4191
+ }
4192
+
4150
4193
// Prints an XML representation of a TestInfo object.
4151
4194
void XmlUnitTestResultPrinter::OutputXmlTestInfo (::std::ostream* stream,
4152
4195
const char * test_suite_name,
@@ -4309,6 +4352,13 @@ void XmlUnitTestResultPrinter::PrintXmlUnitTest(std::ostream* stream,
4309
4352
if (unit_test.GetTestSuite (i)->reportable_test_count () > 0 )
4310
4353
PrintXmlTestSuite (stream, *unit_test.GetTestSuite (i));
4311
4354
}
4355
+
4356
+ // If there was a test failure outside of one of the test suites (like in a
4357
+ // test environment) include that in the output.
4358
+ if (unit_test.ad_hoc_test_result ().Failed ()) {
4359
+ OutputXmlTestSuiteForTestResult (stream, unit_test.ad_hoc_test_result ());
4360
+ }
4361
+
4312
4362
*stream << " </" << kTestsuites << " >\n " ;
4313
4363
}
4314
4364
@@ -4399,6 +4449,12 @@ class JsonUnitTestResultPrinter : public EmptyTestEventListener {
4399
4449
const std::string& indent,
4400
4450
bool comma = true );
4401
4451
4452
+ // Streams a test suite JSON stanza containing the given test result.
4453
+ //
4454
+ // Requires: result.Failed()
4455
+ static void OutputJsonTestSuiteForTestResult (::std::ostream* stream,
4456
+ const TestResult& result);
4457
+
4402
4458
// Streams a JSON representation of a TestResult object.
4403
4459
static void OutputJsonTestResult (::std::ostream* stream,
4404
4460
const TestResult& result);
@@ -4553,6 +4609,48 @@ void JsonUnitTestResultPrinter::OutputJsonKey(
4553
4609
*stream << " ,\n " ;
4554
4610
}
4555
4611
4612
+ // Streams a test suite JSON stanza containing the given test result.
4613
+ void JsonUnitTestResultPrinter::OutputJsonTestSuiteForTestResult (
4614
+ ::std::ostream* stream, const TestResult& result) {
4615
+ // Output the boilerplate for a new test suite.
4616
+ *stream << Indent (4 ) << " {\n " ;
4617
+ OutputJsonKey (stream, " testsuite" , " name" , " NonTestSuiteFailure" , Indent (6 ));
4618
+ OutputJsonKey (stream, " testsuite" , " tests" , 1 , Indent (6 ));
4619
+ if (!GTEST_FLAG (list_tests)) {
4620
+ OutputJsonKey (stream, " testsuite" , " failures" , 1 , Indent (6 ));
4621
+ OutputJsonKey (stream, " testsuite" , " disabled" , 0 , Indent (6 ));
4622
+ OutputJsonKey (stream, " testsuite" , " skipped" , 0 , Indent (6 ));
4623
+ OutputJsonKey (stream, " testsuite" , " errors" , 0 , Indent (6 ));
4624
+ OutputJsonKey (stream, " testsuite" , " time" ,
4625
+ FormatTimeInMillisAsDuration (result.elapsed_time ()),
4626
+ Indent (6 ));
4627
+ OutputJsonKey (stream, " testsuite" , " timestamp" ,
4628
+ FormatEpochTimeInMillisAsRFC3339 (result.start_timestamp ()),
4629
+ Indent (6 ));
4630
+ }
4631
+ *stream << Indent (6 ) << " \" testsuite\" : [\n " ;
4632
+
4633
+ // Output the boilerplate for a new test case.
4634
+ *stream << Indent (8 ) << " {\n " ;
4635
+ OutputJsonKey (stream, " testcase" , " name" , " " , Indent (10 ));
4636
+ OutputJsonKey (stream, " testcase" , " status" , " RUN" , Indent (10 ));
4637
+ OutputJsonKey (stream, " testcase" , " result" , " COMPLETED" , Indent (10 ));
4638
+ OutputJsonKey (stream, " testcase" , " timestamp" ,
4639
+ FormatEpochTimeInMillisAsRFC3339 (result.start_timestamp ()),
4640
+ Indent (10 ));
4641
+ OutputJsonKey (stream, " testcase" , " time" ,
4642
+ FormatTimeInMillisAsDuration (result.elapsed_time ()),
4643
+ Indent (10 ));
4644
+ OutputJsonKey (stream, " testcase" , " classname" , " " , Indent (10 ), false );
4645
+ *stream << TestPropertiesAsJson (result, Indent (10 ));
4646
+
4647
+ // Output the actual test result.
4648
+ OutputJsonTestResult (stream, result);
4649
+
4650
+ // Finish the test suite.
4651
+ *stream << " \n " << Indent (6 ) << " ]\n " << Indent (4 ) << " }" ;
4652
+ }
4653
+
4556
4654
// Prints a JSON representation of a TestInfo object.
4557
4655
void JsonUnitTestResultPrinter::OutputJsonTestInfo (::std::ostream* stream,
4558
4656
const char * test_suite_name,
@@ -4712,6 +4810,12 @@ void JsonUnitTestResultPrinter::PrintJsonUnitTest(std::ostream* stream,
4712
4810
}
4713
4811
}
4714
4812
4813
+ // If there was a test failure outside of one of the test suites (like in a
4814
+ // test environment) include that in the output.
4815
+ if (unit_test.ad_hoc_test_result ().Failed ()) {
4816
+ OutputJsonTestSuiteForTestResult (stream, unit_test.ad_hoc_test_result ());
4817
+ }
4818
+
4715
4819
*stream << " \n " << kIndent << " ]\n " << " }\n " ;
4716
4820
}
4717
4821
0 commit comments