-
Notifications
You must be signed in to change notification settings - Fork 0
/
PRESUBMIT.py
executable file
·169 lines (139 loc) · 5.76 KB
/
PRESUBMIT.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# Copyright (c) 2011 The Native Client Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Documentation on PRESUBMIT.py can be found at:
# http://www.chromium.org/developers/how-tos/depottools/presubmit-scripts
import os
import subprocess
PYTHON = 'build_tools/python_wrapper'
_EXCLUDED_PATHS = (
# patch_configure.py contains long lines embedded in multi-line
# strings.
r"^build_tools[\\\/]patch_configure.py",
# Many of the files in glibc-compat come from the other sources such as
# newlib and as such do not contain our copyright header.
r"^ports[\/\\]glibc-compat[\/\\]include[\/\\]err\.h",
r"^ports[\/\\]glibc-compat[\/\\]include[\/\\]fts\.h",
r"^ports[\/\\]glibc-compat[\/\\]include[\/\\]sys[\/\\]socket\.h",
r"^ports[\/\\]glibc-compat[\/\\]src[\/\\]err\.c",
r"^ports[\/\\]glibc-compat[\/\\]src[\/\\]libc-symbols\.h",
r"^ports[\/\\]glibc-compat[\/\\]src[\/\\]dirfd.c",
r"^ports[\/\\]glibc-compat[\/\\]src[\/\\]flock.c",
r"^ports[\/\\]glibc-compat[\/\\]src[\/\\]fts.c",
r"^ports[\/\\]glibc-compat[\/\\]src[\/\\]herror.c",
r"^ports[\/\\]glibc-compat[\/\\]src[\/\\]timegm.c",
r"^ports[\\\/]alut-demo[\\\/]alut_hello_world.c",
)
def RunPylint(input_api, output_api):
output = []
canned = input_api.canned_checks
disabled_warnings = [
'W0613', # Unused argument
]
black_list = list(input_api.DEFAULT_BLACK_LIST) + [
r'ports[\/\\]ipython-ppapi[\/\\]kernel\.py',
]
output.extend(canned.RunPylint(input_api, output_api, black_list=black_list,
disabled_warnings=disabled_warnings,
extra_paths_list=['lib']))
return output
def RunCommand(name, cmd, input_api, output_api):
try:
subprocess.check_call(cmd)
except subprocess.CalledProcessError:
message = '%s failed.' % name
return [output_api.PresubmitError(message)]
return []
def RunPythonCommand(cmd, input_api, output_api):
return RunCommand(cmd[0], [PYTHON] + cmd, input_api, output_api)
def CheckPartioning(input_api, output_api):
return RunPythonCommand(
['build_tools/partition.py', '--check'], input_api, output_api)
def CheckDeps(input_api, output_api):
return RunPythonCommand(['build_tools/check_deps.py'], input_api, output_api)
def CheckPortList(input_api, output_api):
rtn = RunPythonCommand(
['build_tools/generate_port_list.py', '-o', 'tmp.md'], input_api,
output_api)
if rtn:
return rtn
if open('tmp.md').read() != open('docs/port_list.md').read():
subprocess.call(['diff', '-u', 'tmp.md', 'docs/port_list.md'])
message = 'docs/port_list.md is out-of-date.'
message += ' Run build_tools/generate_port_list.py to update.'
return [output_api.PresubmitError(message)]
os.remove('tmp.md')
return []
def CheckMirror(input_api, output_api):
return RunPythonCommand(
['build_tools/update_mirror.py', '--check'], input_api, output_api)
def RunUnittests(input_api, output_api):
return RunCommand('unittests', ['make', 'test'], input_api, output_api)
# This check was copied from the chromium version.
# TODO(sbc): should we add this to canned_checks?
def CheckAuthorizedAuthor(input_api, output_api):
"""Verify the author's email address is in AUTHORS.
"""
import fnmatch
author = input_api.change.author_email
if not author:
input_api.logging.info('No author, skipping AUTHOR check')
return []
authors_path = input_api.os_path.join(input_api.PresubmitLocalPath(),
'AUTHORS')
valid_authors = (input_api.re.match(r'[^#]+\s+\<(.+?)\>\s*$', line)
for line in open(authors_path))
valid_authors = [item.group(1).lower() for item in valid_authors if item]
if not any(fnmatch.fnmatch(author.lower(), valid) for valid in valid_authors):
input_api.logging.info('Valid authors are %s', ', '.join(valid_authors))
return [output_api.PresubmitPromptWarning(
('%s is not in AUTHORS file. If you are a new contributor, please visit'
'\n'
'http://www.chromium.org/developers/contributing-code and read the '
'"Legal" section.\n') % author)]
return []
def CheckChangeOnUpload(input_api, output_api):
report = []
report.extend(CheckPortList(input_api, output_api))
report.extend(CheckAuthorizedAuthor(input_api, output_api))
report.extend(RunPylint(input_api, output_api))
report.extend(RunUnittests(input_api, output_api))
report.extend(CheckDeps(input_api, output_api))
report.extend(input_api.canned_checks.PanProjectChecks(
input_api, output_api, project_name='Native Client', excluded_paths=
_EXCLUDED_PATHS))
return report
def CheckChangeOnCommit(input_api, output_api):
report = []
report.extend(CheckChangeOnUpload(input_api, output_api))
report.extend(CheckMirror(input_api, output_api))
report.extend(CheckPartioning(input_api, output_api))
report.extend(input_api.canned_checks.CheckTreeIsOpen(
input_api, output_api,
json_url='http://naclports-status.appspot.com/current?format=json'))
return report
TRYBOTS = [
'webports-linux-glibc-0',
'webports-linux-glibc-1',
'webports-linux-glibc-2',
'webports-linux-glibc-3',
'webports-linux-glibc-4',
'webports-linux-glibc-5',
'webports-linux-pnacl-0',
'webports-linux-pnacl-1',
'webports-linux-pnacl-2',
'webports-linux-pnacl-3',
'webports-linux-pnacl-4',
'webports-linux-pnacl-5',
'webports-linux-clang-0',
'webports-linux-clang-1',
'webports-linux-clang-2',
'webports-linux-clang-3',
'webports-linux-clang-4',
'webports-linux-clang-5',
'webports-linux-emscripten-0',
]
def GetPreferredTryMasters(_, change):
return {
'tryserver.nacl': { t: set(['defaulttests']) for t in TRYBOTS },
}