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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 def Options(self, *args, **kwargs): | 76 def Options(self, *args, **kwargs): |
77 return self.OptionsObject(*args, **kwargs) | 77 return self.OptionsObject(*args, **kwargs) |
78 | 78 |
79 def setUp(self): | 79 def setUp(self): |
80 BaseTestCase.setUp(self) | 80 BaseTestCase.setUp(self) |
81 self.url = self.SvnUrl() | 81 self.url = self.SvnUrl() |
82 | 82 |
83 def testDir(self): | 83 def testDir(self): |
84 members = [ | 84 members = [ |
85 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand', | 85 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand', |
86 'cleanup', 'diff', 'export', 'pack', 'relpath', 'revert', | 86 'cleanup', 'diff', 'pack', 'relpath', 'revert', |
87 'revinfo', 'runhooks', 'status', 'update', | 87 'revinfo', 'runhooks', 'status', 'update', |
88 'updatesingle', 'url', | 88 'updatesingle', 'url', |
89 ] | 89 ] |
90 | 90 |
91 # If you add a member, be sure to add the relevant test! | 91 # If you add a member, be sure to add the relevant test! |
92 self.compareMembers(self._scm_wrapper('svn://a'), members) | 92 self.compareMembers(self._scm_wrapper('svn://a'), members) |
93 | 93 |
94 def testUnsupportedSCM(self): | 94 def testUnsupportedSCM(self): |
95 args = ['gopher://foo', self.root_dir, self.relpath] | 95 args = ['gopher://foo', self.root_dir, self.relpath] |
96 exception_msg = 'No SCM found for url gopher://foo' | 96 exception_msg = 'No SCM found for url gopher://foo' |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 | 537 |
538 def tearDown(self): | 538 def tearDown(self): |
539 StdoutCheck.tearDown(self) | 539 StdoutCheck.tearDown(self) |
540 TestCaseUtils.tearDown(self) | 540 TestCaseUtils.tearDown(self) |
541 unittest.TestCase.tearDown(self) | 541 unittest.TestCase.tearDown(self) |
542 rmtree(self.root_dir) | 542 rmtree(self.root_dir) |
543 | 543 |
544 def testDir(self): | 544 def testDir(self): |
545 members = [ | 545 members = [ |
546 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand', | 546 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand', |
547 'cleanup', 'diff', 'export', 'pack', 'relpath', 'revert', | 547 'cleanup', 'diff', 'pack', 'relpath', 'revert', |
548 'revinfo', 'runhooks', 'status', 'update', 'url', | 548 'revinfo', 'runhooks', 'status', 'update', 'url', |
549 ] | 549 ] |
550 | 550 |
551 # If you add a member, be sure to add the relevant test! | 551 # If you add a member, be sure to add the relevant test! |
552 self.compareMembers(gclient_scm.CreateSCM(url=self.url), members) | 552 self.compareMembers(gclient_scm.CreateSCM(url=self.url), members) |
553 | 553 |
554 def testRevertMissing(self): | 554 def testRevertMissing(self): |
555 if not self.enabled: | 555 if not self.enabled: |
556 return | 556 return |
557 options = self.Options() | 557 options = self.Options() |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
823 | 823 |
824 if __name__ == '__main__': | 824 if __name__ == '__main__': |
825 if '-v' in sys.argv: | 825 if '-v' in sys.argv: |
826 logging.basicConfig( | 826 logging.basicConfig( |
827 level=logging.DEBUG, | 827 level=logging.DEBUG, |
828 format='%(asctime).19s %(levelname)s %(filename)s:' | 828 format='%(asctime).19s %(levelname)s %(filename)s:' |
829 '%(lineno)s %(message)s') | 829 '%(lineno)s %(message)s') |
830 unittest.main() | 830 unittest.main() |
831 | 831 |
832 # vim: ts=2:sw=2:tw=80:et: | 832 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |