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

Side by Side Diff: tests/gclient_scm_test.py

Issue 61623008: If the destination directory doesn't contain the desired repo, delete it (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Rebase, fix conflicts, remove unused variable Created 6 years, 11 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
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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 95
96 def setUp(self): 96 def setUp(self):
97 BaseTestCase.setUp(self) 97 BaseTestCase.setUp(self)
98 self.url = self.SvnUrl() 98 self.url = self.SvnUrl()
99 99
100 def testDir(self): 100 def testDir(self):
101 members = [ 101 members = [
102 'BinaryExists', 102 'BinaryExists',
103 'FullUrlForRelativeUrl', 103 'FullUrlForRelativeUrl',
104 'GetCheckoutRoot', 104 'GetCheckoutRoot',
105 'GetRemoteURL',
105 'GetRevisionDate', 106 'GetRevisionDate',
106 'GetUsableRev', 107 'GetUsableRev',
107 'Svnversion', 108 'Svnversion',
108 'RunCommand', 109 'RunCommand',
109 'cleanup', 110 'cleanup',
110 'diff', 111 'diff',
111 'name', 112 'name',
112 'pack', 113 'pack',
113 'relpath', 114 'relpath',
114 'revert', 115 'revert',
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 686
686 self.mox.ReplayAll() 687 self.mox.ReplayAll()
687 688
688 svn_scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir) 689 svn_scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir)
689 # With an SVN checkout, 1 an example of a valid usable rev. 690 # With an SVN checkout, 1 an example of a valid usable rev.
690 self.assertEquals(svn_scm.GetUsableRev(1, options), 1) 691 self.assertEquals(svn_scm.GetUsableRev(1, options), 1)
691 # With an SVN checkout, a fake or unknown rev should raise an excpetion. 692 # With an SVN checkout, a fake or unknown rev should raise an excpetion.
692 self.assertRaises(gclient_scm.gclient_utils.Error, 693 self.assertRaises(gclient_scm.gclient_utils.Error,
693 svn_scm.GetUsableRev, 'fake', options) 694 svn_scm.GetUsableRev, 'fake', options)
694 695
696 def testGetRemoteURL(self):
697 self.mox.UnsetStubs()
698 options = self.Options(verbose=True)
699 self.mox.StubOutWithMock(gclient_scm.scm.SVN, 'Capture', True)
700 svn_scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
701 relpath=self.relpath)
702
703 if svn_scm.relpath:
704 cwd = os.path.join(svn_scm._root_dir, svn_scm.relpath)
705 else:
706 cwd = svn_scm._root_dir
707
708 gclient_scm.scm.SVN.Capture(['info', '--xml', os.curdir], cwd).AndReturn(
709 """<?xml version="1.0"?>
710 <info>
711 <entry
712 path="."
713 revision="1234"
714 kind="dir">
715 <url>%s</url>
716 <repository>
717 <root>https://dummy.repo.com/svn</root>
718 <uuid>FAKE</uuid>
719 </repository>
720 <wc-info>
721 <schedule>normal</schedule>
722 <depth>infinity</depth>
723 </wc-info>
724 <commit
725 revision="1234">
726 <author>fakedev@chromium.org</author>
727 <date>2013-11-14T15:08:21.757885Z</date>
728 </commit>
729 </entry>
730 </info>
731 """ % svn_scm.url)
732
733 self.mox.ReplayAll()
734
735 self.assertEquals(svn_scm.GetRemoteURL(options), self.url)
736
737
695 class BaseGitWrapperTestCase(GCBaseTestCase, StdoutCheck, TestCaseUtils, 738 class BaseGitWrapperTestCase(GCBaseTestCase, StdoutCheck, TestCaseUtils,
696 unittest.TestCase): 739 unittest.TestCase):
697 """This class doesn't use pymox.""" 740 """This class doesn't use pymox."""
698 class OptionsObject(object): 741 class OptionsObject(object):
699 def __init__(self, verbose=False, revision=None): 742 def __init__(self, verbose=False, revision=None):
700 self.verbose = verbose 743 self.verbose = verbose
701 self.revision = revision 744 self.revision = revision
702 self.manually_grab_svn_rev = True 745 self.manually_grab_svn_rev = True
703 self.deps_os = None 746 self.deps_os = None
704 self.force = False 747 self.force = False
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 gclient_scm.GitWrapper.BinaryExists = self._original_GitBinaryExists 853 gclient_scm.GitWrapper.BinaryExists = self._original_GitBinaryExists
811 gclient_scm.SVNWrapper.BinaryExists = self._original_SVNBinaryExists 854 gclient_scm.SVNWrapper.BinaryExists = self._original_SVNBinaryExists
812 855
813 856
814 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): 857 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase):
815 def testDir(self): 858 def testDir(self):
816 members = [ 859 members = [
817 'BinaryExists', 860 'BinaryExists',
818 'FullUrlForRelativeUrl', 861 'FullUrlForRelativeUrl',
819 'GetCheckoutRoot', 862 'GetCheckoutRoot',
863 'GetRemoteURL',
820 'GetRevisionDate', 864 'GetRevisionDate',
821 'GetUsableRev', 865 'GetUsableRev',
822 'RunCommand', 866 'RunCommand',
823 'cache_dir', 867 'cache_dir',
824 'cache_locks', 868 'cache_locks',
825 'cleanup', 869 'cleanup',
826 'diff', 870 'diff',
827 'name', 871 'name',
828 'pack', 872 'pack',
829 'UpdateSubmoduleConfig', 873 'UpdateSubmoduleConfig',
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
1178 self.assertEquals(git_svn_scm.GetUsableRev('3', options), 1222 self.assertEquals(git_svn_scm.GetUsableRev('3', options),
1179 self.fake_hash_2) 1223 self.fake_hash_2)
1180 # Given a git sha1 with a git-svn checkout, it should be used as is. 1224 # Given a git sha1 with a git-svn checkout, it should be used as is.
1181 self.assertEquals(git_svn_scm.GetUsableRev(self.fake_hash_1, options), 1225 self.assertEquals(git_svn_scm.GetUsableRev(self.fake_hash_1, options),
1182 self.fake_hash_1) 1226 self.fake_hash_1)
1183 # We currently check for seemingly valid SVN revisions by assuming 6 digit 1227 # We currently check for seemingly valid SVN revisions by assuming 6 digit
1184 # numbers, so assure that numeric revs >= 1000000 don't work. 1228 # numbers, so assure that numeric revs >= 1000000 don't work.
1185 self.assertRaises(gclient_scm.gclient_utils.Error, 1229 self.assertRaises(gclient_scm.gclient_utils.Error,
1186 git_svn_scm.GetUsableRev, too_big, options) 1230 git_svn_scm.GetUsableRev, too_big, options)
1187 1231
1232 def testGetRemoteURL(self):
1233 options = self.Options(verbose=True)
1234 self.mox.StubOutWithMock(gclient_scm.GitWrapper, '_Capture', True)
1235 git_scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
1236 relpath=self.relpath)
1237 git_scm._Capture(['config', 'remote.origin.url'], cwd='/tmp/fake'
1238 ).AndReturn('%s\n' % git_scm.url)
1239
1240 self.mox.ReplayAll()
1241
1242 self.assertEquals(git_scm.GetRemoteURL(options), self.url)
1243
1188 1244
1189 class UnmanagedGitWrapperTestCase(BaseGitWrapperTestCase): 1245 class UnmanagedGitWrapperTestCase(BaseGitWrapperTestCase):
1190 def testUpdateUpdate(self): 1246 def testUpdateUpdate(self):
1191 if not self.enabled: 1247 if not self.enabled:
1192 return 1248 return
1193 options = self.Options() 1249 options = self.Options()
1194 expected_file_list = [] 1250 expected_file_list = []
1195 scm = gclient_scm.CreateSCM(url=self.url, root_dir=self.root_dir, 1251 scm = gclient_scm.CreateSCM(url=self.url, root_dir=self.root_dir,
1196 relpath=self.relpath) 1252 relpath=self.relpath)
1197 file_list = [] 1253 file_list = []
1198 options.revision = 'unmanaged' 1254 options.revision = 'unmanaged'
1199 scm.update(options, (), file_list) 1255 scm.update(options, (), file_list)
1200 self.assertEquals(file_list, expected_file_list) 1256 self.assertEquals(file_list, expected_file_list)
1201 self.assertEquals(scm.revinfo(options, (), None), 1257 self.assertEquals(scm.revinfo(options, (), None),
1202 '069c602044c5388d2d15c3f875b057c852003458') 1258 '069c602044c5388d2d15c3f875b057c852003458')
1203 self.checkstdout('________ unmanaged solution; skipping .\n') 1259 self.checkstdout('________ unmanaged solution; skipping .\n')
1204 1260
1205 1261
1206 if __name__ == '__main__': 1262 if __name__ == '__main__':
1207 if '-v' in sys.argv: 1263 if '-v' in sys.argv:
1208 logging.basicConfig( 1264 logging.basicConfig(
1209 level=logging.DEBUG, 1265 level=logging.DEBUG,
1210 format='%(asctime).19s %(levelname)s %(filename)s:' 1266 format='%(asctime).19s %(levelname)s %(filename)s:'
1211 '%(lineno)s %(message)s') 1267 '%(lineno)s %(message)s')
1212 unittest.main() 1268 unittest.main()
1213 1269
1214 # vim: ts=2:sw=2:tw=80:et: 1270 # vim: ts=2:sw=2:tw=80:et:
OLDNEW
« gclient_scm.py ('K') | « gclient_scm.py ('k') | tests/gclient_smoketest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698