Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Side by Side Diff: tests/gclient_scm_test.py

Issue 327803006: Added common git 'fetch' function (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« gclient_scm.py ('K') | « gclient_scm.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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:
OLDNEW
« gclient_scm.py ('K') | « gclient_scm.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698