OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Unit tests for presubmit_support.py and presubmit_canned_checks.py.""" | 6 """Unit tests for presubmit_support.py and presubmit_canned_checks.py.""" |
7 | 7 |
8 # pylint: disable=E1101,E1103 | 8 # pylint: disable=E1101,E1103 |
9 | 9 |
10 import logging | 10 import logging |
(...skipping 1489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1500 'CheckChangeHasQaField', 'CheckChangeHasTestedField', | 1500 'CheckChangeHasQaField', 'CheckChangeHasTestedField', |
1501 'CheckChangeHasTestField', | 1501 'CheckChangeHasTestField', |
1502 'CheckChangeLintsClean', | 1502 'CheckChangeLintsClean', |
1503 'CheckChangeSvnEolStyle', | 1503 'CheckChangeSvnEolStyle', |
1504 'CheckChangeWasUploaded', | 1504 'CheckChangeWasUploaded', |
1505 'CheckDoNotSubmit', | 1505 'CheckDoNotSubmit', |
1506 'CheckDoNotSubmitInDescription', 'CheckDoNotSubmitInFiles', | 1506 'CheckDoNotSubmitInDescription', 'CheckDoNotSubmitInFiles', |
1507 'CheckLongLines', 'CheckTreeIsOpen', 'PanProjectChecks', | 1507 'CheckLongLines', 'CheckTreeIsOpen', 'PanProjectChecks', |
1508 'CheckLicense', | 1508 'CheckLicense', |
1509 'CheckOwners', | 1509 'CheckOwners', |
| 1510 'CheckIssueNotClosed', |
1510 'CheckRietveldTryJobExecution', | 1511 'CheckRietveldTryJobExecution', |
1511 'CheckSingletonInHeaders', | 1512 'CheckSingletonInHeaders', |
1512 'CheckSvnModifiedDirectories', | 1513 'CheckSvnModifiedDirectories', |
1513 'CheckSvnForCommonMimeTypes', 'CheckSvnProperty', | 1514 'CheckSvnForCommonMimeTypes', 'CheckSvnProperty', |
1514 'RunPythonUnitTests', 'RunPylint', | 1515 'RunPythonUnitTests', 'RunPylint', |
1515 'RunUnitTests', 'RunUnitTestsInDirectory', | 1516 'RunUnitTests', 'RunUnitTestsInDirectory', |
1516 ] | 1517 ] |
1517 # If this test fails, you should add the relevant test. | 1518 # If this test fails, you should add the relevant test. |
1518 self.compareMembers(presubmit_canned_checks, members) | 1519 self.compareMembers(presubmit_canned_checks, members) |
1519 | 1520 |
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2387 'directories:\n' | 2388 'directories:\n' |
2388 ' foo\n') | 2389 ' foo\n') |
2389 | 2390 |
2390 def testCannedCheckOwners_WithLGTMs(self): | 2391 def testCannedCheckOwners_WithLGTMs(self): |
2391 self.AssertOwnersWorks(approvers=set(['ben@example.com']), | 2392 self.AssertOwnersWorks(approvers=set(['ben@example.com']), |
2392 uncovered_dirs=set()) | 2393 uncovered_dirs=set()) |
2393 self.AssertOwnersWorks(approvers=set(['ben@example.com']), | 2394 self.AssertOwnersWorks(approvers=set(['ben@example.com']), |
2394 is_committing=False, | 2395 is_committing=False, |
2395 uncovered_dirs=set()) | 2396 uncovered_dirs=set()) |
2396 | 2397 |
| 2398 def IssueStateChecksBase(self, closed): |
| 2399 input_api = self.MockInputApi( |
| 2400 presubmit.Change('', '', '.', [], 0, 0, None), |
| 2401 False) |
| 2402 input_api.rietveld.get_issue_properties( |
| 2403 issue=int(input_api.change.issue), |
| 2404 messages=False).AndReturn({'closed': closed}) |
| 2405 self.mox.ReplayAll() |
| 2406 return presubmit_canned_checks.CheckIssueNotClosed( |
| 2407 input_api, |
| 2408 presubmit.OutputApi) |
| 2409 |
| 2410 def testIssueOpen(self): |
| 2411 self.assertEqual([], self.IssueStateChecksBase(closed=False)) |
| 2412 |
| 2413 def testIssueClosed(self): |
| 2414 results = self.IssueStateChecksBase(closed=True) |
| 2415 self.assertEqual(len(results), 1) |
| 2416 self.assertTrue(results[0].fatal) |
| 2417 |
2397 def testCannedRunUnitTests(self): | 2418 def testCannedRunUnitTests(self): |
2398 change = presubmit.Change( | 2419 change = presubmit.Change( |
2399 'foo1', 'description1', self.fake_root_dir, None, 0, 0, None) | 2420 'foo1', 'description1', self.fake_root_dir, None, 0, 0, None) |
2400 input_api = self.MockInputApi(change, False) | 2421 input_api = self.MockInputApi(change, False) |
2401 input_api.verbose = True | 2422 input_api.verbose = True |
2402 unit_tests = ['allo', 'bar.py'] | 2423 unit_tests = ['allo', 'bar.py'] |
2403 input_api.PresubmitLocalPath().AndReturn(self.fake_root_dir) | 2424 input_api.PresubmitLocalPath().AndReturn(self.fake_root_dir) |
2404 input_api.PresubmitLocalPath().AndReturn(self.fake_root_dir) | 2425 input_api.PresubmitLocalPath().AndReturn(self.fake_root_dir) |
2405 input_api.subprocess.check_call( | 2426 input_api.subprocess.check_call( |
2406 ['allo', '--verbose'], cwd=self.fake_root_dir) | 2427 ['allo', '--verbose'], cwd=self.fake_root_dir) |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2463 (0, 'Hey!\n'), | 2484 (0, 'Hey!\n'), |
2464 (1, 'Ho!\n'), | 2485 (1, 'Ho!\n'), |
2465 (2, 'Hey!\n'), | 2486 (2, 'Hey!\n'), |
2466 (3, 'Ho!\n'), | 2487 (3, 'Ho!\n'), |
2467 (4, '\n')]) | 2488 (4, '\n')]) |
2468 for _ in range(5): | 2489 for _ in range(5): |
2469 affected_file.LocalPath().AndReturn('hello.py') | 2490 affected_file.LocalPath().AndReturn('hello.py') |
2470 input_api.AffectedSourceFiles(mox.IgnoreArg()).AndReturn([affected_file]) | 2491 input_api.AffectedSourceFiles(mox.IgnoreArg()).AndReturn([affected_file]) |
2471 input_api.ReadFile(affected_file).AndReturn('Hey!\nHo!\nHey!\nHo!\n\n') | 2492 input_api.ReadFile(affected_file).AndReturn('Hey!\nHo!\nHey!\nHo!\n\n') |
2472 input_api.AffectedSourceFiles(mox.IgnoreArg()).AndReturn([affected_file]) | 2493 input_api.AffectedSourceFiles(mox.IgnoreArg()).AndReturn([affected_file]) |
| 2494 input_api.rietveld.get_issue_properties( |
| 2495 issue=int(input_api.change.issue), |
| 2496 messages=False).AndReturn({'closed': False}) |
2473 for _ in range(4): | 2497 for _ in range(4): |
2474 affected_file.LocalPath().AndReturn('hello.py') | 2498 affected_file.LocalPath().AndReturn('hello.py') |
2475 | 2499 |
2476 self.mox.ReplayAll() | 2500 self.mox.ReplayAll() |
2477 results = presubmit_canned_checks.PanProjectChecks( | 2501 results = presubmit_canned_checks.PanProjectChecks( |
2478 input_api, | 2502 input_api, |
2479 presubmit.OutputApi, | 2503 presubmit.OutputApi, |
2480 excluded_paths=None, | 2504 excluded_paths=None, |
2481 text_files=None, | 2505 text_files=None, |
2482 license_header=None, | 2506 license_header=None, |
2483 project_name=None, | 2507 project_name=None, |
2484 owners_check=False) | 2508 owners_check=False) |
2485 self.assertEqual(1, len(results)) | 2509 self.assertEqual(1, len(results)) |
2486 self.assertEqual( | 2510 self.assertEqual( |
2487 'Found line ending with white spaces in:', results[0]._message) | 2511 'Found line ending with white spaces in:', results[0]._message) |
2488 self.checkstdout('') | 2512 self.checkstdout('') |
2489 | 2513 |
2490 | 2514 |
2491 if __name__ == '__main__': | 2515 if __name__ == '__main__': |
2492 import unittest | 2516 import unittest |
2493 unittest.main() | 2517 unittest.main() |
OLD | NEW |