Googletest export
Support skipped in XML and JSON output PiperOrigin-RevId: 225386540
This commit is contained in:
parent
81f0026066
commit
c6cb7e0335
@ -3761,7 +3761,8 @@ void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream,
|
|||||||
}
|
}
|
||||||
|
|
||||||
OutputXmlAttribute(stream, kTestcase, "status",
|
OutputXmlAttribute(stream, kTestcase, "status",
|
||||||
test_info.should_run() ? "run" : "notrun");
|
result.Skipped() ? "skipped" :
|
||||||
|
test_info.should_run() ? "run" : "notrun");
|
||||||
OutputXmlAttribute(stream, kTestcase, "time",
|
OutputXmlAttribute(stream, kTestcase, "time",
|
||||||
FormatTimeInMillisAsSeconds(result.elapsed_time()));
|
FormatTimeInMillisAsSeconds(result.elapsed_time()));
|
||||||
OutputXmlAttribute(stream, kTestcase, "classname", test_case_name);
|
OutputXmlAttribute(stream, kTestcase, "classname", test_case_name);
|
||||||
@ -4126,6 +4127,7 @@ void JsonUnitTestResultPrinter::OutputJsonTestInfo(::std::ostream* stream,
|
|||||||
}
|
}
|
||||||
|
|
||||||
OutputJsonKey(stream, kTestcase, "status",
|
OutputJsonKey(stream, kTestcase, "status",
|
||||||
|
result.Skipped() ? "SKIPPED" :
|
||||||
test_info.should_run() ? "RUN" : "NOTRUN", kIndent);
|
test_info.should_run() ? "RUN" : "NOTRUN", kIndent);
|
||||||
OutputJsonKey(stream, kTestcase, "time",
|
OutputJsonKey(stream, kTestcase, "time",
|
||||||
FormatTimeInMillisAsDuration(result.elapsed_time()), kIndent);
|
FormatTimeInMillisAsDuration(result.elapsed_time()), kIndent);
|
||||||
|
@ -57,7 +57,7 @@ else:
|
|||||||
STACK_TRACE_TEMPLATE = ''
|
STACK_TRACE_TEMPLATE = ''
|
||||||
|
|
||||||
EXPECTED_NON_EMPTY = {
|
EXPECTED_NON_EMPTY = {
|
||||||
u'tests': 23,
|
u'tests': 24,
|
||||||
u'failures': 4,
|
u'failures': 4,
|
||||||
u'disabled': 2,
|
u'disabled': 2,
|
||||||
u'errors': 0,
|
u'errors': 0,
|
||||||
@ -123,6 +123,22 @@ EXPECTED_NON_EMPTY = {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
u'name': u'SkippedTest',
|
||||||
|
u'tests': 1,
|
||||||
|
u'failures': 0,
|
||||||
|
u'disabled': 0,
|
||||||
|
u'errors': 0,
|
||||||
|
u'time': u'*',
|
||||||
|
u'testsuite': [
|
||||||
|
{
|
||||||
|
u'name': u'Skipped',
|
||||||
|
u'status': u'SKIPPED',
|
||||||
|
u'time': u'*',
|
||||||
|
u'classname': u'SkippedTest'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
u'name': u'MixedResultTest',
|
u'name': u'MixedResultTest',
|
||||||
u'tests': 3,
|
u'tests': 3,
|
||||||
|
@ -65,7 +65,7 @@ else:
|
|||||||
sys.argv.remove(NO_STACKTRACE_SUPPORT_FLAG)
|
sys.argv.remove(NO_STACKTRACE_SUPPORT_FLAG)
|
||||||
|
|
||||||
EXPECTED_NON_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
|
EXPECTED_NON_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<testsuites tests="23" failures="4" disabled="2" errors="0" time="*" timestamp="*" name="AllTests" ad_hoc_property="42">
|
<testsuites tests="24" failures="4" disabled="2" errors="0" time="*" timestamp="*" name="AllTests" ad_hoc_property="42">
|
||||||
<testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*">
|
<testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*">
|
||||||
<testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/>
|
<testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
@ -108,6 +108,9 @@ Invalid characters in brackets []%(stack)s]]></failure>
|
|||||||
<testsuite name="DisabledTest" tests="1" failures="0" disabled="1" errors="0" time="*">
|
<testsuite name="DisabledTest" tests="1" failures="0" disabled="1" errors="0" time="*">
|
||||||
<testcase name="DISABLED_test_not_run" status="notrun" time="*" classname="DisabledTest"/>
|
<testcase name="DISABLED_test_not_run" status="notrun" time="*" classname="DisabledTest"/>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
|
<testsuite name="SkippedTest" tests="1" failures="0" disabled="0" errors="0" time="*">
|
||||||
|
<testcase name="Skipped" status="skipped" time="*" classname="SkippedTest"/>
|
||||||
|
</testsuite>
|
||||||
<testsuite name="PropertyRecordingTest" tests="4" failures="0" disabled="0" errors="0" time="*" SetUpTestCase="yes" TearDownTestCase="aye">
|
<testsuite name="PropertyRecordingTest" tests="4" failures="0" disabled="0" errors="0" time="*" SetUpTestCase="yes" TearDownTestCase="aye">
|
||||||
<testcase name="OneProperty" status="run" time="*" classname="PropertyRecordingTest">
|
<testcase name="OneProperty" status="run" time="*" classname="PropertyRecordingTest">
|
||||||
<properties>
|
<properties>
|
||||||
@ -183,15 +186,15 @@ EXPECTED_SHARDED_TEST_XML = """<?xml version="1.0" encoding="UTF-8"?>
|
|||||||
<testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*">
|
<testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*">
|
||||||
<testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/>
|
<testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="NoFixtureTest" tests="1" failures="0" disabled="0" errors="0" time="*">
|
<testsuite name="PropertyRecordingTest" tests="1" failures="0" disabled="0" errors="0" time="*" SetUpTestCase="yes" TearDownTestCase="aye">
|
||||||
<testcase name="RecordProperty" status="run" time="*" classname="NoFixtureTest">
|
<testcase name="TwoValuesForOneKeyUsesLastValue" status="run" time="*" classname="PropertyRecordingTest">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="key" value="1"/>
|
<property name="key_1" value="2"/>
|
||||||
</properties>
|
</properties>
|
||||||
</testcase>
|
</testcase>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="Single/ValueParamTest" tests="1" failures="0" disabled="0" errors="0" time="*">
|
<testsuite name="Single/ValueParamTest" tests="1" failures="0" disabled="0" errors="0" time="*">
|
||||||
<testcase name="AnotherTestThatHasValueParamAttribute/1" value_param="42" status="run" time="*" classname="Single/ValueParamTest" />
|
<testcase name="AnotherTestThatHasValueParamAttribute/0" value_param="33" status="run" time="*" classname="Single/ValueParamTest" />
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>"""
|
</testsuites>"""
|
||||||
|
|
||||||
|
@ -67,6 +67,13 @@ TEST_F(DisabledTest, DISABLED_test_not_run) {
|
|||||||
FAIL() << "Unexpected failure: Disabled test should not be run";
|
FAIL() << "Unexpected failure: Disabled test should not be run";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class SkippedTest : public Test {
|
||||||
|
};
|
||||||
|
|
||||||
|
TEST_F(SkippedTest, Skipped) {
|
||||||
|
GTEST_SKIP();
|
||||||
|
}
|
||||||
|
|
||||||
TEST(MixedResultTest, Succeeds) {
|
TEST(MixedResultTest, Succeeds) {
|
||||||
EXPECT_EQ(1, 1);
|
EXPECT_EQ(1, 1);
|
||||||
ASSERT_EQ(1, 1);
|
ASSERT_EQ(1, 1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user