Пример #1
0
    def test_multiple_failures_per_test(self):
        multiple_failures_per_test_xml = """<?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="4" failures="2" disabled="0" errors="0" time="11.35" name="AllTests">
  <testsuite name="UnitTests" tests="4" failures="2" disable="0" errors="0" time="10.0">
    <testcase name="TestOne" status="run" time="0.5" classname="ClassOne">
      <failure message="Value of: pi&#x0A;  Actual: 3&#x0A;Expected: 3.14" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassOneTest.cpp:42
Value of: pi
  Actual: 3
Expected: 3.14]]></failure>
    </testcase>
    <testcase name="TestTwo" status="run" time="0.5" classname="ClassTwo">
      <failure message="Value of: e&#x0A;  Actual: 2&#x0A;Expected: 2.71" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:30
Value of: e
  Actual: 2
Expected: 2.71]]></failure>
      <failure message="Value of: tau&#x0A;  Actual: 6&#x0A;Expected: 6.28" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:55
Value of: tau
  Actual: 6
Expected: 6.28]]></failure>
    </testcase>
  </testsuite>
</testsuites>"""
        expected = ["ClassOne.TestOne", "ClassTwo.TestTwo"]
        self.assertEqual(
            expected,
            UnitTestResults.results_from_string(
                multiple_failures_per_test_xml))
Пример #2
0
 def _create_unit_test_results(self):
     results_path = self._host.filesystem.join(
         self._results_directory, "webkit_unit_tests_output.xml")
     results_xml = self._read_file_contents(results_path)
     if not results_xml:
         return None
     return UnitTestResults.results_from_string(results_xml)
Пример #3
0
 def _create_unit_test_results(self):
     results_path = self._tool.port().unit_tests_results_path()
     if not results_path:
         return None
     results_xml = self._read_file_contents(results_path)
     if not results_xml:
         return None
     return UnitTestResults.results_from_string(results_xml)
Пример #4
0
 def _create_unit_test_results(self):
     results_path = self._tool.port().unit_tests_results_path()
     if not results_path:
         return None
     results_xml = self._read_file_contents(results_path)
     if not results_xml:
         return None
     return UnitTestResults.results_from_string(results_xml)
Пример #5
0
    def test_nofailures(self):
        no_failures_xml = """<?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="3" failures="0" disabled="0" errors="0" time="11.35" name="AllTests">
  <testsuite name="RenderTableCellDeathTest" tests="3" failures="0" disabled="0" errors="0" time="0.677">
    <testcase name="CanSetColumn" status="run" time="0.168" classname="RenderTableCellDeathTest" />
    <testcase name="CrashIfSettingUnsetColumnIndex" status="run" time="0.129" classname="RenderTableCellDeathTest" />
    <testcase name="CrashIfSettingUnsetRowIndex" status="run" time="0.123" classname="RenderTableCellDeathTest" />
  </testsuite>
</testsuites>"""
        self.assertEqual([],
                         UnitTestResults.results_from_string(no_failures_xml))
Пример #6
0
    def test_onefailure(self):
        one_failure_xml = """<?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="4" failures="1" disabled="0" errors="0" time="11.35" name="AllTests">
  <testsuite name="RenderTableCellDeathTest" tests="4" failures="1" disabled="0" errors="0" time="0.677">
    <testcase name="CanSetColumn" status="run" time="0.168" classname="RenderTableCellDeathTest" />
    <testcase name="CrashIfSettingUnsetColumnIndex" status="run" time="0.129" classname="RenderTableCellDeathTest" />
    <testcase name="CrashIfSettingUnsetRowIndex" status="run" time="0.123" classname="RenderTableCellDeathTest" />
    <testcase name="FAILS_DivAutoZoomParamsTest" status="run" time="0.02" classname="WebFrameTest">
      <failure message="Value of: scale&#x0A;  Actual: 4&#x0A;Expected: 1" type=""><![CDATA[../../Source/WebKit/chromium/tests/WebFrameTest.cpp:191
Value of: scale
  Actual: 4
Expected: 1]]></failure>
    </testcase>
  </testsuite>
</testsuites>"""
        expected = ["WebFrameTest.FAILS_DivAutoZoomParamsTest"]
        self.assertEqual(expected,
                         UnitTestResults.results_from_string(one_failure_xml))
 def _create_unit_test_results(self):
     results_path = self._host.filesystem.join(self._results_directory, "webkit_unit_tests_output.xml")
     results_xml = self._read_file_contents(results_path)
     if not results_xml:
         return None
     return UnitTestResults.results_from_string(results_xml)
Пример #8
0
 def test_emptystring(self):
     self.assertIsNone(UnitTestResults.results_from_string(""))
Пример #9
0
 def test_nostring(self):
     self.assertIsNone(UnitTestResults.results_from_string(None))