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 scm.py.""" | 6 """Unit tests for scm.py.""" |
7 | 7 |
8 # pylint: disable=E1101,W0403 | 8 # pylint: disable=E1101,W0403 |
9 from __future__ import with_statement | 9 from __future__ import with_statement |
10 import logging | 10 import logging |
(...skipping 24 matching lines...) Expand all Loading... |
35 self.mox.StubOutWithMock(scm.gclient_utils, 'CheckCall') | 35 self.mox.StubOutWithMock(scm.gclient_utils, 'CheckCall') |
36 self.mox.StubOutWithMock(scm.gclient_utils, 'CheckCallAndFilter') | 36 self.mox.StubOutWithMock(scm.gclient_utils, 'CheckCallAndFilter') |
37 self.mox.StubOutWithMock(scm.gclient_utils, 'CheckCallAndFilterAndHeader') | 37 self.mox.StubOutWithMock(scm.gclient_utils, 'CheckCallAndFilterAndHeader') |
38 self.mox.StubOutWithMock(scm.gclient_utils, 'Popen') | 38 self.mox.StubOutWithMock(scm.gclient_utils, 'Popen') |
39 | 39 |
40 | 40 |
41 class RootTestCase(BaseSCMTestCase): | 41 class RootTestCase(BaseSCMTestCase): |
42 def testMembersChanged(self): | 42 def testMembersChanged(self): |
43 self.mox.ReplayAll() | 43 self.mox.ReplayAll() |
44 members = [ | 44 members = [ |
45 'GetCasedPath', 'GenFakeDiff', 'GIT', 'SVN', 'ValidateEmail', | 45 'ElementTree', 'GetCasedPath', 'GenFakeDiff', 'GIT', 'SVN', |
| 46 'ValidateEmail', |
46 'cStringIO', 'determine_scm', 'gclient_utils', 'glob', 'logging', 'os', | 47 'cStringIO', 'determine_scm', 'gclient_utils', 'glob', 'logging', 'os', |
47 're', 'shutil', 'subprocess', 'subprocess2', 'sys', 'tempfile', 'time', | 48 're', 'shutil', 'subprocess', 'subprocess2', 'sys', 'tempfile', 'time', |
48 'xml', | |
49 ] | 49 ] |
50 # If this test fails, you should add the relevant test. | 50 # If this test fails, you should add the relevant test. |
51 self.compareMembers(scm, members) | 51 self.compareMembers(scm, members) |
52 | 52 |
53 | 53 |
54 class GitWrapperTestCase(BaseSCMTestCase): | 54 class GitWrapperTestCase(BaseSCMTestCase): |
55 def testMembersChanged(self): | 55 def testMembersChanged(self): |
56 members = [ | 56 members = [ |
57 'AssertVersion', 'Capture', 'CaptureStatus', | 57 'AssertVersion', 'Capture', 'CaptureStatus', |
58 'FetchUpstreamTuple', | 58 'FetchUpstreamTuple', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 'IsMovedInfo', 'ReadSimpleAuth', 'Revert', 'RunAndGetFileList', | 97 'IsMovedInfo', 'ReadSimpleAuth', 'Revert', 'RunAndGetFileList', |
98 ] | 98 ] |
99 # If this test fails, you should add the relevant test. | 99 # If this test fails, you should add the relevant test. |
100 self.compareMembers(scm.SVN, members) | 100 self.compareMembers(scm.SVN, members) |
101 | 101 |
102 def testGetCheckoutRoot(self): | 102 def testGetCheckoutRoot(self): |
103 self.mox.StubOutWithMock(scm.SVN, 'CaptureInfo') | 103 self.mox.StubOutWithMock(scm.SVN, 'CaptureInfo') |
104 self.mox.StubOutWithMock(scm, 'GetCasedPath') | 104 self.mox.StubOutWithMock(scm, 'GetCasedPath') |
105 scm.os.path.abspath = lambda x: x | 105 scm.os.path.abspath = lambda x: x |
106 scm.GetCasedPath = lambda x: x | 106 scm.GetCasedPath = lambda x: x |
| 107 # pylint: disable=E1103 |
107 scm.SVN.CaptureInfo(self.root_dir + '/foo/bar').AndReturn({ | 108 scm.SVN.CaptureInfo(self.root_dir + '/foo/bar').AndReturn({ |
108 'Repository Root': 'svn://svn.chromium.org/chrome', | 109 'Repository Root': 'svn://svn.chromium.org/chrome', |
109 'URL': 'svn://svn.chromium.org/chrome/trunk/src', | 110 'URL': 'svn://svn.chromium.org/chrome/trunk/src', |
110 }) | 111 }) |
111 scm.SVN.CaptureInfo(self.root_dir + '/foo').AndReturn({ | 112 scm.SVN.CaptureInfo(self.root_dir + '/foo').AndReturn({ |
112 'Repository Root': 'svn://svn.chromium.org/chrome', | 113 'Repository Root': 'svn://svn.chromium.org/chrome', |
113 'URL': 'svn://svn.chromium.org/chrome/trunk', | 114 'URL': 'svn://svn.chromium.org/chrome/trunk', |
114 }) | 115 }) |
115 scm.SVN.CaptureInfo(self.root_dir).AndReturn({ | 116 scm.SVN.CaptureInfo(self.root_dir).AndReturn({ |
116 'Repository Root': 'svn://svn.chromium.org/chrome', | 117 'Repository Root': 'svn://svn.chromium.org/chrome', |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 # Asserting the tree is not sufficient, svn status must come out clear too. | 334 # Asserting the tree is not sufficient, svn status must come out clear too. |
334 self.assertEquals('', self._capture(['status'])) | 335 self.assertEquals('', self._capture(['status'])) |
335 | 336 |
336 | 337 |
337 if __name__ == '__main__': | 338 if __name__ == '__main__': |
338 if '-v' in sys.argv: | 339 if '-v' in sys.argv: |
339 logging.basicConfig(level=logging.DEBUG) | 340 logging.basicConfig(level=logging.DEBUG) |
340 unittest.main() | 341 unittest.main() |
341 | 342 |
342 # vim: ts=2:sw=2:tw=80:et: | 343 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |