OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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=E1101,E1103,W0403 | 8 # pylint: disable=E1101,E1103,W0403 |
9 | 9 |
10 # Import before super_mox to keep valid references. | 10 # Import before super_mox to keep valid references. |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 | 78 |
79 def Options(self, *args, **kwargs): | 79 def Options(self, *args, **kwargs): |
80 return self.OptionsObject(*args, **kwargs) | 80 return self.OptionsObject(*args, **kwargs) |
81 | 81 |
82 def setUp(self): | 82 def setUp(self): |
83 BaseTestCase.setUp(self) | 83 BaseTestCase.setUp(self) |
84 self.url = self.SvnUrl() | 84 self.url = self.SvnUrl() |
85 | 85 |
86 def testDir(self): | 86 def testDir(self): |
87 members = [ | 87 members = [ |
88 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand', | 88 'FullUrlForRelativeUrl', |
89 'cleanup', 'diff', 'pack', 'relpath', 'revert', | 89 'GetRevisionDate', |
90 'revinfo', 'runhooks', 'status', 'update', | 90 'GetUsableRev', |
91 'updatesingle', 'url', | 91 'RunCommand', |
| 92 'cleanup', |
| 93 'diff', |
| 94 'pack', |
| 95 'relpath', |
| 96 'revert', |
| 97 'revinfo', |
| 98 'runhooks', |
| 99 'status', |
| 100 'update', |
| 101 'updatesingle', |
| 102 'url' |
92 ] | 103 ] |
93 | 104 |
94 # If you add a member, be sure to add the relevant test! | 105 # If you add a member, be sure to add the relevant test! |
95 self.compareMembers(self._scm_wrapper('svn://a'), members) | 106 self.compareMembers(self._scm_wrapper('svn://a'), members) |
96 | 107 |
97 def testUnsupportedSCM(self): | 108 def testUnsupportedSCM(self): |
98 args = ['gopher://foo', self.root_dir, self.relpath] | 109 args = ['gopher://foo', self.root_dir, self.relpath] |
99 exception_msg = 'No SCM found for url gopher://foo' | 110 exception_msg = 'No SCM found for url gopher://foo' |
100 self.assertRaisesError(exception_msg, self._scm_wrapper, *args) | 111 self.assertRaisesError(exception_msg, self._scm_wrapper, *args) |
101 | 112 |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 | 623 |
613 def tearDown(self): | 624 def tearDown(self): |
614 StdoutCheck.tearDown(self) | 625 StdoutCheck.tearDown(self) |
615 TestCaseUtils.tearDown(self) | 626 TestCaseUtils.tearDown(self) |
616 unittest.TestCase.tearDown(self) | 627 unittest.TestCase.tearDown(self) |
617 rmtree(self.root_dir) | 628 rmtree(self.root_dir) |
618 | 629 |
619 | 630 |
620 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): | 631 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): |
621 def testDir(self): | 632 def testDir(self): |
622 members = [ | 633 members = [ |
623 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand', | 634 'FullUrlForRelativeUrl', |
624 'cleanup', 'diff', 'pack', 'relpath', 'revert', | 635 'GetRevisionDate', |
625 'revinfo', 'runhooks', 'status', 'update', 'url', | 636 'GetUsableRev', |
| 637 'RunCommand', |
| 638 'cleanup', |
| 639 'diff', |
| 640 'pack', |
| 641 'relpath', |
| 642 'revert', |
| 643 'revinfo', |
| 644 'runhooks', |
| 645 'status', |
| 646 'update', |
| 647 'url' |
626 ] | 648 ] |
627 | 649 |
628 # If you add a member, be sure to add the relevant test! | 650 # If you add a member, be sure to add the relevant test! |
629 self.compareMembers(gclient_scm.CreateSCM(url=self.url), members) | 651 self.compareMembers(gclient_scm.CreateSCM(url=self.url), members) |
630 | 652 |
631 def testRevertMissing(self): | 653 def testRevertMissing(self): |
632 if not self.enabled: | 654 if not self.enabled: |
633 return | 655 return |
634 options = self.Options() | 656 options = self.Options() |
635 file_path = join(self.base_path, 'a') | 657 file_path = join(self.base_path, 'a') |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
962 | 984 |
963 if __name__ == '__main__': | 985 if __name__ == '__main__': |
964 if '-v' in sys.argv: | 986 if '-v' in sys.argv: |
965 logging.basicConfig( | 987 logging.basicConfig( |
966 level=logging.DEBUG, | 988 level=logging.DEBUG, |
967 format='%(asctime).19s %(levelname)s %(filename)s:' | 989 format='%(asctime).19s %(levelname)s %(filename)s:' |
968 '%(lineno)s %(message)s') | 990 '%(lineno)s %(message)s') |
969 unittest.main() | 991 unittest.main() |
970 | 992 |
971 # vim: ts=2:sw=2:tw=80:et: | 993 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |