Update Swarm DEPS
[chromium-blink-merge.git] / PRESUBMIT.py
blob4ddc09fcf46ae5ef92e44849298d29190a0af753
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$",
32 _TEST_ONLY_WARNING = (
33 'You might be calling functions intended only for testing from\n'
34 'production code. It is OK to ignore this warning if you know what\n'
35 'you are doing, as the heuristics used to detect the situation are\n'
36 'not perfect. The commit queue will not block on this warning.\n'
37 'Email joi@chromium.org if you have questions.')
40 _INCLUDE_ORDER_WARNING = (
41 'Your #include order seems to be broken. Send mail to\n'
42 'marja@chromium.org if this is not the case.')
45 _BANNED_OBJC_FUNCTIONS = (
47 'addTrackingRect:',
49 'The use of -[NSView addTrackingRect:owner:userData:assumeInside:] is'
50 'prohibited. Please use CrTrackingArea instead.',
51 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
53 False,
56 'NSTrackingArea',
58 'The use of NSTrackingAreas is prohibited. Please use CrTrackingArea',
59 'instead.',
60 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
62 False,
65 'convertPointFromBase:',
67 'The use of -[NSView convertPointFromBase:] is almost certainly wrong.',
68 'Please use |convertPoint:(point) fromView:nil| instead.',
69 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
71 True,
74 'convertPointToBase:',
76 'The use of -[NSView convertPointToBase:] is almost certainly wrong.',
77 'Please use |convertPoint:(point) toView:nil| instead.',
78 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
80 True,
83 'convertRectFromBase:',
85 'The use of -[NSView convertRectFromBase:] is almost certainly wrong.',
86 'Please use |convertRect:(point) fromView:nil| instead.',
87 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
89 True,
92 'convertRectToBase:',
94 'The use of -[NSView convertRectToBase:] is almost certainly wrong.',
95 'Please use |convertRect:(point) toView:nil| instead.',
96 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
98 True,
101 'convertSizeFromBase:',
103 'The use of -[NSView convertSizeFromBase:] is almost certainly wrong.',
104 'Please use |convertSize:(point) fromView:nil| instead.',
105 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
107 True,
110 'convertSizeToBase:',
112 'The use of -[NSView convertSizeToBase:] is almost certainly wrong.',
113 'Please use |convertSize:(point) toView:nil| instead.',
114 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
116 True,
121 _BANNED_CPP_FUNCTIONS = (
122 # Make sure that gtest's FRIEND_TEST() macro is not used; the
123 # FRIEND_TEST_ALL_PREFIXES() macro from base/gtest_prod_util.h should be
124 # used instead since that allows for FLAKY_ and DISABLED_ prefixes.
126 'FRIEND_TEST(',
128 'Chromium code should not use gtest\'s FRIEND_TEST() macro. Include',
129 'base/gtest_prod_util.h and use FRIEND_TEST_ALL_PREFIXES() instead.',
131 False,
134 'ScopedAllowIO',
136 'New code should not use ScopedAllowIO. Post a task to the blocking',
137 'pool or the FILE thread instead.',
139 True,
142 'FilePathWatcher::Delegate',
144 'New code should not use FilePathWatcher::Delegate. Use the callback',
145 'interface instead.',
147 False,
150 'chrome::FindLastActiveWithProfile',
152 'This function is deprecated and we\'re working on removing it. Pass',
153 'more context to get a Browser*, like a WebContents, window, or session',
154 'id. Talk to robertshield@ for more information.',
156 True,
159 'browser::FindAnyBrowser',
161 'This function is deprecated and we\'re working on removing it. Pass',
162 'more context to get a Browser*, like a WebContents, window, or session',
163 'id. Talk to robertshield@ for more information.',
165 True,
168 'browser::FindOrCreateTabbedBrowser',
170 'This function is deprecated and we\'re working on removing it. Pass',
171 'more context to get a Browser*, like a WebContents, window, or session',
172 'id. Talk to robertshield@ for more information.',
174 True,
177 'browser::FindTabbedBrowserDeprecated',
179 'This function is deprecated and we\'re working on removing it. Pass',
180 'more context to get a Browser*, like a WebContents, window, or session',
181 'id. Talk to robertshield@ for more information.',
183 True,
186 'RunAllPending()',
188 'This function is deprecated and we\'re working on removing it. Rename',
189 'to RunUntilIdle',
191 True,
197 def _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api):
198 """Attempts to prevent use of functions intended only for testing in
199 non-testing code. For now this is just a best-effort implementation
200 that ignores header files and may have some false positives. A
201 better implementation would probably need a proper C++ parser.
203 # We only scan .cc files and the like, as the declaration of
204 # for-testing functions in header files are hard to distinguish from
205 # calls to such functions without a proper C++ parser.
206 platform_specifiers = r'(_(android|chromeos|gtk|mac|posix|win))?'
207 source_extensions = r'\.(cc|cpp|cxx|mm)$'
208 file_inclusion_pattern = r'.+%s' % source_extensions
209 file_exclusion_patterns = (
210 r'.*[/\\](fake_|test_|mock_).+%s' % source_extensions,
211 r'.+_test_(base|support|util)%s' % source_extensions,
212 r'.+_(api|browser|perf|unit|ui)?test%s%s' % (platform_specifiers,
213 source_extensions),
214 r'.+profile_sync_service_harness%s' % source_extensions,
216 path_exclusion_patterns = (
217 r'.*[/\\](test|tool(s)?)[/\\].*',
218 # At request of folks maintaining this folder.
219 r'chrome[/\\]browser[/\\]automation[/\\].*',
222 base_function_pattern = r'ForTest(ing)?|for_test(ing)?'
223 inclusion_pattern = input_api.re.compile(r'(%s)\s*\(' % base_function_pattern)
224 exclusion_pattern = input_api.re.compile(
225 r'::[A-Za-z0-9_]+(%s)|(%s)[^;]+\{' % (
226 base_function_pattern, base_function_pattern))
228 def FilterFile(affected_file):
229 black_list = (file_exclusion_patterns + path_exclusion_patterns +
230 _EXCLUDED_PATHS + input_api.DEFAULT_BLACK_LIST)
231 return input_api.FilterSourceFile(
232 affected_file,
233 white_list=(file_inclusion_pattern, ),
234 black_list=black_list)
236 problems = []
237 for f in input_api.AffectedSourceFiles(FilterFile):
238 local_path = f.LocalPath()
239 lines = input_api.ReadFile(f).splitlines()
240 line_number = 0
241 for line in lines:
242 if (inclusion_pattern.search(line) and
243 not exclusion_pattern.search(line)):
244 problems.append(
245 '%s:%d\n %s' % (local_path, line_number, line.strip()))
246 line_number += 1
248 if problems:
249 if not input_api.is_committing:
250 return [output_api.PresubmitPromptWarning(_TEST_ONLY_WARNING, problems)]
251 else:
252 # We don't warn on commit, to avoid stopping commits going through CQ.
253 return [output_api.PresubmitNotifyResult(_TEST_ONLY_WARNING, problems)]
254 else:
255 return []
258 def _CheckNoIOStreamInHeaders(input_api, output_api):
259 """Checks to make sure no .h files include <iostream>."""
260 files = []
261 pattern = input_api.re.compile(r'^#include\s*<iostream>',
262 input_api.re.MULTILINE)
263 for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
264 if not f.LocalPath().endswith('.h'):
265 continue
266 contents = input_api.ReadFile(f)
267 if pattern.search(contents):
268 files.append(f)
270 if len(files):
271 return [ output_api.PresubmitError(
272 'Do not #include <iostream> in header files, since it inserts static '
273 'initialization into every file including the header. Instead, '
274 '#include <ostream>. See http://crbug.com/94794',
275 files) ]
276 return []
279 def _CheckNoUNIT_TESTInSourceFiles(input_api, output_api):
280 """Checks to make sure no source files use UNIT_TEST"""
281 problems = []
282 for f in input_api.AffectedFiles():
283 if (not f.LocalPath().endswith(('.cc', '.mm'))):
284 continue
286 for line_num, line in f.ChangedContents():
287 if 'UNIT_TEST' in line:
288 problems.append(' %s:%d' % (f.LocalPath(), line_num))
290 if not problems:
291 return []
292 return [output_api.PresubmitPromptWarning('UNIT_TEST is only for headers.\n' +
293 '\n'.join(problems))]
296 def _CheckNoNewWStrings(input_api, output_api):
297 """Checks to make sure we don't introduce use of wstrings."""
298 problems = []
299 for f in input_api.AffectedFiles():
300 if (not f.LocalPath().endswith(('.cc', '.h')) or
301 f.LocalPath().endswith('test.cc')):
302 continue
304 allowWString = False
305 for line_num, line in f.ChangedContents():
306 if 'presubmit: allow wstring' in line:
307 allowWString = True
308 elif not allowWString and 'wstring' in line:
309 problems.append(' %s:%d' % (f.LocalPath(), line_num))
310 allowWString = False
311 else:
312 allowWString = False
314 if not problems:
315 return []
316 return [output_api.PresubmitPromptWarning('New code should not use wstrings.'
317 ' If you are calling a cross-platform API that accepts a wstring, '
318 'fix the API.\n' +
319 '\n'.join(problems))]
322 def _CheckNoDEPSGIT(input_api, output_api):
323 """Make sure .DEPS.git is never modified manually."""
324 if any(f.LocalPath().endswith('.DEPS.git') for f in
325 input_api.AffectedFiles()):
326 return [output_api.PresubmitError(
327 'Never commit changes to .DEPS.git. This file is maintained by an\n'
328 'automated system based on what\'s in DEPS and your changes will be\n'
329 'overwritten.\n'
330 'See http://code.google.com/p/chromium/wiki/UsingNewGit#Rolling_DEPS\n'
331 'for more information')]
332 return []
335 def _CheckNoBannedFunctions(input_api, output_api):
336 """Make sure that banned functions are not used."""
337 warnings = []
338 errors = []
340 file_filter = lambda f: f.LocalPath().endswith(('.mm', '.m', '.h'))
341 for f in input_api.AffectedFiles(file_filter=file_filter):
342 for line_num, line in f.ChangedContents():
343 for func_name, message, error in _BANNED_OBJC_FUNCTIONS:
344 if func_name in line:
345 problems = warnings;
346 if error:
347 problems = errors;
348 problems.append(' %s:%d:' % (f.LocalPath(), line_num))
349 for message_line in message:
350 problems.append(' %s' % message_line)
352 file_filter = lambda f: f.LocalPath().endswith(('.cc', '.mm', '.h'))
353 for f in input_api.AffectedFiles(file_filter=file_filter):
354 for line_num, line in f.ChangedContents():
355 for func_name, message, error in _BANNED_CPP_FUNCTIONS:
356 if func_name in line:
357 problems = warnings;
358 if error:
359 problems = errors;
360 problems.append(' %s:%d:' % (f.LocalPath(), line_num))
361 for message_line in message:
362 problems.append(' %s' % message_line)
364 result = []
365 if (warnings):
366 result.append(output_api.PresubmitPromptWarning(
367 'Banned functions were used.\n' + '\n'.join(warnings)))
368 if (errors):
369 result.append(output_api.PresubmitError(
370 'Banned functions were used.\n' + '\n'.join(errors)))
371 return result
374 def _CheckNoPragmaOnce(input_api, output_api):
375 """Make sure that banned functions are not used."""
376 files = []
377 pattern = input_api.re.compile(r'^#pragma\s+once',
378 input_api.re.MULTILINE)
379 for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
380 if not f.LocalPath().endswith('.h'):
381 continue
382 contents = input_api.ReadFile(f)
383 if pattern.search(contents):
384 files.append(f)
386 if files:
387 return [output_api.PresubmitError(
388 'Do not use #pragma once in header files.\n'
389 'See http://www.chromium.org/developers/coding-style#TOC-File-headers',
390 files)]
391 return []
394 def _CheckNoTrinaryTrueFalse(input_api, output_api):
395 """Checks to make sure we don't introduce use of foo ? true : false."""
396 problems = []
397 pattern = input_api.re.compile(r'\?\s*(true|false)\s*:\s*(true|false)')
398 for f in input_api.AffectedFiles():
399 if not f.LocalPath().endswith(('.cc', '.h', '.inl', '.m', '.mm')):
400 continue
402 for line_num, line in f.ChangedContents():
403 if pattern.match(line):
404 problems.append(' %s:%d' % (f.LocalPath(), line_num))
406 if not problems:
407 return []
408 return [output_api.PresubmitPromptWarning(
409 'Please consider avoiding the "? true : false" pattern if possible.\n' +
410 '\n'.join(problems))]
413 def _CheckUnwantedDependencies(input_api, output_api):
414 """Runs checkdeps on #include statements added in this
415 change. Breaking - rules is an error, breaking ! rules is a
416 warning.
418 # We need to wait until we have an input_api object and use this
419 # roundabout construct to import checkdeps because this file is
420 # eval-ed and thus doesn't have __file__.
421 original_sys_path = sys.path
422 try:
423 sys.path = sys.path + [input_api.os_path.join(
424 input_api.PresubmitLocalPath(), 'tools', 'checkdeps')]
425 import checkdeps
426 from cpp_checker import CppChecker
427 from rules import Rule
428 finally:
429 # Restore sys.path to what it was before.
430 sys.path = original_sys_path
432 added_includes = []
433 for f in input_api.AffectedFiles():
434 if not CppChecker.IsCppFile(f.LocalPath()):
435 continue
437 changed_lines = [line for line_num, line in f.ChangedContents()]
438 added_includes.append([f.LocalPath(), changed_lines])
440 deps_checker = checkdeps.DepsChecker()
442 error_descriptions = []
443 warning_descriptions = []
444 for path, rule_type, rule_description in deps_checker.CheckAddedCppIncludes(
445 added_includes):
446 description_with_path = '%s\n %s' % (path, rule_description)
447 if rule_type == Rule.DISALLOW:
448 error_descriptions.append(description_with_path)
449 else:
450 warning_descriptions.append(description_with_path)
452 results = []
453 if error_descriptions:
454 results.append(output_api.PresubmitError(
455 'You added one or more #includes that violate checkdeps rules.',
456 error_descriptions))
457 if warning_descriptions:
458 if not input_api.is_committing:
459 warning_factory = output_api.PresubmitPromptWarning
460 else:
461 # We don't want to block use of the CQ when there is a warning
462 # of this kind, so we only show a message when committing.
463 warning_factory = output_api.PresubmitNotifyResult
464 results.append(warning_factory(
465 'You added one or more #includes of files that are temporarily\n'
466 'allowed but being removed. Can you avoid introducing the\n'
467 '#include? See relevant DEPS file(s) for details and contacts.',
468 warning_descriptions))
469 return results
472 def _CheckFilePermissions(input_api, output_api):
473 """Check that all files have their permissions properly set."""
474 args = [sys.executable, 'tools/checkperms/checkperms.py', '--root',
475 input_api.change.RepositoryRoot()]
476 for f in input_api.AffectedFiles():
477 args += ['--file', f.LocalPath()]
478 errors = []
479 (errors, stderrdata) = subprocess.Popen(args).communicate()
481 results = []
482 if errors:
483 results.append(output_api.PresubmitError('checkperms.py failed.',
484 errors))
485 return results
488 def _CheckNoAuraWindowPropertyHInHeaders(input_api, output_api):
489 """Makes sure we don't include ui/aura/window_property.h
490 in header files.
492 pattern = input_api.re.compile(r'^#include\s*"ui/aura/window_property.h"')
493 errors = []
494 for f in input_api.AffectedFiles():
495 if not f.LocalPath().endswith('.h'):
496 continue
497 for line_num, line in f.ChangedContents():
498 if pattern.match(line):
499 errors.append(' %s:%d' % (f.LocalPath(), line_num))
501 results = []
502 if errors:
503 results.append(output_api.PresubmitError(
504 'Header files should not include ui/aura/window_property.h', errors))
505 return results
508 def _CheckIncludeOrderForScope(scope, input_api, file_path, changed_linenums):
509 """Checks that the lines in scope occur in the right order.
511 1. C system files in alphabetical order
512 2. C++ system files in alphabetical order
513 3. Project's .h files
516 c_system_include_pattern = input_api.re.compile(r'\s*#include <.*\.h>')
517 cpp_system_include_pattern = input_api.re.compile(r'\s*#include <.*>')
518 custom_include_pattern = input_api.re.compile(r'\s*#include ".*')
520 C_SYSTEM_INCLUDES, CPP_SYSTEM_INCLUDES, CUSTOM_INCLUDES = range(3)
522 state = C_SYSTEM_INCLUDES
524 previous_line = ''
525 problem_linenums = []
526 for line_num, line in scope:
527 if c_system_include_pattern.match(line):
528 if state != C_SYSTEM_INCLUDES:
529 problem_linenums.append(line_num)
530 elif previous_line and previous_line > line:
531 problem_linenums.append(line_num)
532 elif cpp_system_include_pattern.match(line):
533 if state == C_SYSTEM_INCLUDES:
534 state = CPP_SYSTEM_INCLUDES
535 elif state == CUSTOM_INCLUDES:
536 problem_linenums.append(line_num)
537 elif previous_line and previous_line > line:
538 problem_linenums.append(line_num)
539 elif custom_include_pattern.match(line):
540 if state != CUSTOM_INCLUDES:
541 state = CUSTOM_INCLUDES
542 elif previous_line and previous_line > line:
543 problem_linenums.append(line_num)
544 else:
545 problem_linenums.append(line_num)
546 previous_line = line
548 warnings = []
549 for line_num in problem_linenums:
550 if line_num in changed_linenums or line_num - 1 in changed_linenums:
551 warnings.append(' %s:%d' % (file_path, line_num))
552 return warnings
555 def _CheckIncludeOrderInFile(input_api, output_api, f, is_source,
556 changed_linenums):
557 """Checks the #include order for the given file f."""
559 include_pattern = input_api.re.compile(r'\s*#include.*')
560 if_pattern = input_api.re.compile(r'\s*#if.*')
561 endif_pattern = input_api.re.compile(r'\s*#endif.*')
563 contents = f.NewContents()
564 warnings = []
565 line_num = 0
567 # Handle the special first include for source files.
568 if is_source:
569 for line in contents:
570 line_num += 1
571 if include_pattern.match(line):
572 expected = '#include "%s"' % f.LocalPath().replace('.cc', '.h')
573 if line != expected:
574 # Maybe there was no special first include, and that's fine. Process
575 # the line again along with the normal includes.
576 line_num -= 1
577 break
579 # Split into scopes: Each region between #if and #endif is its own scope.
580 scopes = []
581 current_scope = []
582 for line in contents[line_num:]:
583 line_num += 1
584 if if_pattern.match(line) or endif_pattern.match(line):
585 scopes.append(current_scope)
586 current_scope = []
587 elif include_pattern.match(line):
588 current_scope.append((line_num, line))
589 scopes.append(current_scope)
591 for scope in scopes:
592 warnings.extend(_CheckIncludeOrderForScope(scope, input_api, f.LocalPath(),
593 changed_linenums))
594 return warnings
597 def _CheckIncludeOrder(input_api, output_api):
598 """Checks that the #include order is correct.
600 1. The corresponding header for source files.
601 2. C system files in alphabetical order
602 3. C++ system files in alphabetical order
603 4. Project's .h files in alphabetical order
605 Each region between #if and #endif follows these rules separately.
608 warnings = []
609 for f in input_api.AffectedFiles():
610 changed_linenums = set([line_num for line_num, _ in f.ChangedContents()])
611 if f.LocalPath().endswith('.cc'):
612 warnings = _CheckIncludeOrderInFile(input_api, output_api, f, True,
613 changed_linenums)
614 elif f.LocalPath().endswith('.h'):
615 warnings = _CheckIncludeOrderInFile(input_api, output_api, f, False,
616 changed_linenums)
618 results = []
619 if warnings:
620 results.append(output_api.PresubmitPromptWarning(_INCLUDE_ORDER_WARNING,
621 warnings))
622 return results
625 def _CommonChecks(input_api, output_api):
626 """Checks common to both upload and commit."""
627 results = []
628 results.extend(input_api.canned_checks.PanProjectChecks(
629 input_api, output_api, excluded_paths=_EXCLUDED_PATHS))
630 results.extend(_CheckAuthorizedAuthor(input_api, output_api))
631 results.extend(
632 _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api))
633 results.extend(_CheckNoIOStreamInHeaders(input_api, output_api))
634 results.extend(_CheckNoUNIT_TESTInSourceFiles(input_api, output_api))
635 results.extend(_CheckNoNewWStrings(input_api, output_api))
636 results.extend(_CheckNoDEPSGIT(input_api, output_api))
637 results.extend(_CheckNoBannedFunctions(input_api, output_api))
638 results.extend(_CheckNoPragmaOnce(input_api, output_api))
639 results.extend(_CheckNoTrinaryTrueFalse(input_api, output_api))
640 results.extend(_CheckUnwantedDependencies(input_api, output_api))
641 results.extend(_CheckFilePermissions(input_api, output_api))
642 results.extend(_CheckNoAuraWindowPropertyHInHeaders(input_api, output_api))
643 results.extend(_CheckIncludeOrder(input_api, output_api))
644 return results
647 def _CheckSubversionConfig(input_api, output_api):
648 """Verifies the subversion config file is correctly setup.
650 Checks that autoprops are enabled, returns an error otherwise.
652 join = input_api.os_path.join
653 if input_api.platform == 'win32':
654 appdata = input_api.environ.get('APPDATA', '')
655 if not appdata:
656 return [output_api.PresubmitError('%APPDATA% is not configured.')]
657 path = join(appdata, 'Subversion', 'config')
658 else:
659 home = input_api.environ.get('HOME', '')
660 if not home:
661 return [output_api.PresubmitError('$HOME is not configured.')]
662 path = join(home, '.subversion', 'config')
664 error_msg = (
665 'Please look at http://dev.chromium.org/developers/coding-style to\n'
666 'configure your subversion configuration file. This enables automatic\n'
667 'properties to simplify the project maintenance.\n'
668 'Pro-tip: just download and install\n'
669 'http://src.chromium.org/viewvc/chrome/trunk/tools/build/slave/config\n')
671 try:
672 lines = open(path, 'r').read().splitlines()
673 # Make sure auto-props is enabled and check for 2 Chromium standard
674 # auto-prop.
675 if (not '*.cc = svn:eol-style=LF' in lines or
676 not '*.pdf = svn:mime-type=application/pdf' in lines or
677 not 'enable-auto-props = yes' in lines):
678 return [
679 output_api.PresubmitNotifyResult(
680 'It looks like you have not configured your subversion config '
681 'file or it is not up-to-date.\n' + error_msg)
683 except (OSError, IOError):
684 return [
685 output_api.PresubmitNotifyResult(
686 'Can\'t find your subversion config file.\n' + error_msg)
688 return []
691 def _CheckAuthorizedAuthor(input_api, output_api):
692 """For non-googler/chromites committers, verify the author's email address is
693 in AUTHORS.
695 # TODO(maruel): Add it to input_api?
696 import fnmatch
698 author = input_api.change.author_email
699 if not author:
700 input_api.logging.info('No author, skipping AUTHOR check')
701 return []
702 authors_path = input_api.os_path.join(
703 input_api.PresubmitLocalPath(), 'AUTHORS')
704 valid_authors = (
705 input_api.re.match(r'[^#]+\s+\<(.+?)\>\s*$', line)
706 for line in open(authors_path))
707 valid_authors = [item.group(1).lower() for item in valid_authors if item]
708 if input_api.verbose:
709 print 'Valid authors are %s' % ', '.join(valid_authors)
710 if not any(fnmatch.fnmatch(author.lower(), valid) for valid in valid_authors):
711 return [output_api.PresubmitPromptWarning(
712 ('%s is not in AUTHORS file. If you are a new contributor, please visit'
713 '\n'
714 'http://www.chromium.org/developers/contributing-code and read the '
715 '"Legal" section\n'
716 'If you are a chromite, verify the contributor signed the CLA.') %
717 author)]
718 return []
721 def CheckChangeOnUpload(input_api, output_api):
722 results = []
723 results.extend(_CommonChecks(input_api, output_api))
724 return results
727 def CheckChangeOnCommit(input_api, output_api):
728 results = []
729 results.extend(_CommonChecks(input_api, output_api))
730 # TODO(thestig) temporarily disabled, doesn't work in third_party/
731 #results.extend(input_api.canned_checks.CheckSvnModifiedDirectories(
732 # input_api, output_api, sources))
733 # Make sure the tree is 'open'.
734 results.extend(input_api.canned_checks.CheckTreeIsOpen(
735 input_api,
736 output_api,
737 json_url='http://chromium-status.appspot.com/current?format=json'))
738 results.extend(input_api.canned_checks.CheckRietveldTryJobExecution(input_api,
739 output_api, 'http://codereview.chromium.org',
740 ('win_rel', 'linux_rel', 'mac_rel, win:compile'),
741 'tryserver@chromium.org'))
743 results.extend(input_api.canned_checks.CheckChangeHasBugField(
744 input_api, output_api))
745 results.extend(input_api.canned_checks.CheckChangeHasDescription(
746 input_api, output_api))
747 results.extend(_CheckSubversionConfig(input_api, output_api))
748 return results
751 def GetPreferredTrySlaves(project, change):
752 files = change.LocalPaths()
754 if not files:
755 return []
757 if all(re.search('\.(m|mm)$|(^|[/_])mac[/_.]', f) for f in files):
758 return ['mac_rel', 'mac_asan']
759 if all(re.search('(^|[/_])win[/_.]', f) for f in files):
760 return ['win_rel']
761 if all(re.search('(^|[/_])android[/_.]', f) for f in files):
762 return ['android_dbg', 'android_clang_dbg']
763 if all(re.search('^native_client_sdk', f) for f in files):
764 return ['linux_nacl_sdk', 'win_nacl_sdk', 'mac_nacl_sdk']
765 if all(re.search('[/_]ios[/_.]', f) for f in files):
766 return ['ios_rel_device', 'ios_dbg_simulator']
768 trybots = [
769 'android_clang_dbg',
770 'android_dbg',
771 'ios_dbg_simulator',
772 'ios_rel_device',
773 'linux_asan',
774 'linux_chromeos',
775 'linux_clang:compile',
776 'linux_rel',
777 'mac_asan',
778 'mac_rel',
779 'win_rel',
782 # Match things like path/aura/file.cc and path/file_aura.cc.
783 # Same for ash and chromeos.
784 if any(re.search('[/_](ash|aura)', f) for f in files):
785 trybots += ['linux_chromeos_clang:compile', 'win_aura',
786 'linux_chromeos_asan']
787 elif any(re.search('[/_]chromeos', f) for f in files):
788 trybots += ['linux_chromeos_clang:compile', 'linux_chromeos_asan']
790 return trybots