def get_updater(host=None, args=None):
    host = host or Host()
    args = args or []
    if ('--update-android-expectations-only' in args or
            any(arg.startswith('--android-product') for arg in args)):
        return AndroidWPTExpectationsUpdater(host, args)
    else:
        return WPTExpectationsUpdater(host, args)
Ejemplo n.º 2
0
    def __init__(self, host, wpt_github=None, wpt_manifests=None):
        self.host = host
        self.wpt_github = wpt_github

        self.executive = host.executive
        self.fs = host.filesystem
        self.finder = PathFinder(self.fs)
        self.chromium_git = self.host.git(self.finder.chromium_base())
        self.dest_path = self.finder.path_from_web_tests('external', 'wpt')

        # A common.net.git_cl.GitCL instance.
        self.git_cl = None
        # Another Git instance with local WPT as CWD, which can only be
        # instantiated after the working directory is created.
        self.wpt_git = None
        # The WPT revision we are importing and the one imported last time.
        self.wpt_revision = None
        self.last_wpt_revision = None
        # A set of rebaselined tests and a dictionary of new test expectations
        # mapping failing tests to platforms to
        # wpt_expectations_updater.SimpleTestResult.
        self.rebaselined_tests = set()
        self.new_test_expectations = {}
        # New override expectations for Android targets. A dictionary mapping
        # products to dictionary that maps test names to test expectation lines
        self.new_override_expectations = {}
        self.verbose = False

        args = [
            '--clean-up-affected-tests-only', '--clean-up-test-expectations'
        ]
        self._expectations_updater = WPTExpectationsUpdater(
            self.host, args, wpt_manifests)

        args = ['--android-product', 'android_weblayer']
        self._android_expectations_updater = AndroidWPTExpectationsUpdater(
            self.host, args, wpt_manifests)
    def testUpdateTestExpectationsForWeblayer(self):
        raw_android_expectations = (
            '# results: [ Failure Crash Timeout]\n'
            '\n'
            'crbug.com/1000754 external/wpt/foo.html [ Failure ]\n'
            '\n'
            '# Add untriaged failures in this block\n'
            'crbug.com/1050754 external/wpt/bar.html [ Failure ]\n'
            '\n'
            '# This comment will not be deleted\n')
        host = self._setup_host(raw_android_expectations)
        host.results_fetcher.set_results(
            Build('MOCK Android Weblayer - Pie', 123),
            WebTestResults({
                'tests': {
                    # A test result covered by default expectation
                    'new1.html': {
                        'expected': 'PASS',
                        'actual': 'FAIL',
                        'is_unexpected': True,
                    },
                    # A test result covered by baseline
                    'new2.html': {
                        'expected': 'PASS',
                        'actual': 'FAIL',
                        'is_unexpected': True,
                    },
                    # A new test case
                    'new3.html': {
                        'expected': 'PASS',
                        'actual': 'CRASH CRASH FAIL',
                        'is_unexpected': True,
                    },
                },
            }, step_name=WEBLAYER_WPT_STEP + ' (with patch)'),
            step_name=WEBLAYER_WPT_STEP + ' (with patch)')
        updater = AndroidWPTExpectationsUpdater(
            host, ['-vvv', '--android-product', ANDROID_WEBLAYER,
                   '--include-unexpected-pass'])
        updater.git_cl = MockGitCL(host, {
            Build('MOCK Android Weblayer - Pie', 123):
            TryJobStatus('COMPLETED', 'FAILURE')})
        # Run command
        updater.run()
        # Get new expectations
        content = host.filesystem.read_text_file(
            PRODUCTS_TO_EXPECTATION_FILE_PATHS[ANDROID_WEBLAYER])
        _new_expectations = (
            '# results: [ Failure Crash Timeout]\n'
            '\n'
            'crbug.com/1000754 external/wpt/foo.html [ Failure ]\n'
            '\n'
            '# Add untriaged failures in this block\n'
            'crbug.com/1050754 external/wpt/bar.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/new3.html [ Crash Failure ]\n'
            '\n'
            '# This comment will not be deleted\n')
        self.assertEqual(content, _new_expectations)

        # Check that ANDROID_DISABLED_TESTS expectation files were not changed
        self.assertEqual(
            self._raw_android_never_fix_tests,
            host.filesystem.read_text_file(ANDROID_DISABLED_TESTS))
    def testCleanupAndUpdateTestExpectationsForAll(self):
        # Full integration test for expectations cleanup and update
        # using builder results.
        raw_android_expectations = (
            '# results: [ Failure Crash Timeout]\n'
            '\n'
            'crbug.com/1000754 external/wpt/foo1.html [ Failure ]\n'
            'crbug.com/1000754 external/wpt/foo2.html [ Failure ]\n'
            'crbug.com/1000754 external/wpt/bar.html [ Failure ]\n'
            '\n'
            '# Add untriaged failures in this block\n'
            '\n'
            '# This comment will not be deleted\n')
        host = self._setup_host(raw_android_expectations)
        # Add results for Weblayer
        host.results_fetcher.set_results(
            Build('MOCK Android Weblayer - Pie', 123),
            WebTestResults({
                'tests': {
                    'disabled_weblayer_only.html': {
                        'expected': 'SKIP',
                        'actual': 'SKIP',
                        'is_unexpected': True,
                    },
                    'bar.html': {
                        'expected': 'FAIL',
                        'actual': 'CRASH',
                        'is_unexpected': True
                    },
                },
            }, step_name=WEBLAYER_WPT_STEP + ' (with patch)'),
            step_name=WEBLAYER_WPT_STEP + ' (with patch)')
        updater = AndroidWPTExpectationsUpdater(
            host, ['-vvv',
                   '--clean-up-test-expectations',
                   '--clean-up-affected-tests-only',
                   '--include-unexpected-pass',
                   '--android-product', ANDROID_WEBLAYER])

        def _git_command_return_val(cmd):
            if '--diff-filter=D' in cmd:
                return 'external/wpt/foo2.html'
            if '--diff-filter=R' in cmd:
                return 'C\texternal/wpt/foo1.html\texternal/wpt/foo3.html'
            if '--diff-filter=M' in cmd:
                return 'external/wpt/bar.html'
            return ''

        updater.git_cl = MockGitCL(host, {
            Build('MOCK Android Weblayer - Pie', 123):
            TryJobStatus('COMPLETED', 'FAILURE')})

        updater.git.run = _git_command_return_val
        updater._relative_to_web_test_dir = lambda test_path: test_path

        # Run command
        updater.run()

        # Check expectations for weblayer
        content = host.filesystem.read_text_file(
            PRODUCTS_TO_EXPECTATION_FILE_PATHS[ANDROID_WEBLAYER])
        _new_expectations = (
            '# results: [ Failure Crash Timeout]\n'
            '\n'
            'crbug.com/1000754 external/wpt/foo3.html [ Failure ]\n'
            '\n'
            '# Add untriaged failures in this block\n'
            'crbug.com/1050754 external/wpt/bar.html [ Crash ]\n'
            '\n'
            '# This comment will not be deleted\n')
        self.assertEqual(content, _new_expectations)

        # Check disabled test file
        neverfix_content = host.filesystem.read_text_file(ANDROID_DISABLED_TESTS)
        self.assertEqual(
            neverfix_content,
            ('# tags: [ android-weblayer android-webview chrome-android ]\n'
             '# results: [ Skip ]\n'
             '\n'
             '# Add untriaged disabled tests in this block\n'
             'crbug.com/1050754 [ android-webview ] external/wpt/disabled.html [ Skip ]\n'
             'crbug.com/1050754 [ android-weblayer ] external/wpt/disabled_weblayer_only.html [ Skip ]\n'))
 def testUpdateTestExpectationsForWebview(self):
     host = self._setup_host()
     host.results_fetcher.set_results(
         Build('MOCK Android Pie', 123),
         WebTestResults(
             {
                 'tests': {
                     'abc.html': {
                         'expected': 'PASS',
                         'actual': 'CRASH TIMEOUT',
                         'is_unexpected': True,
                     },
                     'jkl.html': {
                         'expected': 'PASS',
                         'actual': 'FAIL',
                         'is_unexpected': True,
                     },
                     'cat.html': {
                         'expected': 'PASS',
                         'actual': 'CRASH CRASH TIMEOUT',
                         'is_unexpected': True,
                     },
                     'unexpected_pass.html': {
                         'expected': 'FAIL',
                         'actual': 'PASS',
                         'is_unexpected': True
                     },
                     'dog.html': {
                         'expected': 'SKIP',
                         'actual': 'SKIP',
                         'is_unexpected': True,
                     },
                 },
             },
             step_name=WEBVIEW_WPT_STEP + ' (with patch)'),
         step_name=WEBVIEW_WPT_STEP + ' (with patch)')
     updater = AndroidWPTExpectationsUpdater(host, [
         '-vvv', '--android-product', ANDROID_WEBVIEW,
         '--clean-up-test-expectations', '--clean-up-affected-tests-only',
         '--include-unexpected-pass'
     ])
     updater.git_cl = MockGitCL(host, {
         Build('MOCK Android Pie', 123):
         TryJobStatus('COMPLETED', 'FAILURE')
     })
     # Run command
     updater.run()
     # Get new expectations
     content = host.filesystem.read_text_file(
         PRODUCTS_TO_EXPECTATION_FILE_PATHS[ANDROID_WEBVIEW])
     self.assertEqual(content, (
         '# results: [ Failure Crash Timeout]\n'
         '\n'
         '# Add untriaged failures in this block\n'
         'crbug.com/1050754 external/wpt/abc.html [ Crash Failure Timeout ]\n'
         'crbug.com/1050754 external/wpt/cat.html [ Crash Failure Timeout ]\n'
         'crbug.com/1050754 external/wpt/def.html [ Crash ]\n'
         'external/wpt/dog.html [ Crash Timeout ]\n'
         'crbug.com/1050754 external/wpt/ghi.html [ Timeout ]\n'
         'crbug.com/1111111 crbug.com/1050754'
         ' external/wpt/jkl.html [ Failure ]\n'
         'crbug.com/1050754 external/wpt/unexpected_pass.html [ Failure Pass ]\n'
         'crbug.com/6789043 external/wpt/van.html [ Failure ]\n'
         'external/wpt/www.html [ Crash Failure ]\n'
         '\n'
         '# This comment will not be deleted\n'
         'crbug.com/111111 external/wpt/hello_world.html [ Crash ]\n'))
     neverfix_content = host.filesystem.read_text_file(
         ANDROID_DISABLED_TESTS)
     self.assertEqual(neverfix_content, (
         '# tags: [ android-weblayer android-webview chrome-android ]\n'
         '# results: [ Skip ]\n'
         '\n'
         '# Add untriaged disabled tests in this block\n'
         'crbug.com/1050754 [ android-webview ] external/wpt/disabled.html [ Skip ]\n'
         'crbug.com/1050754 [ android-webview ] external/wpt/dog.html [ Skip ]\n'
     ))
     # check that chrome android's expectation file was not modified
     # since the same bot is used to update chrome android & webview
     # expectations
     self.assertEqual(
         host.filesystem.read_text_file(
             PRODUCTS_TO_EXPECTATION_FILE_PATHS[CHROME_ANDROID]),
         self._raw_android_expectations)
     # Check logs
     logs = ''.join(self.logMessages()).lower()
     self.assertNotIn(WEBLAYER_WPT_STEP, logs)
     self.assertNotIn(CHROME_ANDROID_WPT_STEP, logs)
     # Check that weblayer and chrome expectation files were not changed
     self.assertEqual(
         self._raw_android_expectations,
         host.filesystem.read_text_file(
             PRODUCTS_TO_EXPECTATION_FILE_PATHS[CHROME_ANDROID]))
     self.assertEqual(
         self._raw_android_expectations,
         host.filesystem.read_text_file(
             PRODUCTS_TO_EXPECTATION_FILE_PATHS[ANDROID_WEBLAYER]))
    def testCleanupAndUpdateTestExpectationsForAll(self):
        # Full integration test for expectations cleanup and update
        # using builder results.
        host = self._setup_host()
        # Add results for Weblayer
        host.results_fetcher.set_results(
            Build('MOCK Android Weblayer - Pie', 123),
            WebTestResults(
                {
                    'tests': {
                        'abc.html': {
                            'expected': 'PASS',
                            'actual': 'CRASH TIMEOUT',
                            'is_unexpected': True,
                        },
                        'weblayer_only.html': {
                            'expected': 'PASS',
                            'actual': 'CRASH CRASH FAIL',
                            'is_unexpected': True,
                        },
                        'disabled_weblayer_only.html': {
                            'expected': 'SKIP',
                            'actual': 'SKIP',
                            'is_unexpected': True,
                        },
                        'unexpected_pass.html': {
                            'expected': 'FAIL',
                            'actual': 'PASS',
                            'is_unexpected': True
                        },
                    },
                },
                step_name=WEBLAYER_WPT_STEP + ' (with patch)'),
            step_name=WEBLAYER_WPT_STEP + ' (with patch)')
        # Add Results for Webview
        host.results_fetcher.set_results(
            Build('MOCK Android Pie', 101),
            WebTestResults(
                {
                    'tests': {
                        'cat.html': {
                            'expected': 'PASS',
                            'actual': 'CRASH FAIL TIMEOUT',
                            'is_unexpected': True,
                        },
                        'webview_only.html': {
                            'expected': 'PASS',
                            'actual': 'TIMEOUT',
                            'is_unexpected': True,
                        },
                        'disabled.html': {
                            'expected': 'SKIP',
                            'actual': 'SKIP',
                        },
                        'unexpected_pass.html': {
                            'expected': 'FAIL',
                            'actual': 'PASS',
                            'is_unexpected': True
                        },
                    },
                },
                step_name=WEBVIEW_WPT_STEP + ' (with patch)'),
            step_name=WEBVIEW_WPT_STEP + ' (with patch)')
        # Add Results for Chrome
        host.results_fetcher.set_results(
            Build('MOCK Android Pie', 101),
            WebTestResults(
                {
                    'tests': {
                        'jkl.html': {
                            'expected': 'PASS',
                            'actual': 'FAIL',
                            'is_unexpected': True,
                        },
                        'chrome_only.html': {
                            'expected': 'PASS',
                            'actual': 'CRASH CRASH TIMEOUT',
                            'is_unexpected': True,
                        },
                        'disabled.html': {
                            'expected': 'SKIP',
                            'actual': 'SKIP',
                            'is_unexpected': True,
                        },
                        'unexpected_pass.html': {
                            'expected': 'FAIL',
                            'actual': 'PASS',
                            'is_unexpected': True
                        },
                    },
                },
                step_name=CHROME_ANDROID_WPT_STEP + ' (with patch)'),
            step_name=CHROME_ANDROID_WPT_STEP + ' (with patch)')
        updater = AndroidWPTExpectationsUpdater(host, [
            '-vvv', '--clean-up-test-expectations',
            '--clean-up-affected-tests-only', '--include-unexpected-pass',
            '--android-product', ANDROID_WEBLAYER, '--android-product',
            CHROME_ANDROID, '--android-product', ANDROID_WEBVIEW
        ])

        def _git_command_return_val(cmd):
            if '--diff-filter=D' in cmd:
                return 'external/wpt/ghi.html'
            if '--diff-filter=R' in cmd:
                return 'C external/wpt/van.html external/wpt/wagon.html'
            return ''

        updater.git_cl = MockGitCL(
            host, {
                Build('MOCK Android Weblayer - Pie', 123):
                TryJobStatus('COMPLETED', 'FAILURE'),
                Build('MOCK Android Pie', 101):
                TryJobStatus('COMPLETED', 'FAILURE')
            })

        updater.git.run = _git_command_return_val
        updater._relative_to_web_test_dir = lambda test_path: test_path

        # Run command
        updater.run()
        # Check expectations for weblayer
        content = host.filesystem.read_text_file(
            PRODUCTS_TO_EXPECTATION_FILE_PATHS[ANDROID_WEBLAYER])
        self.assertEqual(content, (
            '# results: [ Failure Crash Timeout]\n'
            '\n'
            '# Add untriaged failures in this block\n'
            'crbug.com/1050754 external/wpt/abc.html [ Crash Failure Timeout ]\n'
            'crbug.com/1050754 external/wpt/cat.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/def.html [ Crash ]\n'
            'external/wpt/dog.html [ Crash Timeout ]\n'
            'crbug.com/1111111 external/wpt/jkl.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/unexpected_pass.html [ Failure Pass ]\n'
            'crbug.com/6789043 external/wpt/wagon.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/weblayer_only.html [ Failure Crash ]\n'
            'external/wpt/www.html [ Crash Failure ]\n'
            '\n'
            '# This comment will not be deleted\n'
            'crbug.com/111111 external/wpt/hello_world.html [ Crash ]\n'))
        # Check expectations for webview
        content = host.filesystem.read_text_file(
            PRODUCTS_TO_EXPECTATION_FILE_PATHS[ANDROID_WEBVIEW])
        self.assertEqual(content, (
            '# results: [ Failure Crash Timeout]\n'
            '\n'
            '# Add untriaged failures in this block\n'
            'external/wpt/abc.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/cat.html [ Crash Failure Timeout ]\n'
            'crbug.com/1050754 external/wpt/def.html [ Crash ]\n'
            'external/wpt/dog.html [ Crash Timeout ]\n'
            'crbug.com/1111111 external/wpt/jkl.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/unexpected_pass.html [ Failure Pass ]\n'
            'crbug.com/6789043 external/wpt/wagon.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/webview_only.html [ Timeout ]\n'
            'external/wpt/www.html [ Crash Failure ]\n'
            '\n'
            '# This comment will not be deleted\n'
            'crbug.com/111111 external/wpt/hello_world.html [ Crash ]\n'))
        # Check expectations chrome
        content = host.filesystem.read_text_file(
            PRODUCTS_TO_EXPECTATION_FILE_PATHS[CHROME_ANDROID])
        self.assertEqual(content, (
            '# results: [ Failure Crash Timeout]\n'
            '\n'
            '# Add untriaged failures in this block\n'
            'external/wpt/abc.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/cat.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/chrome_only.html [ Crash Timeout ]\n'
            'crbug.com/1050754 external/wpt/def.html [ Crash ]\n'
            'external/wpt/dog.html [ Crash Timeout ]\n'
            'crbug.com/1111111 crbug.com/1050754'
            ' external/wpt/jkl.html [ Failure ]\n'
            'crbug.com/1050754 external/wpt/unexpected_pass.html [ Failure Pass ]\n'
            'crbug.com/6789043 external/wpt/wagon.html [ Failure ]\n'
            'external/wpt/www.html [ Crash Failure ]\n'
            '\n'
            '# This comment will not be deleted\n'
            'crbug.com/111111 external/wpt/hello_world.html [ Crash ]\n'))
        # Check disabled test file
        neverfix_content = host.filesystem.read_text_file(
            ANDROID_DISABLED_TESTS)
        self.assertEqual(neverfix_content, (
            '# tags: [ android-weblayer android-webview chrome-android ]\n'
            '# results: [ Skip ]\n'
            '\n'
            '# Add untriaged disabled tests in this block\n'
            'crbug.com/1050754 [ android-webview ] external/wpt/disabled.html [ Skip ]\n'
            'crbug.com/1050754 [ chrome-android ] external/wpt/disabled.html [ Skip ]\n'
            'crbug.com/1050754 [ android-weblayer ] external/wpt/disabled_weblayer_only.html [ Skip ]\n'
        ))
Ejemplo n.º 7
0
class TestImporter(object):
    def __init__(self, host, wpt_github=None, wpt_manifests=None):
        self.host = host
        self.wpt_github = wpt_github

        self.executive = host.executive
        self.fs = host.filesystem
        self.finder = PathFinder(self.fs)
        self.chromium_git = self.host.git(self.finder.chromium_base())
        self.dest_path = self.finder.path_from_web_tests('external', 'wpt')

        # A common.net.git_cl.GitCL instance.
        self.git_cl = None
        # Another Git instance with local WPT as CWD, which can only be
        # instantiated after the working directory is created.
        self.wpt_git = None
        # The WPT revision we are importing and the one imported last time.
        self.wpt_revision = None
        self.last_wpt_revision = None
        # A set of rebaselined tests and a dictionary of new test expectations
        # mapping failing tests to platforms to
        # wpt_expectations_updater.SimpleTestResult.
        self.rebaselined_tests = set()
        self.new_test_expectations = {}
        # New override expectations for Android targets. A dictionary mapping
        # products to dictionary that maps test names to test expectation lines
        self.new_override_expectations = {}
        self.verbose = False

        args = [
            '--clean-up-affected-tests-only', '--clean-up-test-expectations'
        ]
        self._expectations_updater = WPTExpectationsUpdater(
            self.host, args, wpt_manifests)

        args = ['--android-product', 'android_weblayer']
        self._android_expectations_updater = AndroidWPTExpectationsUpdater(
            self.host, args, wpt_manifests)

    def main(self, argv=None):
        # TODO(robertma): Test this method! Split it to make it easier to test
        # if necessary.

        options = self.parse_args(argv)

        self.verbose = options.verbose
        log_level = logging.DEBUG if self.verbose else logging.INFO
        configure_logging(logging_level=log_level, include_time=True)

        # Having the full output when executive.run_command fails is useful when
        # investigating a failed import, as all we have are logs.
        self.executive.error_output_limit = None

        if options.auto_update and options.auto_upload:
            _log.error(
                '--auto-upload and --auto-update cannot be used together.')
            return 1

        if not self.checkout_is_okay():
            return 1

        credentials = read_credentials(self.host, options.credentials_json)
        gh_user = credentials.get('GH_USER')
        gh_token = credentials.get('GH_TOKEN')
        if not gh_user or not gh_token:
            _log.warning('You have not set your GitHub credentials. This '
                         'script may fail with a network error when making '
                         'an API request to GitHub.')
            _log.warning('See https://chromium.googlesource.com/chromium/src'
                         '/+/main/docs/testing/web_platform_tests.md'
                         '#GitHub-credentials for instructions on how to set '
                         'your credentials up.')
        self.wpt_github = self.wpt_github or WPTGitHub(self.host, gh_user,
                                                       gh_token)
        self.git_cl = GitCL(
            self.host, auth_refresh_token_json=options.auth_refresh_token_json)

        _log.debug('Noting the current Chromium revision.')
        chromium_revision = self.chromium_git.latest_git_commit()

        # Instantiate Git after local_wpt.fetch() to make sure the path exists.
        local_wpt = LocalWPT(self.host, gh_token=gh_token)
        local_wpt.fetch()
        self.wpt_git = self.host.git(local_wpt.path)

        if options.revision is not None:
            _log.info('Checking out %s', options.revision)
            self.wpt_git.run(['checkout', options.revision])

        _log.debug('Noting the revision we are importing.')
        self.wpt_revision = self.wpt_git.latest_git_commit()
        self.last_wpt_revision = self._get_last_imported_wpt_revision()
        import_commit = 'wpt@%s' % self.wpt_revision

        _log.info('Importing %s to Chromium %s', import_commit,
                  chromium_revision)

        if options.ignore_exportable_commits:
            commit_message = self._commit_message(chromium_revision,
                                                  import_commit)
        else:
            commits = self.apply_exportable_commits_locally(local_wpt)
            if commits is None:
                _log.error('Could not apply some exportable commits cleanly.')
                _log.error('Aborting import to prevent clobbering commits.')
                return 1
            commit_message = self._commit_message(
                chromium_revision,
                import_commit,
                locally_applied_commits=commits)

        self._clear_out_dest_path()

        _log.info('Copying the tests from the temp repo to the destination.')
        test_copier = TestCopier(self.host, local_wpt.path)
        test_copier.do_import()

        # TODO(robertma): Implement `add --all` in Git (it is different from `commit --all`).
        self.chromium_git.run(['add', '--all', self.dest_path])

        # Remove expectations for tests that were deleted and rename tests in
        # expectations for renamed tests. This requires the old WPT manifest, so
        # must happen before we regenerate it.
        self._expectations_updater.cleanup_test_expectations_files()

        self._generate_manifest()

        # TODO(crbug.com/800570 robertma): Re-enable it once we fix the bug.
        # self._delete_orphaned_baselines()

        if not self.chromium_git.has_working_directory_changes():
            _log.info('Done: no changes to import.')
            return 0

        if self._only_wpt_manifest_changed():
            _log.info('Only manifest was updated; skipping the import.')
            return 0

        with self._expectations_updater.prepare_smoke_tests(self.chromium_git):
            self._commit_changes(commit_message)
            _log.info('Changes imported and committed.')

            if not options.auto_upload and not options.auto_update:
                return 0

            self._upload_cl()
            _log.info('Issue: %s', self.git_cl.run(['issue']).strip())

        if not self.update_expectations_for_cl():
            return 1

        if not options.auto_update:
            return 0

        if not self.run_commit_queue_for_cl():
            return 1

        if not self.send_notifications(local_wpt, options.auto_file_bugs,
                                       options.monorail_auth_json):
            return 1

        return 0

    def update_expectations_for_cl(self):
        """Performs the expectation-updating part of an auto-import job.

        This includes triggering try jobs and waiting; then, if applicable,
        writing new baselines and TestExpectation lines, committing, and
        uploading a new patchset.

        This assumes that there is CL associated with the current branch.

        Returns True if everything is OK to continue, or False on failure.
        """
        _log.info('Triggering try jobs for updating expectations.')
        self.git_cl.trigger_try_jobs(self.blink_try_bots())
        cl_status = self.git_cl.wait_for_try_jobs(
            poll_delay_seconds=POLL_DELAY_SECONDS,
            timeout_seconds=TIMEOUT_SECONDS)

        if not cl_status:
            _log.error('No initial try job results, aborting.')
            self.git_cl.run(['set-close'])
            return False

        if cl_status.status == 'closed':
            _log.error('The CL was closed, aborting.')
            return False

        _log.info('All jobs finished.')
        try_results = cl_status.try_job_results

        if try_results and self.git_cl.some_failed(try_results):
            self.fetch_new_expectations_and_baselines()
            self.fetch_wpt_override_expectations()
            if self.chromium_git.has_working_directory_changes():
                # Skip slow and timeout tests so that presubmit check passes
                port = self.host.port_factory.get()
                if self._expectations_updater.skip_slow_timeout_tests(port):
                    path = port.path_to_generic_test_expectations_file()
                    self.chromium_git.add_list([path])

                self._generate_manifest()
                message = 'Update test expectations and baselines.'
                self._commit_changes(message)
                self._upload_patchset(message)
        return True

    def run_commit_queue_for_cl(self):
        """Triggers CQ and either commits or aborts; returns True on success."""
        _log.info('Triggering CQ try jobs.')
        self.git_cl.run(['try'])
        cl_status = self.git_cl.wait_for_try_jobs(
            poll_delay_seconds=POLL_DELAY_SECONDS,
            timeout_seconds=TIMEOUT_SECONDS,
            cq_only=True)

        if not cl_status:
            self.git_cl.run(['set-close'])
            _log.error('Timed out waiting for CQ; aborting.')
            return False

        if cl_status.status == 'closed':
            _log.error('The CL was closed; aborting.')
            return False

        _log.info('All jobs finished.')
        cq_try_results = cl_status.try_job_results

        if not cq_try_results:
            _log.error('No CQ try results found in try results')
            self.git_cl.run(['set-close'])
            return False

        if not self.git_cl.all_success(cq_try_results):
            _log.error('CQ appears to have failed; aborting.')
            self.git_cl.run(['set-close'])
            return False

        # `--send-mail` is required to take the CL out of WIP mode.
        if self._need_sheriff_attention():
            _log.info('CQ appears to have passed; sending to the sheriff for '
                      'CR+1 and commit. The sheriff has one hour to respond.')
            self.git_cl.run([
                'upload', '-f', '--send-mail', '--enable-auto-submit',
                '--reviewers',
                self.sheriff_email()
            ])
            timeout = 3600
        else:
            _log.info(
                'CQ appears to have passed; sending to the rubber-stamper bot for '
                'CR+1 and commit.')
            _log.info(
                'If the rubber-stamper bot rejects the CL, you either need to '
                'modify the benign file patterns, or manually CR+1 and land the '
                'import yourself if it touches code files. See https://chromium.'
                'googlesource.com/infra/infra/+/refs/heads/main/go/src/infra/'
                'appengine/rubber-stamper/README.md')
            self.git_cl.run([
                'upload', '-f', '--send-mail', '--enable-auto-submit',
                '--reviewers', RUBBER_STAMPER_BOT
            ])
            timeout = 1800

        if self.git_cl.wait_for_closed_status(timeout_seconds=timeout):
            _log.info('Update completed.')
            return True

        _log.error('Cannot submit CL; aborting.')
        try:
            self.git_cl.run(['set-close'])
        except ScriptError as e:
            if e.output and 'Conflict: change is merged' in e.output:
                _log.error('CL is already merged; treating as success.')
                return True
            else:
                raise e
        return False

    def blink_try_bots(self):
        """Returns the collection of builders used for updating expectations."""
        return self.host.builders.filter_builders(is_try=True)

    def parse_args(self, argv):
        parser = argparse.ArgumentParser()
        parser.description = __doc__
        parser.add_argument(
            '-v',
            '--verbose',
            action='store_true',
            help='log extra details that may be helpful when debugging')
        parser.add_argument(
            '--ignore-exportable-commits',
            action='store_true',
            help='do not check for exportable commits that would be clobbered')
        parser.add_argument('-r', '--revision', help='target wpt revision')
        parser.add_argument(
            '--auto-upload',
            action='store_true',
            help='upload a CL, update expectations, but do NOT trigger CQ')
        parser.add_argument(
            '--auto-update',
            action='store_true',
            help='upload a CL, update expectations, and trigger CQ')
        parser.add_argument(
            '--auto-file-bugs',
            action='store_true',
            help='file new failures automatically to crbug.com')
        parser.add_argument(
            '--auth-refresh-token-json',
            help='authentication refresh token JSON file used for try jobs, '
            'generally not necessary on developer machines')
        parser.add_argument('--credentials-json',
                            help='A JSON file with GitHub credentials, '
                            'generally not necessary on developer machines')
        parser.add_argument(
            '--monorail-auth-json',
            help='A JSON file containing the private key of a service account '
            'to access Monorail (crbug.com), only needed when '
            '--auto-file-bugs is used')

        return parser.parse_args(argv)

    def checkout_is_okay(self):
        if self.chromium_git.has_working_directory_changes():
            _log.warning('Checkout is dirty; aborting.')
            return False
        # TODO(robertma): Add a method in Git to query a range of commits.
        local_commits = self.chromium_git.run(
            ['log', '--oneline', 'origin/main..HEAD'])
        if local_commits:
            _log.warning('Checkout has local commits before import.')
        return True

    def apply_exportable_commits_locally(self, local_wpt):
        """Applies exportable Chromium changes to the local WPT repo.

        The purpose of this is to avoid clobbering changes that were made in
        Chromium but not yet merged upstream. By applying these changes to the
        local copy of web-platform-tests before copying files over, we make
        it so that the resulting change in Chromium doesn't undo the
        previous Chromium change.

        Args:
            A LocalWPT instance for our local copy of WPT.

        Returns:
            A list of commits applied (could be empty), or None if any
            of the patches could not be applied cleanly.
        """
        commits = self.exportable_but_not_exported_commits(local_wpt)
        for commit in commits:
            _log.info('Applying exportable commit locally:')
            _log.info(commit.url())
            _log.info('Subject: %s', commit.subject().strip())
            # Log a note about the corresponding PR.
            # This might not be necessary, and could potentially be removed.
            pull_request = self.wpt_github.pr_for_chromium_commit(commit)
            if pull_request:
                _log.info('PR: %spull/%d', WPT_GH_URL, pull_request.number)
            else:
                _log.warning('No pull request found.')
            error = local_wpt.apply_patch(commit.format_patch())
            if error:
                _log.error('Commit cannot be applied cleanly:')
                _log.error(error)
                return None
            self.wpt_git.commit_locally_with_message('Applying patch %s' %
                                                     commit.sha)
        return commits

    def exportable_but_not_exported_commits(self, local_wpt):
        """Returns a list of commits that would be clobbered by importer.

        The list contains all exportable but not exported commits, not filtered
        by whether they can apply cleanly.
        """
        # The errors returned by exportable_commits_over_last_n_commits are
        # irrelevant and ignored here, because it tests patches *individually*
        # while the importer tries to reapply these patches *cumulatively*.
        commits, _ = exportable_commits_over_last_n_commits(
            self.host,
            local_wpt,
            self.wpt_github,
            require_clean=False,
            verify_merged_pr=True)
        return commits

    def _generate_manifest(self):
        """Generates MANIFEST.json for imported tests.

        Runs the (newly-updated) manifest command if it's found, and then
        stages the generated MANIFEST.json in the git index, ready to commit.
        """
        _log.info('Generating MANIFEST.json')
        WPTManifest.generate_manifest(self.host.port_factory.get(),
                                      self.dest_path)
        manifest_path = self.fs.join(self.dest_path, 'MANIFEST.json')
        assert self.fs.exists(manifest_path)
        manifest_base_path = self.fs.normpath(
            self.fs.join(self.dest_path, '..', BASE_MANIFEST_NAME))
        self.copyfile(manifest_path, manifest_base_path)
        self.chromium_git.add_list([manifest_base_path])

    def _clear_out_dest_path(self):
        """Removes all files that are synced with upstream from Chromium WPT.

        Instead of relying on TestCopier to overwrite these files, cleaning up
        first ensures if upstream deletes some files, we also delete them.
        """
        _log.info('Cleaning out tests from %s.', self.dest_path)
        should_remove = lambda fs, dirname, basename: (is_file_exportable(
            fs.relpath(fs.join(dirname, basename), self.finder.chromium_base())
        ))
        files_to_delete = self.fs.files_under(self.dest_path,
                                              file_filter=should_remove)
        for subpath in files_to_delete:
            self.remove(self.finder.path_from_web_tests('external', subpath))

    def _commit_changes(self, commit_message):
        _log.info('Committing changes.')
        self.chromium_git.commit_locally_with_message(commit_message)

    def _only_wpt_manifest_changed(self):
        changed_files = self.chromium_git.changed_files()
        wpt_base_manifest = self.fs.relpath(
            self.fs.join(self.dest_path, '..', BASE_MANIFEST_NAME),
            self.finder.chromium_base())
        return changed_files == [wpt_base_manifest]

    def _need_sheriff_attention(self):
        # Per the rules defined for the rubber-stamper, it can not auto approve
        # a CL that has .bat, .sh or .py files. Request the sheriff on rotation
        # to approve the CL.
        changed_files = self.chromium_git.changed_files()
        for cf in changed_files:
            extension = self.fs.splitext(cf)[1]
            if extension in ['.bat', '.sh', '.py']:
                return True
        return False

    def _commit_message(self,
                        chromium_commit_sha,
                        import_commit_sha,
                        locally_applied_commits=None):
        message = 'Import {}\n\nUsing wpt-import in Chromium {}.\n'.format(
            import_commit_sha, chromium_commit_sha)
        if locally_applied_commits:
            message += 'With Chromium commits locally applied on WPT:\n'
            message += '\n'.join(
                str(commit) for commit in locally_applied_commits)
        message += '\nNo-Export: true'
        return message

    def _delete_orphaned_baselines(self):
        _log.info('Deleting any orphaned baselines.')

        is_baseline_filter = lambda fs, dirname, basename: is_testharness_baseline(
            basename)

        baselines = self.fs.files_under(self.dest_path,
                                        file_filter=is_baseline_filter)

        # Note about possible refactoring:
        #  - the manifest path could be factored out to a common location, and
        #  - the logic for reading the manifest could be factored out from here
        # and the Port class.
        manifest_path = self.finder.path_from_web_tests(
            'external', 'wpt', 'MANIFEST.json')
        manifest = WPTManifest(self.fs.read_text_file(manifest_path))
        wpt_urls = manifest.all_urls()

        # Currently baselines for tests with query strings are merged,
        # so that the tests foo.html?r=1 and foo.html?r=2 both have the same
        # baseline, foo-expected.txt.
        # TODO(qyearsley): Remove this when this behavior is fixed.
        wpt_urls = [url.split('?')[0] for url in wpt_urls]

        wpt_dir = self.finder.path_from_web_tests('external', 'wpt')
        for full_path in baselines:
            rel_path = self.fs.relpath(full_path, wpt_dir)
            if not self._has_corresponding_test(rel_path, wpt_urls):
                self.fs.remove(full_path)

    def _has_corresponding_test(self, rel_path, wpt_urls):
        # TODO(qyearsley): Ensure that this works with platform baselines and
        # virtual baselines, and add unit tests.
        base = '/' + rel_path.replace('-expected.txt', '')
        return any(
            (base + ext) in wpt_urls for ext in Port.supported_file_extensions)

    def copyfile(self, source, destination):
        _log.debug('cp %s %s', source, destination)
        self.fs.copyfile(source, destination)

    def remove(self, dest):
        _log.debug('rm %s', dest)
        self.fs.remove(dest)

    def _upload_patchset(self, message):
        self.git_cl.run(['upload', '--bypass-hooks', '-f', '-t', message])

    def _upload_cl(self):
        _log.info('Uploading change list.')
        directory_owners = self.get_directory_owners()
        description = self._cl_description(directory_owners)
        sheriff_email = self.sheriff_email()

        temp_file, temp_path = self.fs.open_text_tempfile()
        temp_file.write(description)
        temp_file.close()

        self.git_cl.run(
            ['upload', '--bypass-hooks', '-f', '--message-file', temp_path])

        self.fs.remove(temp_path)

    def get_directory_owners(self):
        """Returns a mapping of email addresses to owners of changed tests."""
        _log.info('Gathering directory owners emails to CC.')
        changed_files = self.chromium_git.changed_files()
        extractor = DirectoryOwnersExtractor(self.host)
        return extractor.list_owners(changed_files)

    def _cl_description(self, directory_owners):
        """Returns a CL description string.

        Args:
            directory_owners: A dict of tuples of owner names to lists of directories.
        """
        # TODO(robertma): Add a method in Git for getting the commit body.
        description = self.chromium_git.run(['log', '-1', '--format=%B'])
        description += (
            'Note to sheriffs: This CL imports external tests and adds\n'
            'expectations for those tests; if this CL is large and causes\n'
            'a few new failures, please fix the failures by adding new\n'
            'lines to TestExpectations rather than reverting. See:\n'
            'https://chromium.googlesource.com'
            '/chromium/src/+/main/docs/testing/web_platform_tests.md\n\n')

        if directory_owners:
            description += self._format_directory_owners(
                directory_owners) + '\n\n'

        # Prevent FindIt from auto-reverting import CLs.
        description += 'NOAUTOREVERT=true\n'

        # Move any No-Export tag to the end of the description.
        description = description.replace('No-Export: true', '')
        description = description.replace('\n\n\n\n', '\n\n')
        description += 'No-Export: true'
        return description

    @staticmethod
    def _format_directory_owners(directory_owners):
        message_lines = ['Directory owners for changes in this CL:']
        for owner_tuple, directories in sorted(directory_owners.items()):
            message_lines.append(', '.join(owner_tuple) + ':')
            message_lines.extend('  ' + d for d in directories)
        return '\n'.join(message_lines)

    def sheriff_email(self):
        """Returns the sheriff email address to cc.

        This tries to fetch the current ecosystem infra sheriff, but falls back
        in case of error.
        """
        email = ''
        try:
            email = self._fetch_ecosystem_infra_sheriff_email()
        except (IOError, KeyError, ValueError) as error:
            _log.error('Exception while fetching current sheriff: %s', error)
        return email or SHERIFF_EMAIL_FALLBACK

    def _fetch_ecosystem_infra_sheriff_email(self):
        try:
            content = self.host.web.get_binary(ROTATIONS_URL)
        except NetworkTimeout:
            _log.error('Cannot fetch %s', ROTATIONS_URL)
            return ''
        data = json.loads(content)
        if not data.get('emails'):
            _log.error(
                'No email found for current sheriff. Retrieved content: %s',
                content)
            return ''
        return data['emails'][0]

    def fetch_new_expectations_and_baselines(self):
        """Modifies expectation lines and baselines based on try job results.

        Assuming that there are some try job results available, this
        adds new expectation lines to TestExpectations and downloads new
        baselines based on the try job results.

        This is the same as invoking the `wpt-update-expectations` script.
        """
        _log.info('Adding test expectations lines to TestExpectations.')
        self.rebaselined_tests, self.new_test_expectations = (
            self._expectations_updater.update_expectations())

        _log.info('Adding test expectations lines for composite-after-paint')
        self._expectations_updater.update_expectations_for_flag_specific(
            'composite-after-paint')

        _log.info('Adding test expectations lines for disable-layout-ng')
        self._expectations_updater.update_expectations_for_flag_specific(
            'disable-layout-ng')

    def fetch_wpt_override_expectations(self):
        """Modifies WPT Override expectations based on try job results.

        Assuming that there are some try job results available, this
        adds new expectation lines to WPT Override Expectation files,
        e.g. WebLayerWPTOverrideExpectations

        This is the same as invoking the `wpt-update-expectations` script.
        """
        _log.info('Adding test expectations lines to Override Expectations.')
        _, self.new_override_expectations = (
            self._android_expectations_updater.update_expectations())

    def _get_last_imported_wpt_revision(self):
        """Finds the last imported WPT revision."""
        # TODO(robertma): Only match commit subjects.
        output = self.chromium_git.most_recent_log_matching(
            '^Import wpt@', self.finder.chromium_base())
        # No line-start anchor (^) below because of the formatting of output.
        result = re.search(r'Import wpt@(\w+)', output)
        if result:
            return result.group(1)
        else:
            _log.error('Cannot find last WPT import.')
            return None

    def send_notifications(self, local_wpt, auto_file_bugs,
                           monorail_auth_json):
        issue = self.git_cl.run(['status', '--field=id']).strip()
        patchset = self.git_cl.run(['status', '--field=patch']).strip()
        # Construct the notifier here so that any errors won't affect the import.
        notifier = ImportNotifier(self.host, self.chromium_git, local_wpt)
        notifier.main(self.last_wpt_revision,
                      self.wpt_revision,
                      self.rebaselined_tests,
                      self.new_test_expectations,
                      self.new_override_expectations,
                      issue,
                      patchset,
                      dry_run=not auto_file_bugs,
                      service_account_key_json=monorail_auth_json)
        return True
Ejemplo n.º 8
0
 def testUpdateTestExpectationsForWebview(self):
     host = self._setup_host()
     host.results_fetcher.set_results(
         Build('MOCK Android Pie', 123),
         WebTestResults({
             'tests': {
                 'abc.html': {
                     'expected': 'PASS',
                     'actual': 'CRASH TIMEOUT',
                     'is_unexpected': True,
                 },
                 'jkl.html': {
                     'expected': 'PASS',
                     'actual': 'FAIL',
                     'is_unexpected': True,
                 },
                 'cat.html': {
                     'expected': 'PASS',
                     'actual': 'CRASH CRASH TIMEOUT',
                     'is_unexpected': True,
                 },
             },
         }, step_name='system_webview_wpt (with patch)'),
         step_name='system_webview_wpt (with patch)')
     updater = AndroidWPTExpectationsUpdater(
         host, ['-vvv',  '--android-product', 'android_webview'])
     updater.git_cl = MockGitCL(host, {
         Build('MOCK Android Pie', 123):
         TryJobStatus('COMPLETED', 'FAILURE')})
     # Run command
     updater.run()
     # Get new expectations
     content = host.filesystem.read_text_file(
         PRODUCTS_TO_EXPECTATION_FILE_PATHS['android_webview'])
     self.assertEqual(
         content,
         ('# results: [ Failure Crash Timeout]\n'
          '\n'
          '# Add untriaged failures in this block\n'
          'crbug.com/1050754 external/wpt/abc.html [ Crash Failure Timeout ]\n'
          'crbug.com/1050754 external/wpt/cat.html [ Crash Failure Timeout ]\n'
          'crbug.com/1050754 external/wpt/def.html [ Crash ]\n'
          'external/wpt/dog.html [ Crash Timeout ]\n'
          'crbug.com/1050754 external/wpt/ghi.html [ Timeout ]\n'
          'crbug.com/1111111 crbug.com/1050754'
          ' external/wpt/jkl.html [ Failure ]\n'
          'crbug.com/6789043 external/wpt/van.html [ Failure ]\n'
          'external/wpt/www.html [ Crash Failure ]\n'
          '\n'
          '# This comment will not be deleted\n'
          'crbug.com/111111 external/wpt/hello_world.html [ Crash ]\n'))
     # check that chrome android's expectation file was not modified
     # since the same bot is used to update chrome android & webview
     # expectations
     self.assertEqual(
         host.filesystem.read_text_file(
             PRODUCTS_TO_EXPECTATION_FILE_PATHS['chrome_android']),
         self._raw_android_expectations)
     # Check logs
     logs = ''.join(self.logMessages()).lower()
     self.assertNotIn('weblayer', logs)
     self.assertNotIn('chrome', logs)
Ejemplo n.º 9
0
 def testUpdateTestExpectationsForAll(self):
     host = self._setup_host()
     # Add results for Weblayer
     host.results_fetcher.set_results(
         Build('MOCK Android Weblayer - Pie', 123),
         WebTestResults({
             'tests': {
                 'abc.html': {
                     'expected': 'PASS',
                     'actual': 'CRASH TIMEOUT',
                     'is_unexpected': True,
                 },
                 'weblayer_only.html': {
                     'expected': 'PASS',
                     'actual': 'CRASH CRASH FAIL',
                     'is_unexpected': True,
                 },
             },
         }, step_name='weblayer_shell_wpt (with patch)'),
         step_name='weblayer_shell_wpt (with patch)')
     # Add Results for Webview
     host.results_fetcher.set_results(
         Build('MOCK Android Pie', 101),
         WebTestResults({
             'tests': {
                 'cat.html': {
                     'expected': 'PASS',
                     'actual': 'CRASH FAIL TIMEOUT',
                     'is_unexpected': True,
                 },
                 'webview_only.html': {
                     'expected': 'PASS',
                     'actual': 'TIMEOUT',
                     'is_unexpected': True,
                 },
             },
         }, step_name='system_webview_wpt (with patch)'),
         step_name='system_webview_wpt (with patch)')
     # Add Results for Chrome
     host.results_fetcher.set_results(
         Build('MOCK Android Pie', 101),
         WebTestResults({
             'tests': {
                 'jkl.html': {
                     'expected': 'PASS',
                     'actual': 'FAIL',
                     'is_unexpected': True,
                 },
                 'chrome_only.html': {
                     'expected': 'PASS',
                     'actual': 'CRASH CRASH TIMEOUT',
                     'is_unexpected': True,
                 },
             },
         }, step_name='chrome_public_wpt (with patch)'),
         step_name='chrome_public_wpt (with patch)')
     updater = AndroidWPTExpectationsUpdater(
         host, ['-vvv',
                '--android-product', 'android_weblayer',
                '--android-product', 'chrome_android',
                '--android-product', 'android_webview'])
     updater.git_cl = MockGitCL(host, {
         Build('MOCK Android Weblayer - Pie', 123):
         TryJobStatus('COMPLETED', 'FAILURE'),
         Build('MOCK Android Pie', 101):
         TryJobStatus('COMPLETED', 'FAILURE')})
     # Run command
     updater.run()
     # Check expectations for weblayer
     content = host.filesystem.read_text_file(
         PRODUCTS_TO_EXPECTATION_FILE_PATHS['android_weblayer'])
     self.assertEqual(
         content,
         ('# results: [ Failure Crash Timeout]\n'
          '\n'
          '# Add untriaged failures in this block\n'
          'crbug.com/1050754 external/wpt/abc.html [ Crash Failure Timeout ]\n'
          'crbug.com/1050754 external/wpt/cat.html [ Failure ]\n'
          'crbug.com/1050754 external/wpt/def.html [ Crash ]\n'
          'external/wpt/dog.html [ Crash Timeout ]\n'
          'crbug.com/1050754 external/wpt/ghi.html [ Timeout ]\n'
          'crbug.com/1111111 external/wpt/jkl.html [ Failure ]\n'
          'crbug.com/6789043 external/wpt/van.html [ Failure ]\n'
          'crbug.com/1050754 external/wpt/weblayer_only.html [ Failure Crash ]\n'
          'external/wpt/www.html [ Crash Failure ]\n'
          '\n'
          '# This comment will not be deleted\n'
          'crbug.com/111111 external/wpt/hello_world.html [ Crash ]\n'))
     # Check expectations for webview
     content = host.filesystem.read_text_file(
         PRODUCTS_TO_EXPECTATION_FILE_PATHS['android_webview'])
     self.assertEqual(
         content,
         ('# results: [ Failure Crash Timeout]\n'
          '\n'
          '# Add untriaged failures in this block\n'
          'external/wpt/abc.html [ Failure ]\n'
          'crbug.com/1050754 external/wpt/cat.html [ Crash Failure Timeout ]\n'
          'crbug.com/1050754 external/wpt/def.html [ Crash ]\n'
          'external/wpt/dog.html [ Crash Timeout ]\n'
          'crbug.com/1050754 external/wpt/ghi.html [ Timeout ]\n'
          'crbug.com/1111111 external/wpt/jkl.html [ Failure ]\n'
          'crbug.com/6789043 external/wpt/van.html [ Failure ]\n'
          'crbug.com/1050754 external/wpt/webview_only.html [ Timeout ]\n'
          'external/wpt/www.html [ Crash Failure ]\n'
          '\n'
          '# This comment will not be deleted\n'
          'crbug.com/111111 external/wpt/hello_world.html [ Crash ]\n'))
     # Check expectations chrome
     content = host.filesystem.read_text_file(
         PRODUCTS_TO_EXPECTATION_FILE_PATHS['chrome_android'])
     self.assertEqual(
         content,
         ('# results: [ Failure Crash Timeout]\n'
          '\n'
          '# Add untriaged failures in this block\n'
          'external/wpt/abc.html [ Failure ]\n'
          'crbug.com/1050754 external/wpt/cat.html [ Failure ]\n'
          'crbug.com/1050754 external/wpt/chrome_only.html [ Crash Timeout ]\n'
          'crbug.com/1050754 external/wpt/def.html [ Crash ]\n'
          'external/wpt/dog.html [ Crash Timeout ]\n'
          'crbug.com/1050754 external/wpt/ghi.html [ Timeout ]\n'
          'crbug.com/1111111 crbug.com/1050754'
          ' external/wpt/jkl.html [ Failure ]\n'
          'crbug.com/6789043 external/wpt/van.html [ Failure ]\n'
          'external/wpt/www.html [ Crash Failure ]\n'
          '\n'
          '# This comment will not be deleted\n'
          'crbug.com/111111 external/wpt/hello_world.html [ Crash ]\n'))