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.
19 r
"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_rules.py",
20 r
"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_simple.py",
21 r
"^native_client_sdk[\\\/]src[\\\/]tools[\\\/].*.mk",
22 r
"^net[\\\/]tools[\\\/]spdyshark[\\\/].*",
27 r
".+[\\\/]pnacl_shim\.c$",
30 # Fragment of a regular expression that matches C++ and Objective-C++
31 # implementation files.
32 _IMPLEMENTATION_EXTENSIONS
= r
'\.(cc|cpp|cxx|mm)$'
34 # Regular expression that matches code only used for test binaries
36 _TEST_CODE_EXCLUDED_PATHS
= (
37 r
'.*[/\\](fake_|test_|mock_).+%s' % _IMPLEMENTATION_EXTENSIONS
,
38 r
'.+_test_(base|support|util)%s' % _IMPLEMENTATION_EXTENSIONS
,
39 r
'.+_(api|browser|perf|pixel|unit|ui)?test(_[a-z]+)?%s' %
40 _IMPLEMENTATION_EXTENSIONS
,
41 r
'.+profile_sync_service_harness%s' % _IMPLEMENTATION_EXTENSIONS
,
42 r
'.*[/\\](test|tool(s)?)[/\\].*',
43 # content_shell is used for running layout tests.
44 r
'content[/\\]shell[/\\].*',
45 # At request of folks maintaining this folder.
46 r
'chrome[/\\]browser[/\\]automation[/\\].*',
49 _TEST_ONLY_WARNING
= (
50 'You might be calling functions intended only for testing from\n'
51 'production code. It is OK to ignore this warning if you know what\n'
52 'you are doing, as the heuristics used to detect the situation are\n'
53 'not perfect. The commit queue will not block on this warning.\n'
54 'Email joi@chromium.org if you have questions.')
57 _INCLUDE_ORDER_WARNING
= (
58 'Your #include order seems to be broken. Send mail to\n'
59 'marja@chromium.org if this is not the case.')
62 _BANNED_OBJC_FUNCTIONS
= (
66 'The use of -[NSView addTrackingRect:owner:userData:assumeInside:] is'
67 'prohibited. Please use CrTrackingArea instead.',
68 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
75 'The use of NSTrackingAreas is prohibited. Please use CrTrackingArea',
77 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
82 'convertPointFromBase:',
84 'The use of -[NSView convertPointFromBase:] is almost certainly wrong.',
85 'Please use |convertPoint:(point) fromView:nil| instead.',
86 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
91 'convertPointToBase:',
93 'The use of -[NSView convertPointToBase:] is almost certainly wrong.',
94 'Please use |convertPoint:(point) toView:nil| instead.',
95 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
100 'convertRectFromBase:',
102 'The use of -[NSView convertRectFromBase:] is almost certainly wrong.',
103 'Please use |convertRect:(point) fromView:nil| instead.',
104 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
109 'convertRectToBase:',
111 'The use of -[NSView convertRectToBase:] is almost certainly wrong.',
112 'Please use |convertRect:(point) toView:nil| instead.',
113 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
118 'convertSizeFromBase:',
120 'The use of -[NSView convertSizeFromBase:] is almost certainly wrong.',
121 'Please use |convertSize:(point) fromView:nil| instead.',
122 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
127 'convertSizeToBase:',
129 'The use of -[NSView convertSizeToBase:] is almost certainly wrong.',
130 'Please use |convertSize:(point) toView:nil| instead.',
131 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
138 _BANNED_CPP_FUNCTIONS
= (
139 # Make sure that gtest's FRIEND_TEST() macro is not used; the
140 # FRIEND_TEST_ALL_PREFIXES() macro from base/gtest_prod_util.h should be
141 # used instead since that allows for FLAKY_ and DISABLED_ prefixes.
145 'Chromium code should not use gtest\'s FRIEND_TEST() macro. Include',
146 'base/gtest_prod_util.h and use FRIEND_TEST_ALL_PREFIXES() instead.',
154 'New code should not use ScopedAllowIO. Post a task to the blocking',
155 'pool or the FILE thread instead.',
159 r
"^content[\\\/]shell[\\\/]shell_browser_main\.cc$",
160 r
"^net[\\\/]disk_cache[\\\/]cache_util\.cc$",
167 # Please keep sorted.
170 'OS_CAT', # For testing.
184 def _CheckNoProductionCodeUsingTestOnlyFunctions(input_api
, output_api
):
185 """Attempts to prevent use of functions intended only for testing in
186 non-testing code. For now this is just a best-effort implementation
187 that ignores header files and may have some false positives. A
188 better implementation would probably need a proper C++ parser.
190 # We only scan .cc files and the like, as the declaration of
191 # for-testing functions in header files are hard to distinguish from
192 # calls to such functions without a proper C++ parser.
193 file_inclusion_pattern
= r
'.+%s' % _IMPLEMENTATION_EXTENSIONS
195 base_function_pattern
= r
'ForTest(ing)?|for_test(ing)?'
196 inclusion_pattern
= input_api
.re
.compile(r
'(%s)\s*\(' % base_function_pattern
)
197 exclusion_pattern
= input_api
.re
.compile(
198 r
'::[A-Za-z0-9_]+(%s)|(%s)[^;]+\{' % (
199 base_function_pattern
, base_function_pattern
))
201 def FilterFile(affected_file
):
202 black_list
= (_EXCLUDED_PATHS
+
203 _TEST_CODE_EXCLUDED_PATHS
+
204 input_api
.DEFAULT_BLACK_LIST
)
205 return input_api
.FilterSourceFile(
207 white_list
=(file_inclusion_pattern
, ),
208 black_list
=black_list
)
211 for f
in input_api
.AffectedSourceFiles(FilterFile
):
212 local_path
= f
.LocalPath()
213 lines
= input_api
.ReadFile(f
).splitlines()
216 if (inclusion_pattern
.search(line
) and
217 not exclusion_pattern
.search(line
)):
219 '%s:%d\n %s' % (local_path
, line_number
, line
.strip()))
223 return [output_api
.PresubmitPromptOrNotify(_TEST_ONLY_WARNING
, problems
)]
228 def _CheckNoIOStreamInHeaders(input_api
, output_api
):
229 """Checks to make sure no .h files include <iostream>."""
231 pattern
= input_api
.re
.compile(r
'^#include\s*<iostream>',
232 input_api
.re
.MULTILINE
)
233 for f
in input_api
.AffectedSourceFiles(input_api
.FilterSourceFile
):
234 if not f
.LocalPath().endswith('.h'):
236 contents
= input_api
.ReadFile(f
)
237 if pattern
.search(contents
):
241 return [ output_api
.PresubmitError(
242 'Do not #include <iostream> in header files, since it inserts static '
243 'initialization into every file including the header. Instead, '
244 '#include <ostream>. See http://crbug.com/94794',
249 def _CheckNoUNIT_TESTInSourceFiles(input_api
, output_api
):
250 """Checks to make sure no source files use UNIT_TEST"""
252 for f
in input_api
.AffectedFiles():
253 if (not f
.LocalPath().endswith(('.cc', '.mm'))):
256 for line_num
, line
in f
.ChangedContents():
257 if 'UNIT_TEST' in line
:
258 problems
.append(' %s:%d' % (f
.LocalPath(), line_num
))
262 return [output_api
.PresubmitPromptWarning('UNIT_TEST is only for headers.\n' +
263 '\n'.join(problems
))]
266 def _CheckNoNewWStrings(input_api
, output_api
):
267 """Checks to make sure we don't introduce use of wstrings."""
269 for f
in input_api
.AffectedFiles():
270 if (not f
.LocalPath().endswith(('.cc', '.h')) or
271 f
.LocalPath().endswith('test.cc')):
275 for line_num
, line
in f
.ChangedContents():
276 if 'presubmit: allow wstring' in line
:
278 elif not allowWString
and 'wstring' in line
:
279 problems
.append(' %s:%d' % (f
.LocalPath(), line_num
))
286 return [output_api
.PresubmitPromptWarning('New code should not use wstrings.'
287 ' If you are calling a cross-platform API that accepts a wstring, '
289 '\n'.join(problems
))]
292 def _CheckNoDEPSGIT(input_api
, output_api
):
293 """Make sure .DEPS.git is never modified manually."""
294 if any(f
.LocalPath().endswith('.DEPS.git') for f
in
295 input_api
.AffectedFiles()):
296 return [output_api
.PresubmitError(
297 'Never commit changes to .DEPS.git. This file is maintained by an\n'
298 'automated system based on what\'s in DEPS and your changes will be\n'
300 'See http://code.google.com/p/chromium/wiki/UsingNewGit#Rolling_DEPS\n'
301 'for more information')]
305 def _CheckNoBannedFunctions(input_api
, output_api
):
306 """Make sure that banned functions are not used."""
310 file_filter
= lambda f
: f
.LocalPath().endswith(('.mm', '.m', '.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
in _BANNED_OBJC_FUNCTIONS
:
314 if func_name
in line
:
318 problems
.append(' %s:%d:' % (f
.LocalPath(), line_num
))
319 for message_line
in message
:
320 problems
.append(' %s' % message_line
)
322 file_filter
= lambda f
: f
.LocalPath().endswith(('.cc', '.mm', '.h'))
323 for f
in input_api
.AffectedFiles(file_filter
=file_filter
):
324 for line_num
, line
in f
.ChangedContents():
325 for func_name
, message
, error
, excluded_paths
in _BANNED_CPP_FUNCTIONS
:
326 def IsBlacklisted(affected_file
, blacklist
):
327 local_path
= affected_file
.LocalPath()
328 for item
in blacklist
:
329 if input_api
.re
.match(item
, local_path
):
332 if IsBlacklisted(f
, excluded_paths
):
334 if func_name
in line
:
338 problems
.append(' %s:%d:' % (f
.LocalPath(), line_num
))
339 for message_line
in message
:
340 problems
.append(' %s' % message_line
)
344 result
.append(output_api
.PresubmitPromptWarning(
345 'Banned functions were used.\n' + '\n'.join(warnings
)))
347 result
.append(output_api
.PresubmitError(
348 'Banned functions were used.\n' + '\n'.join(errors
)))
352 def _CheckNoPragmaOnce(input_api
, output_api
):
353 """Make sure that banned functions are not used."""
355 pattern
= input_api
.re
.compile(r
'^#pragma\s+once',
356 input_api
.re
.MULTILINE
)
357 for f
in input_api
.AffectedSourceFiles(input_api
.FilterSourceFile
):
358 if not f
.LocalPath().endswith('.h'):
360 contents
= input_api
.ReadFile(f
)
361 if pattern
.search(contents
):
365 return [output_api
.PresubmitError(
366 'Do not use #pragma once in header files.\n'
367 'See http://www.chromium.org/developers/coding-style#TOC-File-headers',
372 def _CheckNoTrinaryTrueFalse(input_api
, output_api
):
373 """Checks to make sure we don't introduce use of foo ? true : false."""
375 pattern
= input_api
.re
.compile(r
'\?\s*(true|false)\s*:\s*(true|false)')
376 for f
in input_api
.AffectedFiles():
377 if not f
.LocalPath().endswith(('.cc', '.h', '.inl', '.m', '.mm')):
380 for line_num
, line
in f
.ChangedContents():
381 if pattern
.match(line
):
382 problems
.append(' %s:%d' % (f
.LocalPath(), line_num
))
386 return [output_api
.PresubmitPromptWarning(
387 'Please consider avoiding the "? true : false" pattern if possible.\n' +
388 '\n'.join(problems
))]
391 def _CheckUnwantedDependencies(input_api
, output_api
):
392 """Runs checkdeps on #include statements added in this
393 change. Breaking - rules is an error, breaking ! rules is a
396 # We need to wait until we have an input_api object and use this
397 # roundabout construct to import checkdeps because this file is
398 # eval-ed and thus doesn't have __file__.
399 original_sys_path
= sys
.path
401 sys
.path
= sys
.path
+ [input_api
.os_path
.join(
402 input_api
.PresubmitLocalPath(), 'tools', 'checkdeps')]
404 from cpp_checker
import CppChecker
405 from rules
import Rule
407 # Restore sys.path to what it was before.
408 sys
.path
= original_sys_path
411 for f
in input_api
.AffectedFiles():
412 if not CppChecker
.IsCppFile(f
.LocalPath()):
415 changed_lines
= [line
for line_num
, line
in f
.ChangedContents()]
416 added_includes
.append([f
.LocalPath(), changed_lines
])
418 deps_checker
= checkdeps
.DepsChecker()
420 error_descriptions
= []
421 warning_descriptions
= []
422 for path
, rule_type
, rule_description
in deps_checker
.CheckAddedCppIncludes(
424 description_with_path
= '%s\n %s' % (path
, rule_description
)
425 if rule_type
== Rule
.DISALLOW
:
426 error_descriptions
.append(description_with_path
)
428 warning_descriptions
.append(description_with_path
)
431 if error_descriptions
:
432 results
.append(output_api
.PresubmitError(
433 'You added one or more #includes that violate checkdeps rules.',
435 if warning_descriptions
:
436 results
.append(output_api
.PresubmitPromptOrNotify(
437 'You added one or more #includes of files that are temporarily\n'
438 'allowed but being removed. Can you avoid introducing the\n'
439 '#include? See relevant DEPS file(s) for details and contacts.',
440 warning_descriptions
))
444 def _CheckFilePermissions(input_api
, output_api
):
445 """Check that all files have their permissions properly set."""
446 args
= [sys
.executable
, 'tools/checkperms/checkperms.py', '--root',
447 input_api
.change
.RepositoryRoot()]
448 for f
in input_api
.AffectedFiles():
449 args
+= ['--file', f
.LocalPath()]
451 (errors
, stderrdata
) = subprocess
.Popen(args
).communicate()
455 results
.append(output_api
.PresubmitError('checkperms.py failed.',
460 def _CheckNoAuraWindowPropertyHInHeaders(input_api
, output_api
):
461 """Makes sure we don't include ui/aura/window_property.h
464 pattern
= input_api
.re
.compile(r
'^#include\s*"ui/aura/window_property.h"')
466 for f
in input_api
.AffectedFiles():
467 if not f
.LocalPath().endswith('.h'):
469 for line_num
, line
in f
.ChangedContents():
470 if pattern
.match(line
):
471 errors
.append(' %s:%d' % (f
.LocalPath(), line_num
))
475 results
.append(output_api
.PresubmitError(
476 'Header files should not include ui/aura/window_property.h', errors
))
480 def _CheckIncludeOrderForScope(scope
, input_api
, file_path
, changed_linenums
):
481 """Checks that the lines in scope occur in the right order.
483 1. C system files in alphabetical order
484 2. C++ system files in alphabetical order
485 3. Project's .h files
488 c_system_include_pattern
= input_api
.re
.compile(r
'\s*#include <.*\.h>')
489 cpp_system_include_pattern
= input_api
.re
.compile(r
'\s*#include <.*>')
490 custom_include_pattern
= input_api
.re
.compile(r
'\s*#include ".*')
492 C_SYSTEM_INCLUDES
, CPP_SYSTEM_INCLUDES
, CUSTOM_INCLUDES
= range(3)
494 state
= C_SYSTEM_INCLUDES
497 previous_line_num
= 0
498 problem_linenums
= []
499 for line_num
, line
in scope
:
500 if c_system_include_pattern
.match(line
):
501 if state
!= C_SYSTEM_INCLUDES
:
502 problem_linenums
.append((line_num
, previous_line_num
))
503 elif previous_line
and previous_line
> line
:
504 problem_linenums
.append((line_num
, previous_line_num
))
505 elif cpp_system_include_pattern
.match(line
):
506 if state
== C_SYSTEM_INCLUDES
:
507 state
= CPP_SYSTEM_INCLUDES
508 elif state
== CUSTOM_INCLUDES
:
509 problem_linenums
.append((line_num
, previous_line_num
))
510 elif previous_line
and previous_line
> line
:
511 problem_linenums
.append((line_num
, previous_line_num
))
512 elif custom_include_pattern
.match(line
):
513 if state
!= CUSTOM_INCLUDES
:
514 state
= CUSTOM_INCLUDES
515 elif previous_line
and previous_line
> line
:
516 problem_linenums
.append((line_num
, previous_line_num
))
518 problem_linenums
.append(line_num
)
520 previous_line_num
= line_num
523 for (line_num
, previous_line_num
) in problem_linenums
:
524 if line_num
in changed_linenums
or previous_line_num
in changed_linenums
:
525 warnings
.append(' %s:%d' % (file_path
, line_num
))
529 def _CheckIncludeOrderInFile(input_api
, f
, changed_linenums
):
530 """Checks the #include order for the given file f."""
532 system_include_pattern
= input_api
.re
.compile(r
'\s*#include \<.*')
533 # Exclude #include <.../...> includes from the check; e.g., <sys/...> includes
534 # often need to appear in a specific order.
535 excluded_include_pattern
= input_api
.re
.compile(r
'\s*#include \<.*/.*')
536 custom_include_pattern
= input_api
.re
.compile(r
'\s*#include "(?P<FILE>.*)"')
537 if_pattern
= input_api
.re
.compile(
538 r
'\s*#\s*(if|elif|else|endif|define|undef).*')
539 # Some files need specialized order of includes; exclude such files from this
541 uncheckable_includes_pattern
= input_api
.re
.compile(
543 '("ipc/.*macros\.h"|<windows\.h>|".*gl.*autogen.h")\s*')
545 contents
= f
.NewContents()
549 # Handle the special first include. If the first include file is
550 # some/path/file.h, the corresponding including file can be some/path/file.cc,
551 # some/other/path/file.cc, some/path/file_platform.cc, some/path/file-suffix.h
552 # etc. It's also possible that no special first include exists.
553 for line
in contents
:
555 if system_include_pattern
.match(line
):
556 # No special first include -> process the line again along with normal
560 match
= custom_include_pattern
.match(line
)
562 match_dict
= match
.groupdict()
563 header_basename
= input_api
.os_path
.basename(
564 match_dict
['FILE']).replace('.h', '')
565 if header_basename
not in input_api
.os_path
.basename(f
.LocalPath()):
566 # No special first include -> process the line again along with normal
571 # Split into scopes: Each region between #if and #endif is its own scope.
574 for line
in contents
[line_num
:]:
576 if uncheckable_includes_pattern
.match(line
):
578 if if_pattern
.match(line
):
579 scopes
.append(current_scope
)
581 elif ((system_include_pattern
.match(line
) or
582 custom_include_pattern
.match(line
)) and
583 not excluded_include_pattern
.match(line
)):
584 current_scope
.append((line_num
, line
))
585 scopes
.append(current_scope
)
588 warnings
.extend(_CheckIncludeOrderForScope(scope
, input_api
, f
.LocalPath(),
593 def _CheckIncludeOrder(input_api
, output_api
):
594 """Checks that the #include order is correct.
596 1. The corresponding header for source files.
597 2. C system files in alphabetical order
598 3. C++ system files in alphabetical order
599 4. Project's .h files in alphabetical order
601 Each region separated by #if, #elif, #else, #endif, #define and #undef follows
602 these rules separately.
606 for f
in input_api
.AffectedFiles():
607 if f
.LocalPath().endswith(('.cc', '.h')):
608 changed_linenums
= set(line_num
for line_num
, _
in f
.ChangedContents())
609 warnings
.extend(_CheckIncludeOrderInFile(input_api
, f
, changed_linenums
))
613 results
.append(output_api
.PresubmitPromptOrNotify(_INCLUDE_ORDER_WARNING
,
618 def _CheckForVersionControlConflictsInFile(input_api
, f
):
619 pattern
= input_api
.re
.compile('^(?:<<<<<<<|>>>>>>>) |^=======$')
621 for line_num
, line
in f
.ChangedContents():
622 if pattern
.match(line
):
623 errors
.append(' %s:%d %s' % (f
.LocalPath(), line_num
, line
))
627 def _CheckForVersionControlConflicts(input_api
, output_api
):
628 """Usually this is not intentional and will cause a compile failure."""
630 for f
in input_api
.AffectedFiles():
631 errors
.extend(_CheckForVersionControlConflictsInFile(input_api
, f
))
635 results
.append(output_api
.PresubmitError(
636 'Version control conflict markers found, please resolve.', errors
))
640 def _CheckHardcodedGoogleHostsInLowerLayers(input_api
, output_api
):
641 def FilterFile(affected_file
):
642 """Filter function for use with input_api.AffectedSourceFiles,
643 below. This filters out everything except non-test files from
644 top-level directories that generally speaking should not hard-code
645 service URLs (e.g. src/android_webview/, src/content/ and others).
647 return input_api
.FilterSourceFile(
649 white_list
=(r
'^(android_webview|base|content|net)[\\\/].*', ),
650 black_list
=(_EXCLUDED_PATHS
+
651 _TEST_CODE_EXCLUDED_PATHS
+
652 input_api
.DEFAULT_BLACK_LIST
))
654 pattern
= input_api
.re
.compile('"[^"]*google\.com[^"]*"')
655 problems
= [] # items are (filename, line_number, line)
656 for f
in input_api
.AffectedSourceFiles(FilterFile
):
657 for line_num
, line
in f
.ChangedContents():
658 if pattern
.search(line
):
659 problems
.append((f
.LocalPath(), line_num
, line
))
662 return [output_api
.PresubmitPromptOrNotify(
663 'Most layers below src/chrome/ should not hardcode service URLs.\n'
664 'Are you sure this is correct? (Contact: joi@chromium.org)',
666 problem
[0], problem
[1], problem
[2]) for problem
in problems
])]
671 def _CheckNoAbbreviationInPngFileName(input_api
, output_api
):
672 """Makes sure there are no abbreviations in the name of PNG files.
674 pattern
= input_api
.re
.compile(r
'.*_[a-z]_.*\.png$|.*_[a-z]\.png$')
676 for f
in input_api
.AffectedFiles(include_deletes
=False):
677 if pattern
.match(f
.LocalPath()):
678 errors
.append(' %s' % f
.LocalPath())
682 results
.append(output_api
.PresubmitError(
683 'The name of PNG files should not have abbreviations. \n'
684 'Use _hover.png, _center.png, instead of _h.png, _c.png.\n'
685 'Contact oshima@chromium.org if you have questions.', errors
))
689 def _CommonChecks(input_api
, output_api
):
690 """Checks common to both upload and commit."""
692 results
.extend(input_api
.canned_checks
.PanProjectChecks(
693 input_api
, output_api
, excluded_paths
=_EXCLUDED_PATHS
))
694 results
.extend(_CheckAuthorizedAuthor(input_api
, output_api
))
696 _CheckNoProductionCodeUsingTestOnlyFunctions(input_api
, output_api
))
697 results
.extend(_CheckNoIOStreamInHeaders(input_api
, output_api
))
698 results
.extend(_CheckNoUNIT_TESTInSourceFiles(input_api
, output_api
))
699 results
.extend(_CheckNoNewWStrings(input_api
, output_api
))
700 results
.extend(_CheckNoDEPSGIT(input_api
, output_api
))
701 results
.extend(_CheckNoBannedFunctions(input_api
, output_api
))
702 results
.extend(_CheckNoPragmaOnce(input_api
, output_api
))
703 results
.extend(_CheckNoTrinaryTrueFalse(input_api
, output_api
))
704 results
.extend(_CheckUnwantedDependencies(input_api
, output_api
))
705 results
.extend(_CheckFilePermissions(input_api
, output_api
))
706 results
.extend(_CheckNoAuraWindowPropertyHInHeaders(input_api
, output_api
))
707 results
.extend(_CheckIncludeOrder(input_api
, output_api
))
708 results
.extend(_CheckForVersionControlConflicts(input_api
, output_api
))
709 results
.extend(_CheckPatchFiles(input_api
, output_api
))
710 results
.extend(_CheckHardcodedGoogleHostsInLowerLayers(input_api
, output_api
))
711 results
.extend(_CheckNoAbbreviationInPngFileName(input_api
, output_api
))
712 results
.extend(_CheckForInvalidOSMacros(input_api
, output_api
))
714 if any('PRESUBMIT.py' == f
.LocalPath() for f
in input_api
.AffectedFiles()):
715 results
.extend(input_api
.canned_checks
.RunUnitTestsInDirectory(
716 input_api
, output_api
,
717 input_api
.PresubmitLocalPath(),
718 whitelist
=[r
'^PRESUBMIT_test\.py$']))
722 def _CheckSubversionConfig(input_api
, output_api
):
723 """Verifies the subversion config file is correctly setup.
725 Checks that autoprops are enabled, returns an error otherwise.
727 join
= input_api
.os_path
.join
728 if input_api
.platform
== 'win32':
729 appdata
= input_api
.environ
.get('APPDATA', '')
731 return [output_api
.PresubmitError('%APPDATA% is not configured.')]
732 path
= join(appdata
, 'Subversion', 'config')
734 home
= input_api
.environ
.get('HOME', '')
736 return [output_api
.PresubmitError('$HOME is not configured.')]
737 path
= join(home
, '.subversion', 'config')
740 'Please look at http://dev.chromium.org/developers/coding-style to\n'
741 'configure your subversion configuration file. This enables automatic\n'
742 'properties to simplify the project maintenance.\n'
743 'Pro-tip: just download and install\n'
744 'http://src.chromium.org/viewvc/chrome/trunk/tools/build/slave/config\n')
747 lines
= open(path
, 'r').read().splitlines()
748 # Make sure auto-props is enabled and check for 2 Chromium standard
750 if (not '*.cc = svn:eol-style=LF' in lines
or
751 not '*.pdf = svn:mime-type=application/pdf' in lines
or
752 not 'enable-auto-props = yes' in lines
):
754 output_api
.PresubmitNotifyResult(
755 'It looks like you have not configured your subversion config '
756 'file or it is not up-to-date.\n' + error_msg
)
758 except (OSError, IOError):
760 output_api
.PresubmitNotifyResult(
761 'Can\'t find your subversion config file.\n' + error_msg
)
766 def _CheckAuthorizedAuthor(input_api
, output_api
):
767 """For non-googler/chromites committers, verify the author's email address is
770 # TODO(maruel): Add it to input_api?
773 author
= input_api
.change
.author_email
775 input_api
.logging
.info('No author, skipping AUTHOR check')
777 authors_path
= input_api
.os_path
.join(
778 input_api
.PresubmitLocalPath(), 'AUTHORS')
780 input_api
.re
.match(r
'[^#]+\s+\<(.+?)\>\s*$', line
)
781 for line
in open(authors_path
))
782 valid_authors
= [item
.group(1).lower() for item
in valid_authors
if item
]
783 if not any(fnmatch
.fnmatch(author
.lower(), valid
) for valid
in valid_authors
):
784 input_api
.logging
.info('Valid authors are %s', ', '.join(valid_authors
))
785 return [output_api
.PresubmitPromptWarning(
786 ('%s is not in AUTHORS file. If you are a new contributor, please visit'
788 'http://www.chromium.org/developers/contributing-code and read the '
790 'If you are a chromite, verify the contributor signed the CLA.') %
795 def _CheckPatchFiles(input_api
, output_api
):
796 problems
= [f
.LocalPath() for f
in input_api
.AffectedFiles()
797 if f
.LocalPath().endswith(('.orig', '.rej'))]
799 return [output_api
.PresubmitError(
800 "Don't commit .rej and .orig files.", problems
)]
805 def _DidYouMeanOSMacro(bad_macro
):
807 return {'A': 'OS_ANDROID',
817 'W': 'OS_WIN'}[bad_macro
[3].upper()]
822 def _CheckForInvalidOSMacrosInFile(input_api
, f
):
823 """Check for sensible looking, totally invalid OS macros."""
824 preprocessor_statement
= input_api
.re
.compile(r
'^\s*#')
825 os_macro
= input_api
.re
.compile(r
'defined\((OS_[^)]+)\)')
827 for lnum
, line
in f
.ChangedContents():
828 if preprocessor_statement
.search(line
):
829 for match
in os_macro
.finditer(line
):
830 if not match
.group(1) in _VALID_OS_MACROS
:
831 good
= _DidYouMeanOSMacro(match
.group(1))
832 did_you_mean
= ' (did you mean %s?)' % good
if good
else ''
833 results
.append(' %s:%d %s%s' % (f
.LocalPath(),
840 def _CheckForInvalidOSMacros(input_api
, output_api
):
841 """Check all affected files for invalid OS macros."""
843 for f
in input_api
.AffectedFiles():
844 if not f
.LocalPath().endswith(('.py', '.js', '.html', '.css')):
845 bad_macros
.extend(_CheckForInvalidOSMacrosInFile(input_api
, f
))
850 return [output_api
.PresubmitError(
851 'Possibly invalid OS macro[s] found. Please fix your code\n'
852 'or add your macro to src/PRESUBMIT.py.', bad_macros
)]
855 def CheckChangeOnUpload(input_api
, output_api
):
857 results
.extend(_CommonChecks(input_api
, output_api
))
861 def CheckChangeOnCommit(input_api
, output_api
):
863 results
.extend(_CommonChecks(input_api
, output_api
))
864 # TODO(thestig) temporarily disabled, doesn't work in third_party/
865 #results.extend(input_api.canned_checks.CheckSvnModifiedDirectories(
866 # input_api, output_api, sources))
867 # Make sure the tree is 'open'.
868 results
.extend(input_api
.canned_checks
.CheckTreeIsOpen(
871 json_url
='http://chromium-status.appspot.com/current?format=json'))
872 results
.extend(input_api
.canned_checks
.CheckRietveldTryJobExecution(input_api
,
873 output_api
, 'http://codereview.chromium.org',
874 ('win_rel', 'linux_rel', 'mac_rel, win:compile'),
875 'tryserver@chromium.org'))
877 results
.extend(input_api
.canned_checks
.CheckChangeHasBugField(
878 input_api
, output_api
))
879 results
.extend(input_api
.canned_checks
.CheckChangeHasDescription(
880 input_api
, output_api
))
881 results
.extend(_CheckSubversionConfig(input_api
, output_api
))
885 def GetPreferredTrySlaves(project
, change
):
886 files
= change
.LocalPaths()
888 if not files
or all(re
.search(r
'[\\/]OWNERS$', f
) for f
in files
):
891 if all(re
.search('\.(m|mm)$|(^|[/_])mac[/_.]', f
) for f
in files
):
892 return ['mac_rel', 'mac_asan', 'mac:compile']
893 if all(re
.search('(^|[/_])win[/_.]', f
) for f
in files
):
894 return ['win_rel', 'win7_aura', 'win:compile']
895 if all(re
.search('(^|[/_])android[/_.]', f
) for f
in files
):
896 return ['android_dbg', 'android_clang_dbg']
897 if all(re
.search('^native_client_sdk', f
) for f
in files
):
898 return ['linux_nacl_sdk', 'win_nacl_sdk', 'mac_nacl_sdk']
899 if all(re
.search('[/_]ios[/_.]', f
) for f
in files
):
900 return ['ios_rel_device', 'ios_dbg_simulator']
910 'linux_clang:compile',
920 # Match things like path/aura/file.cc and path/file_aura.cc.
922 if any(re
.search('[/_](aura|chromeos)', f
) for f
in files
):
923 trybots
+= ['linux_chromeos_clang:compile', 'linux_chromeos_asan']