1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 """test_expectations.txt presubmit script.
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
8 details on the presubmit API built into gcl.
11 TEST_EXPECTATIONS_FILENAMES
= ['test_expectations.txt', 'TestExpectations']
13 def LintTestFiles(input_api
, output_api
):
14 current_dir
= str(input_api
.PresubmitLocalPath())
15 # Set 'webkit/tools/layout_tests' in include path.
18 input_api
.os_path
.join(current_dir
, '..', '..', '..', 'tools', 'python')
20 env
= input_api
.environ
.copy()
21 if env
.get('PYTHONPATH'):
22 python_paths
.append(env
['PYTHONPATH'])
23 env
['PYTHONPATH'] = input_api
.os_path
.pathsep
.join(python_paths
)
25 input_api
.python_executable
,
26 input_api
.os_path
.join(current_dir
, 'run_webkit_tests.py'),
29 subproc
= input_api
.subprocess
.Popen(
33 stdin
=input_api
.subprocess
.PIPE
,
34 stdout
=input_api
.subprocess
.PIPE
,
35 stderr
=input_api
.subprocess
.STDOUT
)
36 stdout_data
= subproc
.communicate()[0]
37 # TODO(ukai): consolidate run_webkit_tests --lint-test-files reports.
38 is_error
= lambda line
: (input_api
.re
.match('^Line:', line
) or
39 input_api
.re
.search('ERROR Line:', line
))
40 error
= filter(is_error
, stdout_data
.splitlines())
42 return [output_api
.PresubmitError('Lint error\n%s' % '\n'.join(error
),
43 long_text
=stdout_data
)]
46 def LintTestExpectations(input_api
, output_api
):
47 for path
in input_api
.LocalPaths():
48 if input_api
.os_path
.basename(path
) in TEST_EXPECTATIONS_FILENAMES
:
49 return LintTestFiles(input_api
, output_api
)
53 def CheckChangeOnUpload(input_api
, output_api
):
54 return LintTestExpectations(input_api
, output_api
)
56 def CheckChangeOnCommit(input_api
, output_api
):
57 return LintTestExpectations(input_api
, output_api
)