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 gclient_scm.py.""" | 6 """Unit tests for gclient_scm.py.""" |
7 | 7 |
8 # pylint: disable=E1103 | 8 # pylint: disable=E1103 |
9 | 9 |
10 # Import before super_mox to keep valid references. | 10 # Import before super_mox to keep valid references. |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 100 |
101 def testDir(self): | 101 def testDir(self): |
102 members = [ | 102 members = [ |
103 'BinaryExists', | 103 'BinaryExists', |
104 'FullUrlForRelativeUrl', | 104 'FullUrlForRelativeUrl', |
105 'GetRevisionDate', | 105 'GetRevisionDate', |
106 'GetUsableRev', | 106 'GetUsableRev', |
107 'RunCommand', | 107 'RunCommand', |
108 'cleanup', | 108 'cleanup', |
109 'diff', | 109 'diff', |
| 110 'nag_timer', |
110 'pack', | 111 'pack', |
111 'relpath', | 112 'relpath', |
112 'revert', | 113 'revert', |
113 'revinfo', | 114 'revinfo', |
114 'runhooks', | 115 'runhooks', |
115 'status', | 116 'status', |
116 'update', | 117 'update', |
117 'updatesingle', | 118 'updatesingle', |
118 'url', | 119 'url', |
119 ] | 120 ] |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 | 490 |
490 # Verify no locked files. | 491 # Verify no locked files. |
491 dotted_path = join(self.base_path, '.') | 492 dotted_path = join(self.base_path, '.') |
492 gclient_scm.scm.SVN.CaptureStatus(None, dotted_path).AndReturn([]) | 493 gclient_scm.scm.SVN.CaptureStatus(None, dotted_path).AndReturn([]) |
493 | 494 |
494 # When checking out a single file, we issue an svn checkout and svn update. | 495 # When checking out a single file, we issue an svn checkout and svn update. |
495 files_list = self.mox.CreateMockAnything() | 496 files_list = self.mox.CreateMockAnything() |
496 gclient_scm.gclient_utils.CheckCallAndFilterAndHeader( | 497 gclient_scm.gclient_utils.CheckCallAndFilterAndHeader( |
497 ['svn', 'checkout', '--depth', 'empty', self.url, self.base_path], | 498 ['svn', 'checkout', '--depth', 'empty', self.url, self.base_path], |
498 always=True, | 499 always=True, |
| 500 nag_timer=30, |
499 cwd=self.root_dir) | 501 cwd=self.root_dir) |
500 gclient_scm.scm.SVN.RunAndGetFileList( | 502 gclient_scm.scm.SVN.RunAndGetFileList( |
501 options.verbose, | 503 options.verbose, |
502 ['update', 'DEPS', '--ignore-externals'], | 504 ['update', 'DEPS', '--ignore-externals'], |
503 cwd=self.base_path, | 505 cwd=self.base_path, |
504 file_list=files_list) | 506 file_list=files_list) |
505 | 507 |
506 # Now we fall back on scm.update(). | 508 # Now we fall back on scm.update(). |
507 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False) | 509 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False) |
508 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) | 510 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) |
(...skipping 14 matching lines...) Expand all Loading... |
523 # Checks to make sure that we support svn co --depth. | 525 # Checks to make sure that we support svn co --depth. |
524 gclient_scm.scm.SVN.current_version = None | 526 gclient_scm.scm.SVN.current_version = None |
525 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None | 527 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None |
526 ).AndReturn('1.4.4') | 528 ).AndReturn('1.4.4') |
527 gclient_scm.os.path.exists(self.base_path).AndReturn(True) | 529 gclient_scm.os.path.exists(self.base_path).AndReturn(True) |
528 | 530 |
529 # When checking out a single file with svn 1.4, we use svn export | 531 # When checking out a single file with svn 1.4, we use svn export |
530 files_list = self.mox.CreateMockAnything() | 532 files_list = self.mox.CreateMockAnything() |
531 gclient_scm.gclient_utils.CheckCallAndFilterAndHeader( | 533 gclient_scm.gclient_utils.CheckCallAndFilterAndHeader( |
532 ['svn', 'export', join(self.url, 'DEPS'), join(self.base_path, 'DEPS')], | 534 ['svn', 'export', join(self.url, 'DEPS'), join(self.base_path, 'DEPS')], |
533 always=True, cwd=self.root_dir) | 535 nag_timer=30, always=True, cwd=self.root_dir) |
534 | 536 |
535 self.mox.ReplayAll() | 537 self.mox.ReplayAll() |
536 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, | 538 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, |
537 relpath=self.relpath) | 539 relpath=self.relpath) |
538 scm.updatesingle(options, ['DEPS'], files_list) | 540 scm.updatesingle(options, ['DEPS'], files_list) |
539 | 541 |
540 def testUpdateSingleCheckoutSVNUpgrade(self): | 542 def testUpdateSingleCheckoutSVNUpgrade(self): |
541 options = self.Options(verbose=True) | 543 options = self.Options(verbose=True) |
542 file_info = { | 544 file_info = { |
543 'URL': self.url, | 545 'URL': self.url, |
(...skipping 12 matching lines...) Expand all Loading... |
556 | 558 |
557 # Verify no locked files. | 559 # Verify no locked files. |
558 gclient_scm.scm.SVN.CaptureStatus( | 560 gclient_scm.scm.SVN.CaptureStatus( |
559 None, join(self.base_path, '.')).AndReturn([]) | 561 None, join(self.base_path, '.')).AndReturn([]) |
560 | 562 |
561 # When checking out a single file, we issue an svn checkout and svn update. | 563 # When checking out a single file, we issue an svn checkout and svn update. |
562 files_list = self.mox.CreateMockAnything() | 564 files_list = self.mox.CreateMockAnything() |
563 gclient_scm.gclient_utils.CheckCallAndFilterAndHeader( | 565 gclient_scm.gclient_utils.CheckCallAndFilterAndHeader( |
564 ['svn', 'checkout', '--depth', 'empty', self.url, self.base_path], | 566 ['svn', 'checkout', '--depth', 'empty', self.url, self.base_path], |
565 always=True, | 567 always=True, |
| 568 nag_timer=30, |
566 cwd=self.root_dir) | 569 cwd=self.root_dir) |
567 gclient_scm.scm.SVN.RunAndGetFileList( | 570 gclient_scm.scm.SVN.RunAndGetFileList( |
568 options.verbose, | 571 options.verbose, |
569 ['update', 'DEPS', '--ignore-externals'], | 572 ['update', 'DEPS', '--ignore-externals'], |
570 cwd=self.base_path, | 573 cwd=self.base_path, |
571 file_list=files_list) | 574 file_list=files_list) |
572 | 575 |
573 # Now we fall back on scm.update(). | 576 # Now we fall back on scm.update(). |
574 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False) | 577 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False) |
575 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) | 578 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): | 783 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): |
781 def testDir(self): | 784 def testDir(self): |
782 members = [ | 785 members = [ |
783 'BinaryExists', | 786 'BinaryExists', |
784 'FullUrlForRelativeUrl', | 787 'FullUrlForRelativeUrl', |
785 'GetRevisionDate', | 788 'GetRevisionDate', |
786 'GetUsableRev', | 789 'GetUsableRev', |
787 'RunCommand', | 790 'RunCommand', |
788 'cleanup', | 791 'cleanup', |
789 'diff', | 792 'diff', |
| 793 'nag_timer', |
790 'pack', | 794 'pack', |
791 'UpdateSubmoduleConfig', | 795 'UpdateSubmoduleConfig', |
792 'relpath', | 796 'relpath', |
793 'revert', | 797 'revert', |
794 'revinfo', | 798 'revinfo', |
795 'runhooks', | 799 'runhooks', |
796 'status', | 800 'status', |
797 'update', | 801 'update', |
798 'url', | 802 'url', |
799 ] | 803 ] |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1181 | 1185 |
1182 if __name__ == '__main__': | 1186 if __name__ == '__main__': |
1183 if '-v' in sys.argv: | 1187 if '-v' in sys.argv: |
1184 logging.basicConfig( | 1188 logging.basicConfig( |
1185 level=logging.DEBUG, | 1189 level=logging.DEBUG, |
1186 format='%(asctime).19s %(levelname)s %(filename)s:' | 1190 format='%(asctime).19s %(levelname)s %(filename)s:' |
1187 '%(lineno)s %(message)s') | 1191 '%(lineno)s %(message)s') |
1188 unittest.main() | 1192 unittest.main() |
1189 | 1193 |
1190 # vim: ts=2:sw=2:tw=80:et: | 1194 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |