Ejemplo n.º 1
0
 def test_is_testharness_output_passing_with_console_messages(self):
     self.assertFalse(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' CONSOLE ERROR: BLAH  \n'
             ' Harness: the test ran to completion.'))
     self.assertTrue(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' CONSOLE WARNING: BLAH  \n'
             'PASS: some passing method\n'
             ' Harness: the test ran to completion.'))
     self.assertTrue(
         testharness_results.is_testharness_output_passing(
             'CONSOLE LOG: error.\n'
             'This is a testharness.js-based test.\n'
             'PASS: things are fine.\n'
             'Harness: the test ran to completion.\n'
             '\n'))
     self.assertTrue(
         testharness_results.is_testharness_output_passing(
             'CONSOLE ERROR: error.\n'
             'This is a testharness.js-based test.\n'
             'PASS: things are fine.\n'
             'Harness: the test ran to completion.\n'
             '\n'))
     self.assertTrue(
         testharness_results.is_testharness_output_passing(
             'CONSOLE WARNING: error.\n'
             'This is a testharness.js-based test.\n'
             'PASS: things are fine.\n'
             'Harness: the test ran to completion.\n'
             '\n'))
Ejemplo n.º 2
0
 def test_is_testharness_output_passing_with_timeout_or_notrun(self):
     self.assertFalse(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' TIMEOUT: bah \n'
             ' Harness: the test ran to completion.'))
     self.assertFalse(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' NOTRUN: bah \n'
             ' Harness: the test ran to completion.'))
Ejemplo n.º 3
0
 def test_is_testharness_output_passing_no_pass(self):
     # If there are no PASS lines, then the test is not considered to pass.
     self.assertFalse(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             '  \n'
             ' Harness: the test ran to completion.'))
     self.assertFalse(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' Foo bar \n'
             ' Harness: the test ran to completion.'))
Ejemplo n.º 4
0
 def test_is_testharness_output_passing_with_pass_and_random_text(self):
     self.assertTrue(
         testharness_results.is_testharness_output_passing(
             'RANDOM TEXT.\n'
             'This is a testharness.js-based test.\n'
             'PASS: things are fine.\n'
             ' Harness: the test ran to completion.\n'
             '\n'))
Ejemplo n.º 5
0
 def _compare_testharness_test(self, expected_driver_output, driver_output):
     """Returns (testharness_completed, testharness_failures)."""
     if not driver_output.text:
         return False, []
     if expected_driver_output.text:
         # Will compare text if there is expected text.
         return False, []
     if not testharness_results.is_testharness_output(driver_output.text):
         return False, []
     if not testharness_results.is_testharness_output_passing(driver_output.text):
         return True, [test_failures.FailureTestHarnessAssertion()]
     return True, []
Ejemplo n.º 6
0
 def test_is_testharness_output_passing_basic_examples(self):
     self.assertTrue(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' PASS: foo bar \n'
             ' Harness: the test ran to completion.'))
     self.assertTrue(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' PASS: foo bar FAIL  \n'
             ' Harness: the test ran to completion.'))
     self.assertFalse(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' PASS: foo bar \n'
             'FAIL  \n'
             ' Harness: the test ran to completion.'))
     self.assertFalse(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             ' FAIL: bah \n'
             ' Harness: the test ran to completion.'))
Ejemplo n.º 7
0
    def _compare_testharness_test(self, driver_output, expected_driver_output):
        if expected_driver_output.text:
            return False, []

        if self._is_render_tree(driver_output.text):
            return False, []

        text = driver_output.text or ''

        if not testharness_results.is_testharness_output(text):
            return False, []
        if not testharness_results.is_testharness_output_passing(text):
            return True, [test_failures.FailureTestHarnessAssertion()]
        return True, []
Ejemplo n.º 8
0
 def test_is_testharness_output_passing_empty_content(self):
     self.assertFalse(
         testharness_results.is_testharness_output_passing(
             'This is a testharness.js-based test.\n'
             '   Harness: the test ran to completion.'))