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 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1256 | 1256 |
1257 self.mox.StubOutWithMock( | 1257 self.mox.StubOutWithMock( |
1258 gclient_scm.scm.GIT, 'GetBlessedSha1ForSvnRev', True) | 1258 gclient_scm.scm.GIT, 'GetBlessedSha1ForSvnRev', True) |
1259 # r1 -> first fake hash, r3 -> second fake hash. | 1259 # r1 -> first fake hash, r3 -> second fake hash. |
1260 gclient_scm.scm.GIT.GetBlessedSha1ForSvnRev(cwd=self.base_path, rev='1' | 1260 gclient_scm.scm.GIT.GetBlessedSha1ForSvnRev(cwd=self.base_path, rev='1' |
1261 ).AndReturn(self.fake_hash_1) | 1261 ).AndReturn(self.fake_hash_1) |
1262 gclient_scm.scm.GIT.GetBlessedSha1ForSvnRev(cwd=self.base_path, rev='3' | 1262 gclient_scm.scm.GIT.GetBlessedSha1ForSvnRev(cwd=self.base_path, rev='3' |
1263 ).MultipleTimes().AndReturn(self.fake_hash_2) | 1263 ).MultipleTimes().AndReturn(self.fake_hash_2) |
1264 | 1264 |
1265 # Ensure that we call git svn fetch if our LKGR is > the git-svn HEAD rev. | 1265 # Ensure that we call git svn fetch if our LKGR is > the git-svn HEAD rev. |
| 1266 self.mox.StubOutWithMock(gclient_scm.GitWrapper, '_Fetch', True) |
1266 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'Capture', True) | 1267 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'Capture', True) |
1267 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], | 1268 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], |
1268 cwd=self.base_path).AndReturn('blah') | 1269 cwd=self.base_path).AndReturn('blah') |
1269 gclient_scm.scm.GIT.Capture(['fetch'], cwd=self.base_path) | 1270 # pylint: disable=E1120 |
1270 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) | 1271 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) |
1271 error = subprocess2.CalledProcessError(1, 'cmd', '/cwd', 'stdout', 'stderr') | 1272 error = subprocess2.CalledProcessError(1, 'cmd', '/cwd', 'stdout', 'stderr') |
1272 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], | 1273 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], |
1273 cwd=self.base_path).AndRaise(error) | 1274 cwd=self.base_path).AndRaise(error) |
| 1275 gclient_scm.GitWrapper._Fetch(options) |
1274 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) | 1276 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) |
1275 gclient_scm.scm.GIT.Capture(['fetch', 'origin'], cwd=self.base_path) | 1277 gclient_scm.GitWrapper._Fetch(options) |
1276 | 1278 |
1277 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True) | 1279 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True) |
1278 gclient_scm.scm.GIT.IsGitSvn(cwd=self.base_path).MultipleTimes( | 1280 gclient_scm.scm.GIT.IsGitSvn(cwd=self.base_path).MultipleTimes( |
1279 ).AndReturn(True) | 1281 ).AndReturn(True) |
1280 | 1282 |
1281 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsValidRevision', True) | 1283 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsValidRevision', True) |
1282 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=self.fake_hash_1 | 1284 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=self.fake_hash_1 |
1283 ).AndReturn(True) | 1285 ).AndReturn(True) |
1284 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=too_big | 1286 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=too_big |
1285 ).MultipleTimes(2).AndReturn(False) | 1287 ).MultipleTimes(2).AndReturn(False) |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1572 | 1574 |
1573 if __name__ == '__main__': | 1575 if __name__ == '__main__': |
1574 if '-v' in sys.argv: | 1576 if '-v' in sys.argv: |
1575 logging.basicConfig( | 1577 logging.basicConfig( |
1576 level=logging.DEBUG, | 1578 level=logging.DEBUG, |
1577 format='%(asctime).19s %(levelname)s %(filename)s:' | 1579 format='%(asctime).19s %(levelname)s %(filename)s:' |
1578 '%(lineno)s %(message)s') | 1580 '%(lineno)s %(message)s') |
1579 unittest.main() | 1581 unittest.main() |
1580 | 1582 |
1581 # vim: ts=2:sw=2:tw=80:et: | 1583 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |