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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 self.jobs = 1 | 77 self.jobs = 1 |
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 = [ 'FindSafesyncRev', |
88 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand', | 88 'FullUrlForRelativeUrl', |
89 'cleanup', 'diff', 'pack', 'relpath', 'revert', | 89 'GetRevisionDate', |
90 'revinfo', 'runhooks', 'status', 'update', | 90 'RunCommand', |
91 'updatesingle', 'url', | 91 'cleanup', |
92 ] | 92 'diff', |
| 93 'pack', |
| 94 'relpath', |
| 95 'revert', |
| 96 'revinfo', |
| 97 'runhooks', |
| 98 'status', |
| 99 'update', |
| 100 'updatesingle', |
| 101 'url' |
| 102 ] |
93 | 103 |
94 # If you add a member, be sure to add the relevant test! | 104 # If you add a member, be sure to add the relevant test! |
95 self.compareMembers(self._scm_wrapper('svn://a'), members) | 105 self.compareMembers(self._scm_wrapper('svn://a'), members) |
96 | 106 |
97 def testUnsupportedSCM(self): | 107 def testUnsupportedSCM(self): |
98 args = ['gopher://foo', self.root_dir, self.relpath] | 108 args = ['gopher://foo', self.root_dir, self.relpath] |
99 exception_msg = 'No SCM found for url gopher://foo' | 109 exception_msg = 'No SCM found for url gopher://foo' |
100 self.assertRaisesError(exception_msg, self._scm_wrapper, *args) | 110 self.assertRaisesError(exception_msg, self._scm_wrapper, *args) |
101 | 111 |
102 def testSVNFullUrlForRelativeUrl(self): | 112 def testSVNFullUrlForRelativeUrl(self): |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 | 593 |
584 def tearDown(self): | 594 def tearDown(self): |
585 StdoutCheck.tearDown(self) | 595 StdoutCheck.tearDown(self) |
586 TestCaseUtils.tearDown(self) | 596 TestCaseUtils.tearDown(self) |
587 unittest.TestCase.tearDown(self) | 597 unittest.TestCase.tearDown(self) |
588 rmtree(self.root_dir) | 598 rmtree(self.root_dir) |
589 | 599 |
590 | 600 |
591 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): | 601 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): |
592 def testDir(self): | 602 def testDir(self): |
593 members = [ | 603 members = [ 'FindSafesyncRev', |
594 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand', | 604 'FullUrlForRelativeUrl', |
595 'cleanup', 'diff', 'pack', 'relpath', 'revert', | 605 'GetRevisionDate', |
596 'revinfo', 'runhooks', 'status', 'update', 'url', | 606 'RunCommand', |
597 ] | 607 'cleanup', |
| 608 'diff', |
| 609 'pack', |
| 610 'relpath', |
| 611 'revert', |
| 612 'revinfo', |
| 613 'runhooks', |
| 614 'status', |
| 615 'update', |
| 616 'url', |
| 617 ] |
598 | 618 |
599 # If you add a member, be sure to add the relevant test! | 619 # If you add a member, be sure to add the relevant test! |
600 self.compareMembers(gclient_scm.CreateSCM(url=self.url), members) | 620 self.compareMembers(gclient_scm.CreateSCM(url=self.url), members) |
601 | 621 |
602 def testRevertMissing(self): | 622 def testRevertMissing(self): |
603 if not self.enabled: | 623 if not self.enabled: |
604 return | 624 return |
605 options = self.Options() | 625 options = self.Options() |
606 file_path = join(self.base_path, 'a') | 626 file_path = join(self.base_path, 'a') |
607 scm = gclient_scm.CreateSCM(url=self.url, root_dir=self.root_dir, | 627 scm = gclient_scm.CreateSCM(url=self.url, root_dir=self.root_dir, |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
933 | 953 |
934 if __name__ == '__main__': | 954 if __name__ == '__main__': |
935 if '-v' in sys.argv: | 955 if '-v' in sys.argv: |
936 logging.basicConfig( | 956 logging.basicConfig( |
937 level=logging.DEBUG, | 957 level=logging.DEBUG, |
938 format='%(asctime).19s %(levelname)s %(filename)s:' | 958 format='%(asctime).19s %(levelname)s %(filename)s:' |
939 '%(lineno)s %(message)s') | 959 '%(lineno)s %(message)s') |
940 unittest.main() | 960 unittest.main() |
941 | 961 |
942 # vim: ts=2:sw=2:tw=80:et: | 962 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |