Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: tests/presubmit_unittest.py

Issue 1891233003: Support getting changes of non-HEAD branches (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@branch-to-cl
Patch Set: fix Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/git_cl_test.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 StringIO 10 import StringIO
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 506
507 for op, path in files: 507 for op, path in files:
508 full_path = presubmit.os.path.join(self.fake_root_dir, *path.split('/')) 508 full_path = presubmit.os.path.join(self.fake_root_dir, *path.split('/'))
509 if op.startswith('D'): 509 if op.startswith('D'):
510 os.path.exists(full_path).AndReturn(False) 510 os.path.exists(full_path).AndReturn(False)
511 else: 511 else:
512 os.path.exists(full_path).AndReturn(False) 512 os.path.exists(full_path).AndReturn(False)
513 os.path.isfile(full_path).AndReturn(True) 513 os.path.isfile(full_path).AndReturn(True)
514 514
515 presubmit.scm.GIT.GenerateDiff( 515 presubmit.scm.GIT.GenerateDiff(
516 self.fake_root_dir, files=[], full_move=True, branch=None 516 self.fake_root_dir, files=[], full_move=True, branch=None,
517 ).AndReturn('\n'.join(unified_diff)) 517 branch_head='HEAD',).AndReturn('\n'.join(unified_diff))
518 518
519 self.mox.ReplayAll() 519 self.mox.ReplayAll()
520 520
521 change = presubmit.GitChange( 521 change = presubmit.GitChange(
522 'mychange', 522 'mychange',
523 '\n'.join(description_lines), 523 '\n'.join(description_lines),
524 self.fake_root_dir, 524 self.fake_root_dir,
525 files, 525 files,
526 0, 526 0,
527 0, 527 0,
(...skipping 2360 matching lines...) Expand 10 before | Expand all | Expand 10 after
2888 owners_check=False) 2888 owners_check=False)
2889 self.assertEqual(2, len(results)) 2889 self.assertEqual(2, len(results))
2890 self.assertEqual( 2890 self.assertEqual(
2891 'Found line ending with white spaces in:', results[0]._message) 2891 'Found line ending with white spaces in:', results[0]._message)
2892 self.checkstdout('') 2892 self.checkstdout('')
2893 2893
2894 2894
2895 if __name__ == '__main__': 2895 if __name__ == '__main__':
2896 import unittest 2896 import unittest
2897 unittest.main() 2897 unittest.main()
OLDNEW
« no previous file with comments | « tests/git_cl_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698