Allow resize-to-client to be enabled by the user.
[chromium-blink-merge.git] / PRESUBMIT.py
blobbe3b5cf23e48d0f45f499c28577c37d7c3b4b1be
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 """Top-level presubmit script for Chromium.
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
8 for more details about the presubmit API built into gcl.
9 """
12 import re
13 import subprocess
14 import sys
17 _EXCLUDED_PATHS = (
18 r"^breakpad[\\\/].*",
19 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_rules.py",
20 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_simple.py",
21 r"^net[\\\/]tools[\\\/]spdyshark[\\\/].*",
22 r"^skia[\\\/].*",
23 r"^v8[\\\/].*",
24 r".*MakeFile$",
25 r".+_autogen\.h$",
26 r"^cc[\\\/].*",
27 r"^webkit[\\\/]compositor_bindings[\\\/].*",
28 r".+[\\\/]pnacl_shim\.c$",
31 # Fragment of a regular expression that matches file name suffixes
32 # used to indicate different platforms.
33 _PLATFORM_SPECIFIERS = r'(_(android|chromeos|gtk|mac|posix|win))?'
35 # Fragment of a regular expression that matches C++ and Objective-C++
36 # implementation files.
37 _IMPLEMENTATION_EXTENSIONS = r'\.(cc|cpp|cxx|mm)$'
39 # Regular expression that matches code only used for test binaries
40 # (best effort).
41 _TEST_CODE_EXCLUDED_PATHS = (
42 r'.*[/\\](fake_|test_|mock_).+%s' % _IMPLEMENTATION_EXTENSIONS,
43 r'.+_test_(base|support|util)%s' % _IMPLEMENTATION_EXTENSIONS,
44 r'.+_(api|browser|perf|unit|ui)?test%s%s' % (_PLATFORM_SPECIFIERS,
45 _IMPLEMENTATION_EXTENSIONS),
46 r'.+profile_sync_service_harness%s' % _IMPLEMENTATION_EXTENSIONS,
47 r'.*[/\\](test|tool(s)?)[/\\].*',
48 # At request of folks maintaining this folder.
49 r'chrome[/\\]browser[/\\]automation[/\\].*',
52 _TEST_ONLY_WARNING = (
53 'You might be calling functions intended only for testing from\n'
54 'production code. It is OK to ignore this warning if you know what\n'
55 'you are doing, as the heuristics used to detect the situation are\n'
56 'not perfect. The commit queue will not block on this warning.\n'
57 'Email joi@chromium.org if you have questions.')
60 _INCLUDE_ORDER_WARNING = (
61 'Your #include order seems to be broken. Send mail to\n'
62 'marja@chromium.org if this is not the case.')
65 _BANNED_OBJC_FUNCTIONS = (
67 'addTrackingRect:',
69 'The use of -[NSView addTrackingRect:owner:userData:assumeInside:] is'
70 'prohibited. Please use CrTrackingArea instead.',
71 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
73 False,
76 'NSTrackingArea',
78 'The use of NSTrackingAreas is prohibited. Please use CrTrackingArea',
79 'instead.',
80 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
82 False,
85 'convertPointFromBase:',
87 'The use of -[NSView convertPointFromBase:] is almost certainly wrong.',
88 'Please use |convertPoint:(point) fromView:nil| instead.',
89 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
91 True,
94 'convertPointToBase:',
96 'The use of -[NSView convertPointToBase:] is almost certainly wrong.',
97 'Please use |convertPoint:(point) toView:nil| instead.',
98 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
100 True,
103 'convertRectFromBase:',
105 'The use of -[NSView convertRectFromBase:] is almost certainly wrong.',
106 'Please use |convertRect:(point) fromView:nil| instead.',
107 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
109 True,
112 'convertRectToBase:',
114 'The use of -[NSView convertRectToBase:] is almost certainly wrong.',
115 'Please use |convertRect:(point) toView:nil| instead.',
116 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
118 True,
121 'convertSizeFromBase:',
123 'The use of -[NSView convertSizeFromBase:] is almost certainly wrong.',
124 'Please use |convertSize:(point) fromView:nil| instead.',
125 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
127 True,
130 'convertSizeToBase:',
132 'The use of -[NSView convertSizeToBase:] is almost certainly wrong.',
133 'Please use |convertSize:(point) toView:nil| instead.',
134 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
136 True,
141 _BANNED_CPP_FUNCTIONS = (
142 # Make sure that gtest's FRIEND_TEST() macro is not used; the
143 # FRIEND_TEST_ALL_PREFIXES() macro from base/gtest_prod_util.h should be
144 # used instead since that allows for FLAKY_ and DISABLED_ prefixes.
146 'FRIEND_TEST(',
148 'Chromium code should not use gtest\'s FRIEND_TEST() macro. Include',
149 'base/gtest_prod_util.h and use FRIEND_TEST_ALL_PREFIXES() instead.',
151 False,
155 'ScopedAllowIO',
157 'New code should not use ScopedAllowIO. Post a task to the blocking',
158 'pool or the FILE thread instead.',
160 True,
162 r"^content[\\\/]shell[\\\/]shell_browser_main\.cc$",
168 def _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api):
169 """Attempts to prevent use of functions intended only for testing in
170 non-testing code. For now this is just a best-effort implementation
171 that ignores header files and may have some false positives. A
172 better implementation would probably need a proper C++ parser.
174 # We only scan .cc files and the like, as the declaration of
175 # for-testing functions in header files are hard to distinguish from
176 # calls to such functions without a proper C++ parser.
177 file_inclusion_pattern = r'.+%s' % _IMPLEMENTATION_EXTENSIONS
179 base_function_pattern = r'ForTest(ing)?|for_test(ing)?'
180 inclusion_pattern = input_api.re.compile(r'(%s)\s*\(' % base_function_pattern)
181 exclusion_pattern = input_api.re.compile(
182 r'::[A-Za-z0-9_]+(%s)|(%s)[^;]+\{' % (
183 base_function_pattern, base_function_pattern))
185 def FilterFile(affected_file):
186 black_list = (_EXCLUDED_PATHS +
187 _TEST_CODE_EXCLUDED_PATHS +
188 input_api.DEFAULT_BLACK_LIST)
189 return input_api.FilterSourceFile(
190 affected_file,
191 white_list=(file_inclusion_pattern, ),
192 black_list=black_list)
194 problems = []
195 for f in input_api.AffectedSourceFiles(FilterFile):
196 local_path = f.LocalPath()
197 lines = input_api.ReadFile(f).splitlines()
198 line_number = 0
199 for line in lines:
200 if (inclusion_pattern.search(line) and
201 not exclusion_pattern.search(line)):
202 problems.append(
203 '%s:%d\n %s' % (local_path, line_number, line.strip()))
204 line_number += 1
206 if problems:
207 if not input_api.is_committing:
208 return [output_api.PresubmitPromptWarning(_TEST_ONLY_WARNING, problems)]
209 else:
210 # We don't warn on commit, to avoid stopping commits going through CQ.
211 return [output_api.PresubmitNotifyResult(_TEST_ONLY_WARNING, problems)]
212 else:
213 return []
216 def _CheckNoIOStreamInHeaders(input_api, output_api):
217 """Checks to make sure no .h files include <iostream>."""
218 files = []
219 pattern = input_api.re.compile(r'^#include\s*<iostream>',
220 input_api.re.MULTILINE)
221 for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
222 if not f.LocalPath().endswith('.h'):
223 continue
224 contents = input_api.ReadFile(f)
225 if pattern.search(contents):
226 files.append(f)
228 if len(files):
229 return [ output_api.PresubmitError(
230 'Do not #include <iostream> in header files, since it inserts static '
231 'initialization into every file including the header. Instead, '
232 '#include <ostream>. See http://crbug.com/94794',
233 files) ]
234 return []
237 def _CheckNoUNIT_TESTInSourceFiles(input_api, output_api):
238 """Checks to make sure no source files use UNIT_TEST"""
239 problems = []
240 for f in input_api.AffectedFiles():
241 if (not f.LocalPath().endswith(('.cc', '.mm'))):
242 continue
244 for line_num, line in f.ChangedContents():
245 if 'UNIT_TEST' in line:
246 problems.append(' %s:%d' % (f.LocalPath(), line_num))
248 if not problems:
249 return []
250 return [output_api.PresubmitPromptWarning('UNIT_TEST is only for headers.\n' +
251 '\n'.join(problems))]
254 def _CheckNoNewWStrings(input_api, output_api):
255 """Checks to make sure we don't introduce use of wstrings."""
256 problems = []
257 for f in input_api.AffectedFiles():
258 if (not f.LocalPath().endswith(('.cc', '.h')) or
259 f.LocalPath().endswith('test.cc')):
260 continue
262 allowWString = False
263 for line_num, line in f.ChangedContents():
264 if 'presubmit: allow wstring' in line:
265 allowWString = True
266 elif not allowWString and 'wstring' in line:
267 problems.append(' %s:%d' % (f.LocalPath(), line_num))
268 allowWString = False
269 else:
270 allowWString = False
272 if not problems:
273 return []
274 return [output_api.PresubmitPromptWarning('New code should not use wstrings.'
275 ' If you are calling a cross-platform API that accepts a wstring, '
276 'fix the API.\n' +
277 '\n'.join(problems))]
280 def _CheckNoDEPSGIT(input_api, output_api):
281 """Make sure .DEPS.git is never modified manually."""
282 if any(f.LocalPath().endswith('.DEPS.git') for f in
283 input_api.AffectedFiles()):
284 return [output_api.PresubmitError(
285 'Never commit changes to .DEPS.git. This file is maintained by an\n'
286 'automated system based on what\'s in DEPS and your changes will be\n'
287 'overwritten.\n'
288 'See http://code.google.com/p/chromium/wiki/UsingNewGit#Rolling_DEPS\n'
289 'for more information')]
290 return []
293 def _CheckNoBannedFunctions(input_api, output_api):
294 """Make sure that banned functions are not used."""
295 warnings = []
296 errors = []
298 file_filter = lambda f: f.LocalPath().endswith(('.mm', '.m', '.h'))
299 for f in input_api.AffectedFiles(file_filter=file_filter):
300 for line_num, line in f.ChangedContents():
301 for func_name, message, error in _BANNED_OBJC_FUNCTIONS:
302 if func_name in line:
303 problems = warnings;
304 if error:
305 problems = errors;
306 problems.append(' %s:%d:' % (f.LocalPath(), line_num))
307 for message_line in message:
308 problems.append(' %s' % message_line)
310 file_filter = lambda f: f.LocalPath().endswith(('.cc', '.mm', '.h'))
311 for f in input_api.AffectedFiles(file_filter=file_filter):
312 for line_num, line in f.ChangedContents():
313 for func_name, message, error, excluded_paths in _BANNED_CPP_FUNCTIONS:
314 def IsBlacklisted(affected_file, blacklist):
315 local_path = affected_file.LocalPath()
316 for item in blacklist:
317 if input_api.re.match(item, local_path):
318 return True
319 return False
320 if IsBlacklisted(f, excluded_paths):
321 continue
322 if func_name in line:
323 problems = warnings;
324 if error:
325 problems = errors;
326 problems.append(' %s:%d:' % (f.LocalPath(), line_num))
327 for message_line in message:
328 problems.append(' %s' % message_line)
330 result = []
331 if (warnings):
332 result.append(output_api.PresubmitPromptWarning(
333 'Banned functions were used.\n' + '\n'.join(warnings)))
334 if (errors):
335 result.append(output_api.PresubmitError(
336 'Banned functions were used.\n' + '\n'.join(errors)))
337 return result
340 def _CheckNoPragmaOnce(input_api, output_api):
341 """Make sure that banned functions are not used."""
342 files = []
343 pattern = input_api.re.compile(r'^#pragma\s+once',
344 input_api.re.MULTILINE)
345 for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
346 if not f.LocalPath().endswith('.h'):
347 continue
348 contents = input_api.ReadFile(f)
349 if pattern.search(contents):
350 files.append(f)
352 if files:
353 return [output_api.PresubmitError(
354 'Do not use #pragma once in header files.\n'
355 'See http://www.chromium.org/developers/coding-style#TOC-File-headers',
356 files)]
357 return []
360 def _CheckNoTrinaryTrueFalse(input_api, output_api):
361 """Checks to make sure we don't introduce use of foo ? true : false."""
362 problems = []
363 pattern = input_api.re.compile(r'\?\s*(true|false)\s*:\s*(true|false)')
364 for f in input_api.AffectedFiles():
365 if not f.LocalPath().endswith(('.cc', '.h', '.inl', '.m', '.mm')):
366 continue
368 for line_num, line in f.ChangedContents():
369 if pattern.match(line):
370 problems.append(' %s:%d' % (f.LocalPath(), line_num))
372 if not problems:
373 return []
374 return [output_api.PresubmitPromptWarning(
375 'Please consider avoiding the "? true : false" pattern if possible.\n' +
376 '\n'.join(problems))]
379 def _CheckUnwantedDependencies(input_api, output_api):
380 """Runs checkdeps on #include statements added in this
381 change. Breaking - rules is an error, breaking ! rules is a
382 warning.
384 # We need to wait until we have an input_api object and use this
385 # roundabout construct to import checkdeps because this file is
386 # eval-ed and thus doesn't have __file__.
387 original_sys_path = sys.path
388 try:
389 sys.path = sys.path + [input_api.os_path.join(
390 input_api.PresubmitLocalPath(), 'tools', 'checkdeps')]
391 import checkdeps
392 from cpp_checker import CppChecker
393 from rules import Rule
394 finally:
395 # Restore sys.path to what it was before.
396 sys.path = original_sys_path
398 added_includes = []
399 for f in input_api.AffectedFiles():
400 if not CppChecker.IsCppFile(f.LocalPath()):
401 continue
403 changed_lines = [line for line_num, line in f.ChangedContents()]
404 added_includes.append([f.LocalPath(), changed_lines])
406 deps_checker = checkdeps.DepsChecker()
408 error_descriptions = []
409 warning_descriptions = []
410 for path, rule_type, rule_description in deps_checker.CheckAddedCppIncludes(
411 added_includes):
412 description_with_path = '%s\n %s' % (path, rule_description)
413 if rule_type == Rule.DISALLOW:
414 error_descriptions.append(description_with_path)
415 else:
416 warning_descriptions.append(description_with_path)
418 results = []
419 if error_descriptions:
420 results.append(output_api.PresubmitError(
421 'You added one or more #includes that violate checkdeps rules.',
422 error_descriptions))
423 if warning_descriptions:
424 if not input_api.is_committing:
425 warning_factory = output_api.PresubmitPromptWarning
426 else:
427 # We don't want to block use of the CQ when there is a warning
428 # of this kind, so we only show a message when committing.
429 warning_factory = output_api.PresubmitNotifyResult
430 results.append(warning_factory(
431 'You added one or more #includes of files that are temporarily\n'
432 'allowed but being removed. Can you avoid introducing the\n'
433 '#include? See relevant DEPS file(s) for details and contacts.',
434 warning_descriptions))
435 return results
438 def _CheckFilePermissions(input_api, output_api):
439 """Check that all files have their permissions properly set."""
440 args = [sys.executable, 'tools/checkperms/checkperms.py', '--root',
441 input_api.change.RepositoryRoot()]
442 for f in input_api.AffectedFiles():
443 args += ['--file', f.LocalPath()]
444 errors = []
445 (errors, stderrdata) = subprocess.Popen(args).communicate()
447 results = []
448 if errors:
449 results.append(output_api.PresubmitError('checkperms.py failed.',
450 errors))
451 return results
454 def _CheckNoAuraWindowPropertyHInHeaders(input_api, output_api):
455 """Makes sure we don't include ui/aura/window_property.h
456 in header files.
458 pattern = input_api.re.compile(r'^#include\s*"ui/aura/window_property.h"')
459 errors = []
460 for f in input_api.AffectedFiles():
461 if not f.LocalPath().endswith('.h'):
462 continue
463 for line_num, line in f.ChangedContents():
464 if pattern.match(line):
465 errors.append(' %s:%d' % (f.LocalPath(), line_num))
467 results = []
468 if errors:
469 results.append(output_api.PresubmitError(
470 'Header files should not include ui/aura/window_property.h', errors))
471 return results
474 def _CheckIncludeOrderForScope(scope, input_api, file_path, changed_linenums):
475 """Checks that the lines in scope occur in the right order.
477 1. C system files in alphabetical order
478 2. C++ system files in alphabetical order
479 3. Project's .h files
482 c_system_include_pattern = input_api.re.compile(r'\s*#include <.*\.h>')
483 cpp_system_include_pattern = input_api.re.compile(r'\s*#include <.*>')
484 custom_include_pattern = input_api.re.compile(r'\s*#include ".*')
486 C_SYSTEM_INCLUDES, CPP_SYSTEM_INCLUDES, CUSTOM_INCLUDES = range(3)
488 state = C_SYSTEM_INCLUDES
490 previous_line = ''
491 previous_line_num = 0
492 problem_linenums = []
493 for line_num, line in scope:
494 if c_system_include_pattern.match(line):
495 if state != C_SYSTEM_INCLUDES:
496 problem_linenums.append((line_num, previous_line_num))
497 elif previous_line and previous_line > line:
498 problem_linenums.append((line_num, previous_line_num))
499 elif cpp_system_include_pattern.match(line):
500 if state == C_SYSTEM_INCLUDES:
501 state = CPP_SYSTEM_INCLUDES
502 elif state == CUSTOM_INCLUDES:
503 problem_linenums.append((line_num, previous_line_num))
504 elif previous_line and previous_line > line:
505 problem_linenums.append((line_num, previous_line_num))
506 elif custom_include_pattern.match(line):
507 if state != CUSTOM_INCLUDES:
508 state = CUSTOM_INCLUDES
509 elif previous_line and previous_line > line:
510 problem_linenums.append((line_num, previous_line_num))
511 else:
512 problem_linenums.append(line_num)
513 previous_line = line
514 previous_line_num = line_num
516 warnings = []
517 for (line_num, previous_line_num) in problem_linenums:
518 if line_num in changed_linenums or previous_line_num in changed_linenums:
519 warnings.append(' %s:%d' % (file_path, line_num))
520 return warnings
523 def _CheckIncludeOrderInFile(input_api, f, changed_linenums):
524 """Checks the #include order for the given file f."""
526 system_include_pattern = input_api.re.compile(r'\s*#include \<.*')
527 # Exclude #include <.../...> includes from the check; e.g., <sys/...> includes
528 # often need to appear in a specific order.
529 excluded_include_pattern = input_api.re.compile(r'\s*#include \<.*/.*')
530 custom_include_pattern = input_api.re.compile(r'\s*#include "(?P<FILE>.*)"')
531 if_pattern = input_api.re.compile(
532 r'\s*#\s*(if|elif|else|endif|define|undef).*')
533 # Some files need specialized order of includes; exclude such files from this
534 # check.
535 uncheckable_includes_pattern = input_api.re.compile(
536 r'\s*#include '
537 '("ipc/.*macros\.h"|<windows\.h>|".*gl.*autogen.h")\s*')
539 contents = f.NewContents()
540 warnings = []
541 line_num = 0
543 # Handle the special first include. If the first include file is
544 # some/path/file.h, the corresponding including file can be some/path/file.cc,
545 # some/other/path/file.cc, some/path/file_platform.cc, some/path/file-suffix.h
546 # etc. It's also possible that no special first include exists.
547 for line in contents:
548 line_num += 1
549 if system_include_pattern.match(line):
550 # No special first include -> process the line again along with normal
551 # includes.
552 line_num -= 1
553 break
554 match = custom_include_pattern.match(line)
555 if match:
556 match_dict = match.groupdict()
557 header_basename = input_api.os_path.basename(
558 match_dict['FILE']).replace('.h', '')
559 if header_basename not in input_api.os_path.basename(f.LocalPath()):
560 # No special first include -> process the line again along with normal
561 # includes.
562 line_num -= 1
563 break
565 # Split into scopes: Each region between #if and #endif is its own scope.
566 scopes = []
567 current_scope = []
568 for line in contents[line_num:]:
569 line_num += 1
570 if uncheckable_includes_pattern.match(line):
571 return []
572 if if_pattern.match(line):
573 scopes.append(current_scope)
574 current_scope = []
575 elif ((system_include_pattern.match(line) or
576 custom_include_pattern.match(line)) and
577 not excluded_include_pattern.match(line)):
578 current_scope.append((line_num, line))
579 scopes.append(current_scope)
581 for scope in scopes:
582 warnings.extend(_CheckIncludeOrderForScope(scope, input_api, f.LocalPath(),
583 changed_linenums))
584 return warnings
587 def _CheckIncludeOrder(input_api, output_api):
588 """Checks that the #include order is correct.
590 1. The corresponding header for source files.
591 2. C system files in alphabetical order
592 3. C++ system files in alphabetical order
593 4. Project's .h files in alphabetical order
595 Each region separated by #if, #elif, #else, #endif, #define and #undef follows
596 these rules separately.
599 warnings = []
600 for f in input_api.AffectedFiles():
601 if f.LocalPath().endswith(('.cc', '.h')):
602 changed_linenums = set(line_num for line_num, _ in f.ChangedContents())
603 warnings.extend(_CheckIncludeOrderInFile(input_api, f, changed_linenums))
605 results = []
606 if warnings:
607 if not input_api.is_committing:
608 results.append(output_api.PresubmitPromptWarning(_INCLUDE_ORDER_WARNING,
609 warnings))
610 else:
611 # We don't warn on commit, to avoid stopping commits going through CQ.
612 results.append(output_api.PresubmitNotifyResult(_INCLUDE_ORDER_WARNING,
613 warnings))
614 return results
617 def _CheckForVersionControlConflictsInFile(input_api, f):
618 pattern = input_api.re.compile('^(?:<<<<<<<|>>>>>>>) |^=======$')
619 errors = []
620 for line_num, line in f.ChangedContents():
621 if pattern.match(line):
622 errors.append(' %s:%d %s' % (f.LocalPath(), line_num, line))
623 return errors
626 def _CheckForVersionControlConflicts(input_api, output_api):
627 """Usually this is not intentional and will cause a compile failure."""
628 errors = []
629 for f in input_api.AffectedFiles():
630 errors.extend(_CheckForVersionControlConflictsInFile(input_api, f))
632 results = []
633 if errors:
634 results.append(output_api.PresubmitError(
635 'Version control conflict markers found, please resolve.', errors))
636 return results
639 def _CheckHardcodedGoogleHostsInLowerLayers(input_api, output_api):
640 def FilterFile(affected_file):
641 """Filter function for use with input_api.AffectedSourceFiles,
642 below. This filters out everything except non-test files from
643 top-level directories that generally speaking should not hard-code
644 service URLs (e.g. src/android_webview/, src/content/ and others).
646 return input_api.FilterSourceFile(
647 affected_file,
648 white_list=(r'^(android_webview|base|content|net)[\\\/].*', ),
649 black_list=(_EXCLUDED_PATHS +
650 _TEST_CODE_EXCLUDED_PATHS +
651 input_api.DEFAULT_BLACK_LIST))
653 pattern = input_api.re.compile('"[^"]*google\.com[^"]*"')
654 problems = [] # items are (filename, line_number, line)
655 for f in input_api.AffectedSourceFiles(FilterFile):
656 for line_num, line in f.ChangedContents():
657 if pattern.search(line):
658 problems.append((f.LocalPath(), line_num, line))
660 if problems:
661 if not input_api.is_committing:
662 warning_factory = output_api.PresubmitPromptWarning
663 else:
664 # We don't want to block use of the CQ when there is a warning
665 # of this kind, so we only show a message when committing.
666 warning_factory = output_api.PresubmitNotifyResult
667 return [warning_factory(
668 'Most layers below src/chrome/ should not hardcode service URLs.\n'
669 'Are you sure this is correct? (Contact: joi@chromium.org)',
670 [' %s:%d: %s' % (
671 problem[0], problem[1], problem[2]) for problem in problems])]
672 else:
673 return []
676 def _CommonChecks(input_api, output_api):
677 """Checks common to both upload and commit."""
678 results = []
679 results.extend(input_api.canned_checks.PanProjectChecks(
680 input_api, output_api, excluded_paths=_EXCLUDED_PATHS))
681 results.extend(_CheckAuthorizedAuthor(input_api, output_api))
682 results.extend(
683 _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api))
684 results.extend(_CheckNoIOStreamInHeaders(input_api, output_api))
685 results.extend(_CheckNoUNIT_TESTInSourceFiles(input_api, output_api))
686 results.extend(_CheckNoNewWStrings(input_api, output_api))
687 results.extend(_CheckNoDEPSGIT(input_api, output_api))
688 results.extend(_CheckNoBannedFunctions(input_api, output_api))
689 results.extend(_CheckNoPragmaOnce(input_api, output_api))
690 results.extend(_CheckNoTrinaryTrueFalse(input_api, output_api))
691 results.extend(_CheckUnwantedDependencies(input_api, output_api))
692 results.extend(_CheckFilePermissions(input_api, output_api))
693 results.extend(_CheckNoAuraWindowPropertyHInHeaders(input_api, output_api))
694 results.extend(_CheckIncludeOrder(input_api, output_api))
695 results.extend(_CheckForVersionControlConflicts(input_api, output_api))
696 results.extend(_CheckPatchFiles(input_api, output_api))
697 results.extend(_CheckHardcodedGoogleHostsInLowerLayers(input_api, output_api))
699 if any('PRESUBMIT.py' == f.LocalPath() for f in input_api.AffectedFiles()):
700 results.extend(input_api.canned_checks.RunUnitTestsInDirectory(
701 input_api, output_api,
702 input_api.PresubmitLocalPath(),
703 whitelist=[r'.+_test\.py$']))
704 return results
707 def _CheckSubversionConfig(input_api, output_api):
708 """Verifies the subversion config file is correctly setup.
710 Checks that autoprops are enabled, returns an error otherwise.
712 join = input_api.os_path.join
713 if input_api.platform == 'win32':
714 appdata = input_api.environ.get('APPDATA', '')
715 if not appdata:
716 return [output_api.PresubmitError('%APPDATA% is not configured.')]
717 path = join(appdata, 'Subversion', 'config')
718 else:
719 home = input_api.environ.get('HOME', '')
720 if not home:
721 return [output_api.PresubmitError('$HOME is not configured.')]
722 path = join(home, '.subversion', 'config')
724 error_msg = (
725 'Please look at http://dev.chromium.org/developers/coding-style to\n'
726 'configure your subversion configuration file. This enables automatic\n'
727 'properties to simplify the project maintenance.\n'
728 'Pro-tip: just download and install\n'
729 'http://src.chromium.org/viewvc/chrome/trunk/tools/build/slave/config\n')
731 try:
732 lines = open(path, 'r').read().splitlines()
733 # Make sure auto-props is enabled and check for 2 Chromium standard
734 # auto-prop.
735 if (not '*.cc = svn:eol-style=LF' in lines or
736 not '*.pdf = svn:mime-type=application/pdf' in lines or
737 not 'enable-auto-props = yes' in lines):
738 return [
739 output_api.PresubmitNotifyResult(
740 'It looks like you have not configured your subversion config '
741 'file or it is not up-to-date.\n' + error_msg)
743 except (OSError, IOError):
744 return [
745 output_api.PresubmitNotifyResult(
746 'Can\'t find your subversion config file.\n' + error_msg)
748 return []
751 def _CheckAuthorizedAuthor(input_api, output_api):
752 """For non-googler/chromites committers, verify the author's email address is
753 in AUTHORS.
755 # TODO(maruel): Add it to input_api?
756 import fnmatch
758 author = input_api.change.author_email
759 if not author:
760 input_api.logging.info('No author, skipping AUTHOR check')
761 return []
762 authors_path = input_api.os_path.join(
763 input_api.PresubmitLocalPath(), 'AUTHORS')
764 valid_authors = (
765 input_api.re.match(r'[^#]+\s+\<(.+?)\>\s*$', line)
766 for line in open(authors_path))
767 valid_authors = [item.group(1).lower() for item in valid_authors if item]
768 if not any(fnmatch.fnmatch(author.lower(), valid) for valid in valid_authors):
769 input_api.logging.info('Valid authors are %s', ', '.join(valid_authors))
770 return [output_api.PresubmitPromptWarning(
771 ('%s is not in AUTHORS file. If you are a new contributor, please visit'
772 '\n'
773 'http://www.chromium.org/developers/contributing-code and read the '
774 '"Legal" section\n'
775 'If you are a chromite, verify the contributor signed the CLA.') %
776 author)]
777 return []
780 def _CheckPatchFiles(input_api, output_api):
781 problems = [f.LocalPath() for f in input_api.AffectedFiles()
782 if f.LocalPath().endswith(('.orig', '.rej'))]
783 if problems:
784 return [output_api.PresubmitError(
785 "Don't commit .rej and .orig files.", problems)]
786 else:
787 return []
790 def CheckChangeOnUpload(input_api, output_api):
791 results = []
792 results.extend(_CommonChecks(input_api, output_api))
793 return results
796 def CheckChangeOnCommit(input_api, output_api):
797 results = []
798 results.extend(_CommonChecks(input_api, output_api))
799 # TODO(thestig) temporarily disabled, doesn't work in third_party/
800 #results.extend(input_api.canned_checks.CheckSvnModifiedDirectories(
801 # input_api, output_api, sources))
802 # Make sure the tree is 'open'.
803 results.extend(input_api.canned_checks.CheckTreeIsOpen(
804 input_api,
805 output_api,
806 json_url='http://chromium-status.appspot.com/current?format=json'))
807 results.extend(input_api.canned_checks.CheckRietveldTryJobExecution(input_api,
808 output_api, 'http://codereview.chromium.org',
809 ('win_rel', 'linux_rel', 'mac_rel, win:compile'),
810 'tryserver@chromium.org'))
812 results.extend(input_api.canned_checks.CheckChangeHasBugField(
813 input_api, output_api))
814 results.extend(input_api.canned_checks.CheckChangeHasDescription(
815 input_api, output_api))
816 results.extend(_CheckSubversionConfig(input_api, output_api))
817 return results
820 def GetPreferredTrySlaves(project, change):
821 files = change.LocalPaths()
823 if not files or all(re.search(r'[\\/]OWNERS$', f) for f in files):
824 return []
826 if all(re.search('\.(m|mm)$|(^|[/_])mac[/_.]', f) for f in files):
827 return ['mac_rel', 'mac_asan']
828 if all(re.search('(^|[/_])win[/_.]', f) for f in files):
829 return ['win_rel']
830 if all(re.search('(^|[/_])android[/_.]', f) for f in files):
831 return ['android_dbg', 'android_clang_dbg']
832 if all(re.search('^native_client_sdk', f) for f in files):
833 return ['linux_nacl_sdk', 'win_nacl_sdk', 'mac_nacl_sdk']
834 if all(re.search('[/_]ios[/_.]', f) for f in files):
835 return ['ios_rel_device', 'ios_dbg_simulator']
837 trybots = [
838 'android_clang_dbg',
839 'android_dbg',
840 'ios_dbg_simulator',
841 'ios_rel_device',
842 'linux_asan',
843 'linux_aura',
844 'linux_chromeos',
845 'linux_clang:compile',
846 'linux_rel',
847 'mac_asan',
848 'mac_rel',
849 'win7_aura',
850 'win_rel',
853 # Match things like path/aura/file.cc and path/file_aura.cc.
854 # Same for chromeos.
855 if any(re.search('[/_](aura|chromeos)', f) for f in files):
856 trybots += ['linux_chromeos_clang:compile', 'linux_chromeos_asan']
858 return trybots