Index: sky/tools/webkitpy/tool/commands/rebaseline_unittest.py |
diff --git a/sky/tools/webkitpy/tool/commands/rebaseline_unittest.py b/sky/tools/webkitpy/tool/commands/rebaseline_unittest.py |
deleted file mode 100644 |
index 992d170fc751cc8e1395bbd23badc0d952ea9c26..0000000000000000000000000000000000000000 |
--- a/sky/tools/webkitpy/tool/commands/rebaseline_unittest.py |
+++ /dev/null |
@@ -1,1267 +0,0 @@ |
-# Copyright (C) 2010 Google Inc. All rights reserved. |
-# |
-# Redistribution and use in source and binary forms, with or without |
-# modification, are permitted provided that the following conditions are |
-# met: |
-# |
-# * Redistributions of source code must retain the above copyright |
-# notice, this list of conditions and the following disclaimer. |
-# * Redistributions in binary form must reproduce the above |
-# copyright notice, this list of conditions and the following disclaimer |
-# in the documentation and/or other materials provided with the |
-# distribution. |
-# * Neither the name of Google Inc. nor the names of its |
-# contributors may be used to endorse or promote products derived from |
-# this software without specific prior written permission. |
-# |
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
- |
-import unittest |
- |
-from webkitpy.common.checkout.baselineoptimizer import BaselineOptimizer |
-from webkitpy.common.checkout.scm.scm_mock import MockSCM |
-from webkitpy.common.host_mock import MockHost |
-from webkitpy.common.net.buildbot.buildbot_mock import MockBuilder |
-from webkitpy.common.net.layouttestresults import LayoutTestResults |
-from webkitpy.common.system.executive_mock import MockExecutive |
-from webkitpy.common.system.executive_mock import MockExecutive2 |
-from webkitpy.common.system.outputcapture import OutputCapture |
-from webkitpy.tool.commands.rebaseline import * |
-from webkitpy.tool.mocktool import MockTool, MockOptions |
- |
- |
-class _BaseTestCase(unittest.TestCase): |
- MOCK_WEB_RESULT = 'MOCK Web result, convert 404 to None=True' |
- WEB_PREFIX = 'http://example.com/f/builders/WebKit Mac10.7/results/layout-test-results' |
- |
- command_constructor = None |
- |
- def setUp(self): |
- self.tool = MockTool() |
- self.command = self.command_constructor() # lint warns that command_constructor might not be set, but this is intentional; pylint: disable=E1102 |
- self.command.bind_to_tool(self.tool) |
- self.lion_port = self.tool.port_factory.get_from_builder_name("WebKit Mac10.7") |
- self.lion_expectations_path = self.lion_port.path_to_generic_test_expectations_file() |
- |
- # FIXME: crbug.com/279494. We should override builders._exact_matches |
- # here to point to a set of test ports and restore the value in |
- # tearDown(), and that way the individual tests wouldn't have to worry |
- # about it. |
- |
- def _expand(self, path): |
- if self.tool.filesystem.isabs(path): |
- return path |
- return self.tool.filesystem.join(self.lion_port.layout_tests_dir(), path) |
- |
- def _read(self, path): |
- return self.tool.filesystem.read_text_file(self._expand(path)) |
- |
- def _write(self, path, contents): |
- self.tool.filesystem.write_text_file(self._expand(path), contents) |
- |
- def _zero_out_test_expectations(self): |
- for port_name in self.tool.port_factory.all_port_names(): |
- port = self.tool.port_factory.get(port_name) |
- for path in port.expectations_files(): |
- self._write(path, '') |
- self.tool.filesystem.written_files = {} |
- |
- def _setup_mock_builder_data(self): |
- data = LayoutTestResults.results_from_string("""ADD_RESULTS({ |
- "tests": { |
- "userscripts": { |
- "first-test.html": { |
- "expected": "PASS", |
- "actual": "IMAGE+TEXT" |
- }, |
- "second-test.html": { |
- "expected": "FAIL", |
- "actual": "IMAGE+TEXT" |
- } |
- } |
- } |
-});""") |
- # FIXME: crbug.com/279494 - we shouldn't be mixing mock and real builder names. |
- for builder in ['MOCK builder', 'MOCK builder (Debug)', 'WebKit Mac10.7']: |
- self.command._builder_data[builder] = data |
- |
- |
-class TestCopyExistingBaselinesInternal(_BaseTestCase): |
- command_constructor = CopyExistingBaselinesInternal |
- |
- def setUp(self): |
- super(TestCopyExistingBaselinesInternal, self).setUp() |
- |
- def test_copying_overwritten_baseline(self): |
- self.tool.executive = MockExecutive2() |
- |
- # FIXME: crbug.com/279494. it's confusing that this is the test- port, and not the regular lion port. Really all of the tests should be using the test ports. |
- port = self.tool.port_factory.get('test-mac-snowleopard') |
- self._write(port._filesystem.join(port.layout_tests_dir(), 'platform/test-mac-snowleopard/failures/expected/image-expected.txt'), 'original snowleopard result') |
- |
- old_exact_matches = builders._exact_matches |
- oc = OutputCapture() |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK SnowLeopard": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- |
- options = MockOptions(builder="MOCK SnowLeopard", suffixes="txt", verbose=True, test="failures/expected/image.html", results_directory=None) |
- |
- oc.capture_output() |
- self.command.execute(options, [], self.tool) |
- finally: |
- out, _, _ = oc.restore_output() |
- builders._exact_matches = old_exact_matches |
- |
- self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-mac-leopard/failures/expected/image-expected.txt')), 'original snowleopard result') |
- self.assertMultiLineEqual(out, '{"add": [], "remove-lines": [], "delete": []}\n') |
- |
- def test_copying_overwritten_baseline_to_multiple_locations(self): |
- self.tool.executive = MockExecutive2() |
- |
- # FIXME: crbug.com/279494. it's confusing that this is the test- port, and not the regular win port. Really all of the tests should be using the test ports. |
- port = self.tool.port_factory.get('test-win-win7') |
- self._write(port._filesystem.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt'), 'original win7 result') |
- |
- old_exact_matches = builders._exact_matches |
- oc = OutputCapture() |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK Linux": {"port_name": "test-linux-x86_64", "specifiers": set(["mock-specifier"])}, |
- "MOCK Win7": {"port_name": "test-win-win7", "specifiers": set(["mock-specifier"])}, |
- } |
- |
- options = MockOptions(builder="MOCK Win7", suffixes="txt", verbose=True, test="failures/expected/image.html", results_directory=None) |
- |
- oc.capture_output() |
- self.command.execute(options, [], self.tool) |
- finally: |
- out, _, _ = oc.restore_output() |
- builders._exact_matches = old_exact_matches |
- |
- self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-linux-x86_64/failures/expected/image-expected.txt')), 'original win7 result') |
- self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/mac-leopard/userscripts/another-test-expected.txt'))) |
- self.assertMultiLineEqual(out, '{"add": [], "remove-lines": [], "delete": []}\n') |
- |
- def test_no_copy_existing_baseline(self): |
- self.tool.executive = MockExecutive2() |
- |
- # FIXME: it's confusing that this is the test- port, and not the regular win port. Really all of the tests should be using the test ports. |
- port = self.tool.port_factory.get('test-win-win7') |
- self._write(port._filesystem.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt'), 'original win7 result') |
- |
- old_exact_matches = builders._exact_matches |
- oc = OutputCapture() |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK Linux": {"port_name": "test-linux-x86_64", "specifiers": set(["mock-specifier"])}, |
- "MOCK Win7": {"port_name": "test-win-win7", "specifiers": set(["mock-specifier"])}, |
- } |
- |
- options = MockOptions(builder="MOCK Win7", suffixes="txt", verbose=True, test="failures/expected/image.html", results_directory=None) |
- |
- oc.capture_output() |
- self.command.execute(options, [], self.tool) |
- finally: |
- out, _, _ = oc.restore_output() |
- builders._exact_matches = old_exact_matches |
- |
- self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-linux-x86_64/failures/expected/image-expected.txt')), 'original win7 result') |
- self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt')), 'original win7 result') |
- self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/mac-leopard/userscripts/another-test-expected.txt'))) |
- self.assertMultiLineEqual(out, '{"add": [], "remove-lines": [], "delete": []}\n') |
- |
- def test_no_copy_skipped_test(self): |
- self.tool.executive = MockExecutive2() |
- |
- port = self.tool.port_factory.get('test-win-win7') |
- fs = self.tool.filesystem |
- self._write(fs.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt'), 'original win7 result') |
- expectations_path = fs.join(port.path_to_generic_test_expectations_file()) |
- self._write(expectations_path, ( |
- "[ Win ] failures/expected/image.html [ Failure ]\n" |
- "[ Linux ] failures/expected/image.html [ Skip ]\n")) |
- old_exact_matches = builders._exact_matches |
- oc = OutputCapture() |
- try: |
- builders._exact_matches = { |
- "MOCK Linux": {"port_name": "test-linux-x86_64", "specifiers": set(["mock-specifier"])}, |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK Win7": {"port_name": "test-win-win7", "specifiers": set(["mock-specifier"])}, |
- } |
- |
- options = MockOptions(builder="MOCK Win7", suffixes="txt", verbose=True, test="failures/expected/image.html", results_directory=None) |
- |
- oc.capture_output() |
- self.command.execute(options, [], self.tool) |
- finally: |
- out, _, _ = oc.restore_output() |
- builders._exact_matches = old_exact_matches |
- |
- self.assertFalse(fs.exists(fs.join(port.layout_tests_dir(), 'platform/test-linux-x86_64/failures/expected/image-expected.txt'))) |
- self.assertEqual(self._read(fs.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt')), |
- 'original win7 result') |
- |
- |
-class TestRebaselineTest(_BaseTestCase): |
- command_constructor = RebaselineTest # AKA webkit-patch rebaseline-test-internal |
- |
- def setUp(self): |
- super(TestRebaselineTest, self).setUp() |
- self.options = MockOptions(builder="WebKit Mac10.7", test="userscripts/another-test.html", suffixes="txt", results_directory=None) |
- |
- def test_baseline_directory(self): |
- command = self.command |
- self.assertMultiLineEqual(command._baseline_directory("WebKit Mac10.7"), "/mock-checkout/third_party/WebKit/tests/platform/mac-lion") |
- self.assertMultiLineEqual(command._baseline_directory("WebKit Mac10.6"), "/mock-checkout/third_party/WebKit/tests/platform/mac-snowleopard") |
- |
- def test_rebaseline_updates_expectations_file_noop(self): |
- self._zero_out_test_expectations() |
- self._write(self.lion_expectations_path, """Bug(B) [ Mac Linux XP Debug ] fast/dom/Window/window-postmessage-clone-really-deep-array.html [ Pass ] |
-Bug(A) [ Debug ] : fast/css/large-list-of-rules-crash.html [ Failure ] |
-""") |
- self._write("fast/dom/Window/window-postmessage-clone-really-deep-array.html", "Dummy test contents") |
- self._write("fast/css/large-list-of-rules-crash.html", "Dummy test contents") |
- self._write("userscripts/another-test.html", "Dummy test contents") |
- |
- self.options.suffixes = "png,wav,txt" |
- self.command._rebaseline_test_and_update_expectations(self.options) |
- |
- self.assertItemsEqual(self.tool.web.urls_fetched, |
- [self.WEB_PREFIX + '/userscripts/another-test-actual.png', |
- self.WEB_PREFIX + '/userscripts/another-test-actual.wav', |
- self.WEB_PREFIX + '/userscripts/another-test-actual.txt']) |
- new_expectations = self._read(self.lion_expectations_path) |
- self.assertMultiLineEqual(new_expectations, """Bug(B) [ Mac Linux XP Debug ] fast/dom/Window/window-postmessage-clone-really-deep-array.html [ Pass ] |
-Bug(A) [ Debug ] : fast/css/large-list-of-rules-crash.html [ Failure ] |
-""") |
- |
- def test_rebaseline_test(self): |
- self.command._rebaseline_test("WebKit Linux", "userscripts/another-test.html", "txt", self.WEB_PREFIX) |
- self.assertItemsEqual(self.tool.web.urls_fetched, [self.WEB_PREFIX + '/userscripts/another-test-actual.txt']) |
- |
- def test_rebaseline_test_with_results_directory(self): |
- self._write("userscripts/another-test.html", "test data") |
- self._write(self.lion_expectations_path, "Bug(x) [ Mac ] userscripts/another-test.html [ ImageOnlyFailure ]\nbug(z) [ Linux ] userscripts/another-test.html [ ImageOnlyFailure ]\n") |
- self.options.results_directory = '/tmp' |
- self.command._rebaseline_test_and_update_expectations(self.options) |
- self.assertItemsEqual(self.tool.web.urls_fetched, ['file:///tmp/userscripts/another-test-actual.txt']) |
- |
- def test_rebaseline_reftest(self): |
- self._write("userscripts/another-test.html", "test data") |
- self._write("userscripts/another-test-expected.sky", "generic result") |
- OutputCapture().assert_outputs(self, self.command._rebaseline_test_and_update_expectations, args=[self.options], |
- expected_logs="Cannot rebaseline reftest: userscripts/another-test.html\n") |
- self.assertDictEqual(self.command._scm_changes, {'add': [], 'remove-lines': [], "delete": []}) |
- |
- def test_rebaseline_test_and_print_scm_changes(self): |
- self.command._print_scm_changes = True |
- self.command._scm_changes = {'add': [], 'delete': []} |
- self.tool._scm.exists = lambda x: False |
- |
- self.command._rebaseline_test("WebKit Linux", "userscripts/another-test.html", "txt", None) |
- |
- self.assertDictEqual(self.command._scm_changes, {'add': ['/mock-checkout/third_party/WebKit/tests/platform/linux/userscripts/another-test-expected.txt'], 'delete': []}) |
- |
- def test_rebaseline_test_internal_with_port_that_lacks_buildbot(self): |
- self.tool.executive = MockExecutive2() |
- |
- # FIXME: it's confusing that this is the test- port, and not the regular win port. Really all of the tests should be using the test ports. |
- port = self.tool.port_factory.get('test-win-win7') |
- self._write(port._filesystem.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt'), 'original win7 result') |
- |
- old_exact_matches = builders._exact_matches |
- oc = OutputCapture() |
- try: |
- builders._exact_matches = { |
- "MOCK XP": {"port_name": "test-win-xp"}, |
- "MOCK Win7": {"port_name": "test-win-win7"}, |
- } |
- |
- options = MockOptions(optimize=True, builder="MOCK Win7", suffixes="txt", |
- verbose=True, test="failures/expected/image.html", results_directory=None) |
- |
- oc.capture_output() |
- self.command.execute(options, [], self.tool) |
- finally: |
- out, _, _ = oc.restore_output() |
- builders._exact_matches = old_exact_matches |
- |
- self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt')), 'MOCK Web result, convert 404 to None=True') |
- self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-win-xp/failures/expected/image-expected.txt'))) |
- self.assertMultiLineEqual(out, '{"add": [], "remove-lines": [{"test": "failures/expected/image.html", "builder": "MOCK Win7"}], "delete": []}\n') |
- |
- |
-class TestAbstractParallelRebaselineCommand(_BaseTestCase): |
- command_constructor = AbstractParallelRebaselineCommand |
- |
- def test_builders_to_fetch_from(self): |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK XP": {"port_name": "test-win-xp"}, |
- "MOCK Win7": {"port_name": "test-win-win7"}, |
- "MOCK Win7 (dbg)(1)": {"port_name": "test-win-win7"}, |
- "MOCK Win7 (dbg)(2)": {"port_name": "test-win-win7"}, |
- } |
- |
- builders_to_fetch = self.command._builders_to_fetch_from(["MOCK XP", "MOCK Win7 (dbg)(1)", "MOCK Win7 (dbg)(2)", "MOCK Win7"]) |
- self.assertEqual(builders_to_fetch, ["MOCK XP", "MOCK Win7"]) |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- |
-class TestRebaselineJson(_BaseTestCase): |
- command_constructor = RebaselineJson |
- |
- def setUp(self): |
- super(TestRebaselineJson, self).setUp() |
- self.tool.executive = MockExecutive2() |
- self.old_exact_matches = builders._exact_matches |
- builders._exact_matches = { |
- "MOCK builder": {"port_name": "test-mac-snowleopard"}, |
- "MOCK builder (Debug)": {"port_name": "test-mac-snowleopard"}, |
- } |
- |
- def tearDown(self): |
- builders._exact_matches = self.old_exact_matches |
- super(TestRebaselineJson, self).tearDown() |
- |
- def test_rebaseline_test_passes_on_all_builders(self): |
- self._setup_mock_builder_data() |
- |
- def builder_data(): |
- self.command._builder_data['MOCK builder'] = LayoutTestResults.results_from_string("""ADD_RESULTS({ |
- "tests": { |
- "userscripts": { |
- "first-test.html": { |
- "expected": "NEEDSREBASELINE", |
- "actual": "PASS" |
- } |
- } |
- } |
-});""") |
- return self.command._builder_data |
- |
- self.command.builder_data = builder_data |
- |
- options = MockOptions(optimize=True, verbose=True, results_directory=None) |
- |
- self._write(self.lion_expectations_path, "Bug(x) userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"MOCK builder": ["txt", "png"]}}) |
- |
- # Note that we have one run_in_parallel() call followed by a run_command() |
- self.assertEqual(self.tool.executive.calls, |
- [[['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', '', 'userscripts/first-test.html', '--verbose']]]) |
- |
- def test_rebaseline_all(self): |
- self._setup_mock_builder_data() |
- |
- options = MockOptions(optimize=True, verbose=True, results_directory=None) |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"MOCK builder": ["txt", "png"]}}) |
- |
- # Note that we have one run_in_parallel() call followed by a run_command() |
- self.assertEqual(self.tool.executive.calls, |
- [[['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--verbose']], |
- [['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--verbose']], |
- [['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', 'txt,png', 'userscripts/first-test.html', '--verbose']]]) |
- |
- def test_rebaseline_debug(self): |
- self._setup_mock_builder_data() |
- |
- options = MockOptions(optimize=True, verbose=True, results_directory=None) |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"MOCK builder (Debug)": ["txt", "png"]}}) |
- |
- # Note that we have one run_in_parallel() call followed by a run_command() |
- self.assertEqual(self.tool.executive.calls, |
- [[['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder (Debug)', '--test', 'userscripts/first-test.html', '--verbose']], |
- [['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder (Debug)', '--test', 'userscripts/first-test.html', '--verbose']], |
- [['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', 'txt,png', 'userscripts/first-test.html', '--verbose']]]) |
- |
- def test_no_optimize(self): |
- self._setup_mock_builder_data() |
- |
- options = MockOptions(optimize=False, verbose=True, results_directory=None) |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"MOCK builder (Debug)": ["txt", "png"]}}) |
- |
- # Note that we have only one run_in_parallel() call |
- self.assertEqual(self.tool.executive.calls, |
- [[['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder (Debug)', '--test', 'userscripts/first-test.html', '--verbose']], |
- [['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder (Debug)', '--test', 'userscripts/first-test.html', '--verbose']]]) |
- |
- def test_results_directory(self): |
- self._setup_mock_builder_data() |
- |
- options = MockOptions(optimize=False, verbose=True, results_directory='/tmp') |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"MOCK builder": ["txt", "png"]}}) |
- |
- # Note that we have only one run_in_parallel() call |
- self.assertEqual(self.tool.executive.calls, |
- [[['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--results-directory', '/tmp', '--verbose']], |
- [['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--results-directory', '/tmp', '--verbose']]]) |
- |
-class TestRebaselineJsonUpdatesExpectationsFiles(_BaseTestCase): |
- command_constructor = RebaselineJson |
- |
- def setUp(self): |
- super(TestRebaselineJsonUpdatesExpectationsFiles, self).setUp() |
- self.tool.executive = MockExecutive2() |
- |
- def mock_run_command(args, |
- cwd=None, |
- input=None, |
- error_handler=None, |
- return_exit_code=False, |
- return_stderr=True, |
- decode_output=False, |
- env=None): |
- return '{"add": [], "remove-lines": [{"test": "userscripts/first-test.html", "builder": "WebKit Mac10.7"}]}\n' |
- self.tool.executive.run_command = mock_run_command |
- |
- def test_rebaseline_updates_expectations_file(self): |
- options = MockOptions(optimize=False, verbose=True, results_directory=None) |
- |
- self._write(self.lion_expectations_path, "Bug(x) [ Mac ] userscripts/first-test.html [ ImageOnlyFailure ]\nbug(z) [ Linux ] userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self._setup_mock_builder_data() |
- |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"WebKit Mac10.7": ["txt", "png"]}}) |
- |
- new_expectations = self._read(self.lion_expectations_path) |
- self.assertMultiLineEqual(new_expectations, "Bug(x) [ Mavericks MountainLion Retina SnowLeopard ] userscripts/first-test.html [ ImageOnlyFailure ]\nbug(z) [ Linux ] userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- |
- def test_rebaseline_updates_expectations_file_all_platforms(self): |
- options = MockOptions(optimize=False, verbose=True, results_directory=None) |
- |
- self._write(self.lion_expectations_path, "Bug(x) userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self._setup_mock_builder_data() |
- |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"WebKit Mac10.7": ["txt", "png"]}}) |
- |
- new_expectations = self._read(self.lion_expectations_path) |
- self.assertMultiLineEqual(new_expectations, "Bug(x) [ Android Linux Mavericks MountainLion Retina SnowLeopard Win ] userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- |
- def test_rebaseline_handles_platform_skips(self): |
- # This test is just like test_rebaseline_updates_expectations_file_all_platforms(), |
- # except that if a particular port happens to SKIP a test in an overrides file, |
- # we count that as passing, and do not think that we still need to rebaseline it. |
- options = MockOptions(optimize=False, verbose=True, results_directory=None) |
- |
- self._write(self.lion_expectations_path, "Bug(x) userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- self._write("NeverFixTests", "Bug(y) [ Android ] userscripts [ Skip ]\n") |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self._setup_mock_builder_data() |
- |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"WebKit Mac10.7": ["txt", "png"]}}) |
- |
- new_expectations = self._read(self.lion_expectations_path) |
- self.assertMultiLineEqual(new_expectations, "Bug(x) [ Linux Mavericks MountainLion Retina SnowLeopard Win ] userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- |
- def test_rebaseline_handles_skips_in_file(self): |
- # This test is like test_Rebaseline_handles_platform_skips, except that the |
- # Skip is in the same (generic) file rather than a platform file. In this case, |
- # the Skip line should be left unmodified. Note that the first line is now |
- # qualified as "[Linux Mac Win]"; if it was unqualified, it would conflict with |
- # the second line. |
- options = MockOptions(optimize=False, verbose=True, results_directory=None) |
- |
- self._write(self.lion_expectations_path, |
- ("Bug(x) [ Linux Mac Win ] userscripts/first-test.html [ ImageOnlyFailure ]\n" |
- "Bug(y) [ Android ] userscripts/first-test.html [ Skip ]\n")) |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self._setup_mock_builder_data() |
- |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"WebKit Mac10.7": ["txt", "png"]}}) |
- |
- new_expectations = self._read(self.lion_expectations_path) |
- self.assertMultiLineEqual(new_expectations, |
- ("Bug(x) [ Linux Mavericks MountainLion Retina SnowLeopard Win ] userscripts/first-test.html [ ImageOnlyFailure ]\n" |
- "Bug(y) [ Android ] userscripts/first-test.html [ Skip ]\n")) |
- |
- def test_rebaseline_handles_smoke_tests(self): |
- # This test is just like test_rebaseline_handles_platform_skips, except that we check for |
- # a test not being in the SmokeTests file, instead of using overrides files. |
- # If a test is not part of the smoke tests, we count that as passing on ports that only |
- # run smoke tests, and do not think that we still need to rebaseline it. |
- options = MockOptions(optimize=False, verbose=True, results_directory=None) |
- |
- self._write(self.lion_expectations_path, "Bug(x) userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- self._write("SmokeTests", "fast/html/article-element.html") |
- self._write("userscripts/first-test.html", "Dummy test contents") |
- self._setup_mock_builder_data() |
- |
- self.command._rebaseline(options, {"userscripts/first-test.html": {"WebKit Mac10.7": ["txt", "png"]}}) |
- |
- new_expectations = self._read(self.lion_expectations_path) |
- self.assertMultiLineEqual(new_expectations, "Bug(x) [ Linux Mavericks MountainLion Retina SnowLeopard Win ] userscripts/first-test.html [ ImageOnlyFailure ]\n") |
- |
- |
-class TestRebaseline(_BaseTestCase): |
- # This command shares most of its logic with RebaselineJson, so these tests just test what is different. |
- |
- command_constructor = Rebaseline # AKA webkit-patch rebaseline |
- |
- def test_rebaseline(self): |
- self.command._builders_to_pull_from = lambda: [MockBuilder('MOCK builder')] |
- |
- self._write("userscripts/first-test.html", "test data") |
- |
- self._zero_out_test_expectations() |
- self._setup_mock_builder_data() |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK builder": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- } |
- self.command.execute(MockOptions(results_directory=False, optimize=False, builders=None, suffixes="txt,png", verbose=True), ['userscripts/first-test.html'], self.tool) |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- calls = filter(lambda x: x != ['qmake', '-v'] and x[0] != 'perl', self.tool.executive.calls) |
- self.assertEqual(calls, |
- [[['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--verbose']], |
- [['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--verbose']]]) |
- |
- def test_rebaseline_directory(self): |
- self.command._builders_to_pull_from = lambda: [MockBuilder('MOCK builder')] |
- |
- self._write("userscripts/first-test.html", "test data") |
- self._write("userscripts/second-test.html", "test data") |
- |
- self._setup_mock_builder_data() |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK builder": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- } |
- self.command.execute(MockOptions(results_directory=False, optimize=False, builders=None, suffixes="txt,png", verbose=True), ['userscripts'], self.tool) |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- calls = filter(lambda x: x != ['qmake', '-v'] and x[0] != 'perl', self.tool.executive.calls) |
- self.assertEqual(calls, |
- [[['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--verbose'], |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/second-test.html', '--verbose']], |
- [['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--verbose'], |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/second-test.html', '--verbose']]]) |
- |
- |
-class MockLineRemovingExecutive(MockExecutive): |
- def run_in_parallel(self, commands): |
- assert len(commands) |
- |
- num_previous_calls = len(self.calls) |
- command_outputs = [] |
- for cmd_line, cwd in commands: |
- out = self.run_command(cmd_line, cwd=cwd) |
- if 'rebaseline-test-internal' in cmd_line: |
- out = '{"add": [], "remove-lines": [{"test": "%s", "builder": "%s"}], "delete": []}\n' % (cmd_line[8], cmd_line[6]) |
- command_outputs.append([0, out, '']) |
- |
- new_calls = self.calls[num_previous_calls:] |
- self.calls = self.calls[:num_previous_calls] |
- self.calls.append(new_calls) |
- return command_outputs |
- |
- |
-class TestRebaselineExpectations(_BaseTestCase): |
- command_constructor = RebaselineExpectations |
- |
- def setUp(self): |
- super(TestRebaselineExpectations, self).setUp() |
- self.options = MockOptions(optimize=False, builders=None, suffixes=['txt'], verbose=False, platform=None, results_directory=None) |
- |
- def _write_test_file(self, port, path, contents): |
- abs_path = self.tool.filesystem.join(port.layout_tests_dir(), path) |
- self.tool.filesystem.write_text_file(abs_path, contents) |
- |
- def _setup_test_port(self): |
- test_port = self.tool.port_factory.get('test') |
- original_get = self.tool.port_factory.get |
- |
- def get_test_port(port_name=None, options=None, **kwargs): |
- if not port_name: |
- return test_port |
- return original_get(port_name, options, **kwargs) |
- # Need to make sure all the ports grabbed use the test checkout path instead of the mock checkout path. |
- # FIXME: crbug.com/279494 - we shouldn't be doing this. |
- self.tool.port_factory.get = get_test_port |
- |
- return test_port |
- |
- def test_rebaseline_expectations(self): |
- self._zero_out_test_expectations() |
- |
- self.tool.executive = MockExecutive2() |
- |
- def builder_data(): |
- self.command._builder_data['MOCK SnowLeopard'] = self.command._builder_data['MOCK Leopard'] = LayoutTestResults.results_from_string("""ADD_RESULTS({ |
- "tests": { |
- "userscripts": { |
- "another-test.html": { |
- "expected": "PASS", |
- "actual": "PASS TEXT" |
- }, |
- "images.svg": { |
- "expected": "FAIL", |
- "actual": "IMAGE+TEXT" |
- } |
- } |
- } |
-});""") |
- return self.command._builder_data |
- |
- self.command.builder_data = builder_data |
- |
- self._write("userscripts/another-test.html", "Dummy test contents") |
- self._write("userscripts/images.svg", "Dummy test contents") |
- self.command._tests_to_rebaseline = lambda port: { |
- 'userscripts/another-test.html': set(['txt']), |
- 'userscripts/images.svg': set(['png']), |
- 'userscripts/not-actually-failing.html': set(['txt', 'png', 'wav']), |
- } |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK SnowLeopard": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- self.command.execute(self.options, [], self.tool) |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- # FIXME: change this to use the test- ports. |
- calls = filter(lambda x: x != ['qmake', '-v'], self.tool.executive.calls) |
- self.assertEqual(self.tool.executive.calls, [ |
- [ |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt', '--builder', 'MOCK Leopard', '--test', 'userscripts/another-test.html'], |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt', '--builder', 'MOCK SnowLeopard', '--test', 'userscripts/another-test.html'], |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'png', '--builder', 'MOCK Leopard', '--test', 'userscripts/images.svg'], |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'png', '--builder', 'MOCK SnowLeopard', '--test', 'userscripts/images.svg'], |
- ], |
- [ |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt', '--builder', 'MOCK Leopard', '--test', 'userscripts/another-test.html'], |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt', '--builder', 'MOCK SnowLeopard', '--test', 'userscripts/another-test.html'], |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'png', '--builder', 'MOCK Leopard', '--test', 'userscripts/images.svg'], |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'png', '--builder', 'MOCK SnowLeopard', '--test', 'userscripts/images.svg'], |
- ], |
- ]) |
- |
- def test_rebaseline_expectations_noop(self): |
- self._zero_out_test_expectations() |
- |
- oc = OutputCapture() |
- try: |
- oc.capture_output() |
- self.command.execute(self.options, [], self.tool) |
- finally: |
- _, _, logs = oc.restore_output() |
- self.assertEqual(self.tool.filesystem.written_files, {}) |
- self.assertEqual(logs, 'Did not find any tests marked Rebaseline.\n') |
- |
- def disabled_test_overrides_are_included_correctly(self): |
- # This tests that the any tests marked as REBASELINE in the overrides are found, but |
- # that the overrides do not get written into the main file. |
- self._zero_out_test_expectations() |
- |
- self._write(self.lion_expectations_path, '') |
- self.lion_port.expectations_dict = lambda: { |
- self.lion_expectations_path: '', |
- 'overrides': ('Bug(x) userscripts/another-test.html [ Failure Rebaseline ]\n' |
- 'Bug(y) userscripts/test.html [ Crash ]\n')} |
- self._write('/userscripts/another-test.html', '') |
- |
- self.assertDictEqual(self.command._tests_to_rebaseline(self.lion_port), {'userscripts/another-test.html': set(['png', 'txt', 'wav'])}) |
- self.assertEqual(self._read(self.lion_expectations_path), '') |
- |
- def test_rebaseline_without_other_expectations(self): |
- self._write("userscripts/another-test.html", "Dummy test contents") |
- self._write(self.lion_expectations_path, "Bug(x) userscripts/another-test.html [ Rebaseline ]\n") |
- self.assertDictEqual(self.command._tests_to_rebaseline(self.lion_port), {'userscripts/another-test.html': ('png', 'wav', 'txt')}) |
- |
- def test_rebaseline_test_passes_everywhere(self): |
- test_port = self._setup_test_port() |
- |
- old_builder_data = self.command.builder_data |
- |
- def builder_data(): |
- self.command._builder_data['MOCK Leopard'] = self.command._builder_data['MOCK SnowLeopard'] = LayoutTestResults.results_from_string("""ADD_RESULTS({ |
- "tests": { |
- "fast": { |
- "dom": { |
- "prototype-taco.html": { |
- "expected": "FAIL", |
- "actual": "PASS", |
- "is_unexpected": true |
- } |
- } |
- } |
- } |
-});""") |
- return self.command._builder_data |
- |
- self.command.builder_data = builder_data |
- |
- self.tool.filesystem.write_text_file(test_port.path_to_generic_test_expectations_file(), """ |
-Bug(foo) fast/dom/prototype-taco.html [ Rebaseline ] |
-""") |
- |
- self._write_test_file(test_port, 'fast/dom/prototype-taco.html', "Dummy test contents") |
- |
- self.tool.executive = MockLineRemovingExecutive() |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK SnowLeopard": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- |
- self.command.execute(self.options, [], self.tool) |
- self.assertEqual(self.tool.executive.calls, []) |
- |
- # The mac ports should both be removed since they're the only ones in builders._exact_matches. |
- self.assertEqual(self.tool.filesystem.read_text_file(test_port.path_to_generic_test_expectations_file()), """ |
-Bug(foo) [ Linux Win ] fast/dom/prototype-taco.html [ Rebaseline ] |
-""") |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- |
-class _FakeOptimizer(BaselineOptimizer): |
- def read_results_by_directory(self, baseline_name): |
- if baseline_name.endswith('txt'): |
- return {'tests/passes/text.html': '123456'} |
- return {} |
- |
- |
-class TestOptimizeBaselines(_BaseTestCase): |
- command_constructor = OptimizeBaselines |
- |
- def _write_test_file(self, port, path, contents): |
- abs_path = self.tool.filesystem.join(port.layout_tests_dir(), path) |
- self.tool.filesystem.write_text_file(abs_path, contents) |
- |
- def setUp(self): |
- super(TestOptimizeBaselines, self).setUp() |
- |
- # FIXME: This is a hack to get the unittest and the BaselineOptimize to both use /mock-checkout |
- # instead of one using /mock-checkout and one using /test-checkout. |
- default_port = self.tool.port_factory.get() |
- self.tool.port_factory.get = lambda port_name=None: default_port |
- |
- def test_modify_scm(self): |
- test_port = self.tool.port_factory.get('test') |
- self._write_test_file(test_port, 'another/test.html', "Dummy test contents") |
- self._write_test_file(test_port, 'platform/mac-snowleopard/another/test-expected.txt', "result A") |
- self._write_test_file(test_port, 'another/test-expected.txt', "result A") |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard Debug": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- OutputCapture().assert_outputs(self, self.command.execute, args=[ |
- MockOptions(suffixes='txt', no_modify_scm=False, platform='test-mac-snowleopard'), |
- ['another/test.html'], |
- self.tool, |
- ], expected_stdout='{"add": [], "remove-lines": [], "delete": []}\n') |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(test_port.layout_tests_dir(), 'platform/mac/another/test-expected.txt'))) |
- self.assertTrue(self.tool.filesystem.exists(self.tool.filesystem.join(test_port.layout_tests_dir(), 'another/test-expected.txt'))) |
- |
- def test_no_modify_scm(self): |
- test_port = self.tool.port_factory.get('test') |
- self._write_test_file(test_port, 'another/test.html', "Dummy test contents") |
- self._write_test_file(test_port, 'platform/mac-snowleopard/another/test-expected.txt', "result A") |
- self._write_test_file(test_port, 'another/test-expected.txt', "result A") |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard Debug": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- OutputCapture().assert_outputs(self, self.command.execute, args=[ |
- MockOptions(suffixes='txt', no_modify_scm=True, platform='test-mac-snowleopard'), |
- ['another/test.html'], |
- self.tool, |
- ], expected_stdout='{"add": [], "remove-lines": [], "delete": ["/mock-checkout/third_party/WebKit/tests/platform/mac-snowleopard/another/test-expected.txt"]}\n') |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(test_port.layout_tests_dir(), 'platform/mac/another/test-expected.txt'))) |
- self.assertTrue(self.tool.filesystem.exists(self.tool.filesystem.join(test_port.layout_tests_dir(), 'another/test-expected.txt'))) |
- |
- def test_optimize_all_suffixes_by_default(self): |
- test_port = self.tool.port_factory.get('test') |
- self._write_test_file(test_port, 'another/test.html', "Dummy test contents") |
- self._write_test_file(test_port, 'platform/mac-snowleopard/another/test-expected.txt', "result A") |
- self._write_test_file(test_port, 'platform/mac-snowleopard/another/test-expected.png', "result A png") |
- self._write_test_file(test_port, 'another/test-expected.txt', "result A") |
- self._write_test_file(test_port, 'another/test-expected.png', "result A png") |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard Debug": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- oc = OutputCapture() |
- oc.capture_output() |
- self.command.execute(MockOptions(suffixes='txt,wav,png', no_modify_scm=True, platform='test-mac-snowleopard'), |
- ['another/test.html'], |
- self.tool) |
- finally: |
- out, err, logs = oc.restore_output() |
- builders._exact_matches = old_exact_matches |
- |
- self.assertEquals(out, '{"add": [], "remove-lines": [], "delete": ["/mock-checkout/third_party/WebKit/tests/platform/mac-snowleopard/another/test-expected.txt", "/mock-checkout/third_party/WebKit/tests/platform/mac-snowleopard/another/test-expected.png"]}\n') |
- self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(test_port.layout_tests_dir(), 'platform/mac/another/test-expected.txt'))) |
- self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(test_port.layout_tests_dir(), 'platform/mac/another/test-expected.png'))) |
- self.assertTrue(self.tool.filesystem.exists(self.tool.filesystem.join(test_port.layout_tests_dir(), 'another/test-expected.txt'))) |
- self.assertTrue(self.tool.filesystem.exists(self.tool.filesystem.join(test_port.layout_tests_dir(), 'another/test-expected.png'))) |
- |
- |
-class TestAnalyzeBaselines(_BaseTestCase): |
- command_constructor = AnalyzeBaselines |
- |
- def setUp(self): |
- super(TestAnalyzeBaselines, self).setUp() |
- self.port = self.tool.port_factory.get('test') |
- self.tool.port_factory.get = (lambda port_name=None, options=None: self.port) |
- self.lines = [] |
- self.command._optimizer_class = _FakeOptimizer |
- self.command._write = (lambda msg: self.lines.append(msg)) # pylint bug warning about unnecessary lambda? pylint: disable=W0108 |
- |
- def test_default(self): |
- self.command.execute(MockOptions(suffixes='txt', missing=False, platform=None), ['passes/text.html'], self.tool) |
- self.assertEqual(self.lines, |
- ['passes/text-expected.txt:', |
- ' (generic): 123456']) |
- |
- def test_missing_baselines(self): |
- self.command.execute(MockOptions(suffixes='png,txt', missing=True, platform=None), ['passes/text.html'], self.tool) |
- self.assertEqual(self.lines, |
- ['passes/text-expected.png: (no baselines found)', |
- 'passes/text-expected.txt:', |
- ' (generic): 123456']) |
- |
- |
-class TestAutoRebaseline(_BaseTestCase): |
- command_constructor = AutoRebaseline |
- |
- def _write_test_file(self, port, path, contents): |
- abs_path = self.tool.filesystem.join(port.layout_tests_dir(), path) |
- self.tool.filesystem.write_text_file(abs_path, contents) |
- |
- def _setup_test_port(self): |
- test_port = self.tool.port_factory.get('test') |
- original_get = self.tool.port_factory.get |
- |
- def get_test_port(port_name=None, options=None, **kwargs): |
- if not port_name: |
- return test_port |
- return original_get(port_name, options, **kwargs) |
- # Need to make sure all the ports grabbed use the test checkout path instead of the mock checkout path. |
- # FIXME: crbug.com/279494 - we shouldn't be doing this. |
- self.tool.port_factory.get = get_test_port |
- |
- return test_port |
- |
- def setUp(self): |
- super(TestAutoRebaseline, self).setUp() |
- self.command.latest_revision_processed_on_all_bots = lambda: 9000 |
- self.command.bot_revision_data = lambda: [{"builder": "Mock builder", "revision": "9000"}] |
- |
- def test_release_builders(self): |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK Leopard Debug": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK Leopard ASAN": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- self.assertEqual(self.command._release_builders(), ['MOCK Leopard']) |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- def test_tests_to_rebaseline(self): |
- def blame(path): |
- return """ |
-624c3081c0 path/to/TestExpectations (foobarbaz1@chromium.org 2013-06-14 20:18:46 +0000 11) crbug.com/24182 [ Debug ] path/to/norebaseline.html [ ImageOnlyFailure ] |
-624c3081c0 path/to/TestExpectations (foobarbaz1@chromium.org 2013-04-28 04:52:41 +0000 13) Bug(foo) path/to/rebaseline-without-bug-number.html [ NeedsRebaseline ] |
-624c3081c0 path/to/TestExpectations (foobarbaz1@chromium.org 2013-06-14 20:18:46 +0000 11) crbug.com/24182 [ Debug ] path/to/rebaseline-with-modifiers.html [ NeedsRebaseline ] |
-624c3081c0 path/to/TestExpectations (foobarbaz1@chromium.org 2013-04-28 04:52:41 +0000 12) crbug.com/24182 crbug.com/234 path/to/rebaseline-without-modifiers.html [ NeedsRebaseline ] |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-04-28 04:52:41 +0000 12) crbug.com/24182 path/to/rebaseline-new-revision.html [ NeedsRebaseline ] |
-624caaaaaa path/to/TestExpectations (foo@chromium.org 2013-04-28 04:52:41 +0000 12) crbug.com/24182 path/to/not-cycled-through-bots.html [ NeedsRebaseline ] |
-0000000000 path/to/TestExpectations (foo@chromium.org 2013-04-28 04:52:41 +0000 12) crbug.com/24182 path/to/locally-changed-lined.html [ NeedsRebaseline ] |
-""" |
- self.tool.scm().blame = blame |
- |
- min_revision = 9000 |
- self.assertEqual(self.command.tests_to_rebaseline(self.tool, min_revision, print_revisions=False), ( |
- set(['path/to/rebaseline-without-bug-number.html', 'path/to/rebaseline-with-modifiers.html', 'path/to/rebaseline-without-modifiers.html']), |
- 5678, |
- 'foobarbaz1@chromium.org', |
- set(['24182', '234']), |
- True)) |
- |
- def test_tests_to_rebaseline_over_limit(self): |
- def blame(path): |
- result = "" |
- for i in range(0, self.command.MAX_LINES_TO_REBASELINE + 1): |
- result += "624c3081c0 path/to/TestExpectations (foobarbaz1@chromium.org 2013-04-28 04:52:41 +0000 13) crbug.com/24182 path/to/rebaseline-%s.html [ NeedsRebaseline ]\n" % i |
- return result |
- self.tool.scm().blame = blame |
- |
- expected_list_of_tests = [] |
- for i in range(0, self.command.MAX_LINES_TO_REBASELINE): |
- expected_list_of_tests.append("path/to/rebaseline-%s.html" % i) |
- |
- min_revision = 9000 |
- self.assertEqual(self.command.tests_to_rebaseline(self.tool, min_revision, print_revisions=False), ( |
- set(expected_list_of_tests), |
- 5678, |
- 'foobarbaz1@chromium.org', |
- set(['24182']), |
- True)) |
- |
- def test_commit_message(self): |
- author = "foo@chromium.org" |
- revision = 1234 |
- bugs = set() |
- self.assertEqual(self.command.commit_message(author, revision, bugs), |
- """Auto-rebaseline for r1234 |
- |
-http://src.chromium.org/viewvc/blink?view=revision&revision=1234 |
- |
-TBR=foo@chromium.org |
-""") |
- |
- bugs = set(["234", "345"]) |
- self.assertEqual(self.command.commit_message(author, revision, bugs), |
- """Auto-rebaseline for r1234 |
- |
-http://src.chromium.org/viewvc/blink?view=revision&revision=1234 |
- |
-BUG=234,345 |
-TBR=foo@chromium.org |
-""") |
- |
- def test_no_needs_rebaseline_lines(self): |
- def blame(path): |
- return """ |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-06-14 20:18:46 +0000 11) crbug.com/24182 [ Debug ] path/to/norebaseline.html [ ImageOnlyFailure ] |
-""" |
- self.tool.scm().blame = blame |
- |
- self.command.execute(MockOptions(optimize=True, verbose=False, move_overwritten_baselines=False, results_directory=False), [], self.tool) |
- self.assertEqual(self.tool.executive.calls, []) |
- |
- def test_execute(self): |
- def blame(path): |
- return """ |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-06-14 20:18:46 +0000 11) # Test NeedsRebaseline being in a comment doesn't bork parsing. |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-06-14 20:18:46 +0000 11) crbug.com/24182 [ Debug ] path/to/norebaseline.html [ ImageOnlyFailure ] |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-04-28 04:52:41 +0000 13) Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ] |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-06-14 20:18:46 +0000 11) crbug.com/24182 [ SnowLeopard ] fast/dom/prototype-strawberry.html [ NeedsRebaseline ] |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-04-28 04:52:41 +0000 12) crbug.com/24182 fast/dom/prototype-chocolate.html [ NeedsRebaseline ] |
-624caaaaaa path/to/TestExpectations (foo@chromium.org 2013-04-28 04:52:41 +0000 12) crbug.com/24182 path/to/not-cycled-through-bots.html [ NeedsRebaseline ] |
-0000000000 path/to/TestExpectations (foo@chromium.org 2013-04-28 04:52:41 +0000 12) crbug.com/24182 path/to/locally-changed-lined.html [ NeedsRebaseline ] |
-""" |
- self.tool.scm().blame = blame |
- |
- test_port = self._setup_test_port() |
- |
- old_builder_data = self.command.builder_data |
- |
- def builder_data(): |
- old_builder_data() |
- # have prototype-chocolate only fail on "MOCK Leopard". |
- self.command._builder_data['MOCK SnowLeopard'] = LayoutTestResults.results_from_string("""ADD_RESULTS({ |
- "tests": { |
- "fast": { |
- "dom": { |
- "prototype-taco.html": { |
- "expected": "PASS", |
- "actual": "PASS TEXT", |
- "is_unexpected": true |
- }, |
- "prototype-chocolate.html": { |
- "expected": "FAIL", |
- "actual": "PASS" |
- }, |
- "prototype-strawberry.html": { |
- "expected": "PASS", |
- "actual": "IMAGE PASS", |
- "is_unexpected": true |
- } |
- } |
- } |
- } |
-});""") |
- return self.command._builder_data |
- |
- self.command.builder_data = builder_data |
- |
- self.tool.filesystem.write_text_file(test_port.path_to_generic_test_expectations_file(), """ |
-crbug.com/24182 [ Debug ] path/to/norebaseline.html [ Rebaseline ] |
-Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ] |
-crbug.com/24182 [ SnowLeopard ] fast/dom/prototype-strawberry.html [ NeedsRebaseline ] |
-crbug.com/24182 fast/dom/prototype-chocolate.html [ NeedsRebaseline ] |
-crbug.com/24182 path/to/not-cycled-through-bots.html [ NeedsRebaseline ] |
-crbug.com/24182 path/to/locally-changed-lined.html [ NeedsRebaseline ] |
-""") |
- |
- self._write_test_file(test_port, 'fast/dom/prototype-taco.html', "Dummy test contents") |
- self._write_test_file(test_port, 'fast/dom/prototype-strawberry.html', "Dummy test contents") |
- self._write_test_file(test_port, 'fast/dom/prototype-chocolate.html', "Dummy test contents") |
- |
- self.tool.executive = MockLineRemovingExecutive() |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK SnowLeopard": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- |
- self.command.tree_status = lambda: 'closed' |
- self.command.execute(MockOptions(optimize=True, verbose=False, move_overwritten_baselines=False, results_directory=False), [], self.tool) |
- self.assertEqual(self.tool.executive.calls, []) |
- |
- self.command.tree_status = lambda: 'open' |
- self.tool.executive.calls = [] |
- self.command.execute(MockOptions(optimize=True, verbose=False, move_overwritten_baselines=False, results_directory=False), [], self.tool) |
- |
- self.assertEqual(self.tool.executive.calls, [ |
- [ |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK Leopard', '--test', 'fast/dom/prototype-chocolate.html'], |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'png', '--builder', 'MOCK SnowLeopard', '--test', 'fast/dom/prototype-strawberry.html'], |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt', '--builder', 'MOCK Leopard', '--test', 'fast/dom/prototype-taco.html'], |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt', '--builder', 'MOCK SnowLeopard', '--test', 'fast/dom/prototype-taco.html'], |
- ], |
- [ |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK Leopard', '--test', 'fast/dom/prototype-chocolate.html'], |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'png', '--builder', 'MOCK SnowLeopard', '--test', 'fast/dom/prototype-strawberry.html'], |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt', '--builder', 'MOCK Leopard', '--test', 'fast/dom/prototype-taco.html'], |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt', '--builder', 'MOCK SnowLeopard', '--test', 'fast/dom/prototype-taco.html'], |
- ], |
- [ |
- ['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', 'txt,png', 'fast/dom/prototype-chocolate.html'], |
- ['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', 'png', 'fast/dom/prototype-strawberry.html'], |
- ['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', 'txt', 'fast/dom/prototype-taco.html'], |
- ], |
- ['git', 'cl', 'upload', '-f'], |
- ['git', 'pull'], |
- ['git', 'cl', 'dcommit', '-f'], |
- ['git', 'cl', 'set_close'], |
- ]) |
- |
- # The mac ports should both be removed since they're the only ones in builders._exact_matches. |
- self.assertEqual(self.tool.filesystem.read_text_file(test_port.path_to_generic_test_expectations_file()), """ |
-crbug.com/24182 [ Debug ] path/to/norebaseline.html [ Rebaseline ] |
-Bug(foo) [ Linux Win ] fast/dom/prototype-taco.html [ NeedsRebaseline ] |
-crbug.com/24182 [ Linux Win ] fast/dom/prototype-chocolate.html [ NeedsRebaseline ] |
-crbug.com/24182 path/to/not-cycled-through-bots.html [ NeedsRebaseline ] |
-crbug.com/24182 path/to/locally-changed-lined.html [ NeedsRebaseline ] |
-""") |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- def test_execute_git_cl_hangs(self): |
- def blame(path): |
- return """ |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-04-28 04:52:41 +0000 13) Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ] |
-""" |
- self.tool.scm().blame = blame |
- |
- test_port = self._setup_test_port() |
- |
- old_builder_data = self.command.builder_data |
- |
- def builder_data(): |
- old_builder_data() |
- # have prototype-chocolate only fail on "MOCK Leopard". |
- self.command._builder_data['MOCK SnowLeopard'] = LayoutTestResults.results_from_string("""ADD_RESULTS({ |
- "tests": { |
- "fast": { |
- "dom": { |
- "prototype-taco.html": { |
- "expected": "PASS", |
- "actual": "PASS TEXT", |
- "is_unexpected": true |
- } |
- } |
- } |
- } |
-});""") |
- return self.command._builder_data |
- |
- self.command.builder_data = builder_data |
- |
- self.tool.filesystem.write_text_file(test_port.path_to_generic_test_expectations_file(), """ |
-Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ] |
-""") |
- |
- self._write_test_file(test_port, 'fast/dom/prototype-taco.html', "Dummy test contents") |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK SnowLeopard": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- |
- self.command.SECONDS_BEFORE_GIVING_UP = 0 |
- self.command.tree_status = lambda: 'open' |
- self.tool.executive.calls = [] |
- self.command.execute(MockOptions(optimize=True, verbose=False, move_overwritten_baselines=False, results_directory=False), [], self.tool) |
- |
- self.assertEqual(self.tool.executive.calls, [ |
- [ |
- ['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt', '--builder', 'MOCK SnowLeopard', '--test', 'fast/dom/prototype-taco.html'], |
- ], |
- [ |
- ['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt', '--builder', 'MOCK SnowLeopard', '--test', 'fast/dom/prototype-taco.html'], |
- ], |
- [['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', 'txt', 'fast/dom/prototype-taco.html']], |
- ['git', 'cl', 'upload', '-f'], |
- ]) |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- def test_execute_test_passes_everywhere(self): |
- def blame(path): |
- return """ |
-6469e754a1 path/to/TestExpectations (foobarbaz1@chromium.org 2013-04-28 04:52:41 +0000 13) Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ] |
-""" |
- self.tool.scm().blame = blame |
- |
- test_port = self._setup_test_port() |
- |
- old_builder_data = self.command.builder_data |
- |
- def builder_data(): |
- self.command._builder_data['MOCK Leopard'] = self.command._builder_data['MOCK SnowLeopard'] = LayoutTestResults.results_from_string("""ADD_RESULTS({ |
- "tests": { |
- "fast": { |
- "dom": { |
- "prototype-taco.html": { |
- "expected": "FAIL", |
- "actual": "PASS", |
- "is_unexpected": true |
- } |
- } |
- } |
- } |
-});""") |
- return self.command._builder_data |
- |
- self.command.builder_data = builder_data |
- |
- self.tool.filesystem.write_text_file(test_port.path_to_generic_test_expectations_file(), """ |
-Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ] |
-""") |
- |
- self._write_test_file(test_port, 'fast/dom/prototype-taco.html', "Dummy test contents") |
- |
- self.tool.executive = MockLineRemovingExecutive() |
- |
- old_exact_matches = builders._exact_matches |
- try: |
- builders._exact_matches = { |
- "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])}, |
- "MOCK SnowLeopard": {"port_name": "test-mac-snowleopard", "specifiers": set(["mock-specifier"])}, |
- } |
- |
- self.command.tree_status = lambda: 'open' |
- self.command.execute(MockOptions(optimize=True, verbose=False, move_overwritten_baselines=False, results_directory=False), [], self.tool) |
- self.assertEqual(self.tool.executive.calls, [ |
- [['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', '', 'fast/dom/prototype-taco.html']], |
- ['git', 'cl', 'upload', '-f'], |
- ['git', 'pull'], |
- ['git', 'cl', 'dcommit', '-f'], |
- ['git', 'cl', 'set_close'], |
- ]) |
- |
- # The mac ports should both be removed since they're the only ones in builders._exact_matches. |
- self.assertEqual(self.tool.filesystem.read_text_file(test_port.path_to_generic_test_expectations_file()), """ |
-Bug(foo) [ Linux Win ] fast/dom/prototype-taco.html [ NeedsRebaseline ] |
-""") |
- finally: |
- builders._exact_matches = old_exact_matches |
- |
- |
-class TestRebaselineOMatic(_BaseTestCase): |
- command_constructor = RebaselineOMatic |
- |
- def setUp(self): |
- super(TestRebaselineOMatic, self).setUp() |
- self._logs = [] |
- |
- def _mock_log_to_server(self, log=''): |
- self._logs.append(log) |
- |
- def test_run_logged_command(self): |
- self.command._verbose = False |
- self.command._post_log_to_server = self._mock_log_to_server |
- self.command._run_logged_command(['echo', 'foo']) |
- self.assertEqual(self.tool.executive.calls, [['echo', 'foo']]) |
- self.assertEqual(self._logs, ['MOCK STDOUT']) |
- |
- def test_do_one_rebaseline(self): |
- self.command._verbose = False |
- self.command._post_log_to_server = self._mock_log_to_server |
- |
- oc = OutputCapture() |
- oc.capture_output() |
- self.command._do_one_rebaseline() |
- out, _, _ = oc.restore_output() |
- |
- self.assertEqual(out, '') |
- self.assertEqual(self.tool.executive.calls, [ |
- ['git', 'pull'], |
- ['/mock-checkout/third_party/WebKit/tools/webkit-patch', 'auto-rebaseline'], |
- ]) |
- self.assertEqual(self._logs, ['MOCK STDOUT']) |
- |
- def test_do_one_rebaseline_verbose(self): |
- self.command._verbose = True |
- self.command._post_log_to_server = self._mock_log_to_server |
- |
- oc = OutputCapture() |
- oc.capture_output() |
- self.command._do_one_rebaseline() |
- out, _, _ = oc.restore_output() |
- |
- self.assertEqual(out, 'MOCK STDOUT\n') |
- self.assertEqual(self.tool.executive.calls, [ |
- ['git', 'pull'], |
- ['/mock-checkout/third_party/WebKit/tools/webkit-patch', 'auto-rebaseline', '--verbose'], |
- ]) |
- self.assertEqual(self._logs, ['MOCK STDOUT']) |