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

Side by Side Diff: tests/gclient_scm_test.py

Issue 189913020: gclient: print a warning if a dep would get deleted or moved in the future (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Refactor delete/move logic, add random number to move dest Created 6 years, 9 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
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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 def testGITFakeHttpsUrl(self): 128 def testGITFakeHttpsUrl(self):
129 self.url = 'git+https://foo' 129 self.url = 'git+https://foo'
130 130
131 self.mox.ReplayAll() 131 self.mox.ReplayAll()
132 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, 132 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
133 relpath=self.relpath) 133 relpath=self.relpath)
134 self.assertEqual(scm.url, 'https://foo') 134 self.assertEqual(scm.url, 'https://foo')
135 135
136 def testRunCommandException(self): 136 def testRunCommandException(self):
137 options = self.Options(verbose=False) 137 options = self.Options(verbose=False)
138 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
139 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 138 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
140 139
141 self.mox.ReplayAll() 140 self.mox.ReplayAll()
142 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, 141 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
143 relpath=self.relpath) 142 relpath=self.relpath)
144 exception = "Unsupported argument(s): %s" % ','.join(self.args) 143 exception = "Unsupported argument(s): %s" % ','.join(self.args)
145 self.assertRaisesError(exception, scm.RunCommand, 144 self.assertRaisesError(exception, scm.RunCommand,
146 'update', options, self.args) 145 'update', options, self.args)
147 146
148 def testRunCommandUnknown(self): 147 def testRunCommandUnknown(self):
149 # TODO(maruel): if ever used. 148 # TODO(maruel): if ever used.
150 pass 149 pass
151 150
152 def testRevertMissing(self): 151 def testRevertMissing(self):
153 options = self.Options(verbose=True) 152 options = self.Options(verbose=True)
154 gclient_scm.os.path.isdir(self.base_path).AndReturn(False) 153 gclient_scm.os.path.isdir(self.base_path).AndReturn(False)
155 gclient_scm.os.path.exists(self.base_path).AndReturn(False) 154 gclient_scm.os.path.exists(self.base_path).AndReturn(False)
156 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None 155 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None
157 ).AndReturn('1.5.1') 156 ).AndReturn('1.5.1')
158 # It'll to a checkout instead. 157 # It'll to a checkout instead.
159 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
160 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 158 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
161 # Checkout. 159 # Checkout.
162 gclient_scm.os.path.exists(self.base_path).AndReturn(False) 160 gclient_scm.os.path.exists(self.base_path).AndReturn(False)
163 parent = gclient_scm.os.path.dirname(self.base_path) 161 parent = gclient_scm.os.path.dirname(self.base_path)
164 gclient_scm.os.path.exists(parent).AndReturn(False) 162 gclient_scm.os.path.exists(parent).AndReturn(False)
165 gclient_scm.os.makedirs(parent) 163 gclient_scm.os.makedirs(parent)
166 gclient_scm.os.path.exists(parent).AndReturn(True) 164 gclient_scm.os.path.exists(parent).AndReturn(True)
167 files_list = self.mox.CreateMockAnything() 165 files_list = self.mox.CreateMockAnything()
168 gclient_scm.scm.SVN.RunAndGetFileList( 166 gclient_scm.scm.SVN.RunAndGetFileList(
169 options.verbose, 167 options.verbose,
(...skipping 11 matching lines...) Expand all
181 self.checkstdout( 179 self.checkstdout(
182 ('\n_____ %s is missing, synching instead\n' % self.relpath)) 180 ('\n_____ %s is missing, synching instead\n' % self.relpath))
183 181
184 def testRevertNoDotSvn(self): 182 def testRevertNoDotSvn(self):
185 options = self.Options(verbose=True, force=True) 183 options = self.Options(verbose=True, force=True)
186 gclient_scm.os.path.isdir(self.base_path).AndReturn(True) 184 gclient_scm.os.path.isdir(self.base_path).AndReturn(True)
187 gclient_scm.os.path.isdir(join(self.base_path, '.svn')).AndReturn(False) 185 gclient_scm.os.path.isdir(join(self.base_path, '.svn')).AndReturn(False)
188 gclient_scm.os.path.isdir(join(self.base_path, '.git')).AndReturn(False) 186 gclient_scm.os.path.isdir(join(self.base_path, '.git')).AndReturn(False)
189 gclient_scm.os.path.isdir(join(self.base_path, '.hg')).AndReturn(False) 187 gclient_scm.os.path.isdir(join(self.base_path, '.hg')).AndReturn(False)
190 # Checkout. 188 # Checkout.
191 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
192 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 189 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
193 gclient_scm.os.path.exists(self.base_path).AndReturn(False) 190 gclient_scm.os.path.exists(self.base_path).AndReturn(False)
194 parent = gclient_scm.os.path.dirname(self.base_path) 191 parent = gclient_scm.os.path.dirname(self.base_path)
195 gclient_scm.os.path.exists(parent).AndReturn(False) 192 gclient_scm.os.path.exists(parent).AndReturn(False)
196 gclient_scm.os.makedirs(parent) 193 gclient_scm.os.makedirs(parent)
197 gclient_scm.os.path.exists(parent).AndReturn(True) 194 gclient_scm.os.path.exists(parent).AndReturn(True)
198 files_list = self.mox.CreateMockAnything() 195 files_list = self.mox.CreateMockAnything()
199 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None 196 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None
200 ).AndReturn('1.6') 197 ).AndReturn('1.6')
201 gclient_scm.scm.SVN.RunAndGetFileList( 198 gclient_scm.scm.SVN.RunAndGetFileList(
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 304
308 # TODO(maruel): TEST REVISIONS!!! 305 # TODO(maruel): TEST REVISIONS!!!
309 # TODO(maruel): TEST RELOCATE!!! 306 # TODO(maruel): TEST RELOCATE!!!
310 def testUpdateCheckout(self): 307 def testUpdateCheckout(self):
311 options = self.Options(verbose=True) 308 options = self.Options(verbose=True)
312 file_info = gclient_scm.gclient_utils.PrintableObject() 309 file_info = gclient_scm.gclient_utils.PrintableObject()
313 file_info.root = 'blah' 310 file_info.root = 'blah'
314 file_info.url = self.url 311 file_info.url = self.url
315 file_info.uuid = 'ABC' 312 file_info.uuid = 'ABC'
316 file_info.revision = 42 313 file_info.revision = 42
317 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
318 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 314 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
319 # Checkout. 315 # Checkout.
320 gclient_scm.os.path.exists(self.base_path).AndReturn(False) 316 gclient_scm.os.path.exists(self.base_path).AndReturn(False)
321 parent = gclient_scm.os.path.dirname(self.base_path) 317 parent = gclient_scm.os.path.dirname(self.base_path)
322 gclient_scm.os.path.exists(parent).AndReturn(False) 318 gclient_scm.os.path.exists(parent).AndReturn(False)
323 gclient_scm.os.makedirs(parent) 319 gclient_scm.os.makedirs(parent)
324 gclient_scm.os.path.exists(parent).AndReturn(True) 320 gclient_scm.os.path.exists(parent).AndReturn(True)
325 files_list = self.mox.CreateMockAnything() 321 files_list = self.mox.CreateMockAnything()
326 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None 322 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None
327 ).AndReturn('1.5.1') 323 ).AndReturn('1.5.1')
(...skipping 12 matching lines...) Expand all
340 def testUpdateUpdate(self): 336 def testUpdateUpdate(self):
341 options = self.Options(verbose=True) 337 options = self.Options(verbose=True)
342 options.force = True 338 options.force = True
343 options.nohooks = False 339 options.nohooks = False
344 file_info = { 340 file_info = {
345 'Repository Root': 'blah', 341 'Repository Root': 'blah',
346 'URL': self.url, 342 'URL': self.url,
347 'UUID': 'ABC', 343 'UUID': 'ABC',
348 'Revision': 42, 344 'Revision': 42,
349 } 345 }
350 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
351 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 346 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
347 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
348 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(False)
352 gclient_scm.os.path.exists(self.base_path).AndReturn(True) 349 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
353 350
354 # Checkout or update. 351 # Checkout or update.
355 dotted_path = join(self.base_path, '.') 352 dotted_path = join(self.base_path, '.')
356 gclient_scm.scm.SVN._CaptureInfo([], dotted_path).AndReturn(file_info) 353 gclient_scm.scm.SVN._CaptureInfo([], dotted_path).AndReturn(file_info)
357 354
358 # Verify no locked files. 355 # Verify no locked files.
359 gclient_scm.scm.SVN.CaptureStatus(None, dotted_path).AndReturn([]) 356 gclient_scm.scm.SVN.CaptureStatus(None, dotted_path).AndReturn([])
360 357
361 # Cheat a bit here. 358 # Cheat a bit here.
(...skipping 24 matching lines...) Expand all
386 383
387 def testUpdateReset(self): 384 def testUpdateReset(self):
388 options = self.Options(verbose=True) 385 options = self.Options(verbose=True)
389 options.reset = True 386 options.reset = True
390 file_info = { 387 file_info = {
391 'Repository Root': 'blah', 388 'Repository Root': 'blah',
392 'URL': self.url, 389 'URL': self.url,
393 'UUID': 'ABC', 390 'UUID': 'ABC',
394 'Revision': 42, 391 'Revision': 42,
395 } 392 }
396 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
397 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 393 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
394 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
395 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(False)
398 gclient_scm.os.path.exists(self.base_path).AndReturn(True) 396 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
399 397
400 # Checkout or update. 398 # Checkout or update.
401 dotted_path = join(self.base_path, '.') 399 dotted_path = join(self.base_path, '.')
402 gclient_scm.scm.SVN._CaptureInfo([], dotted_path).AndReturn(file_info) 400 gclient_scm.scm.SVN._CaptureInfo([], dotted_path).AndReturn(file_info)
403 401
404 # Create an untracked file and directory. 402 # Create an untracked file and directory.
405 gclient_scm.scm.SVN.CaptureStatus(None, dotted_path 403 gclient_scm.scm.SVN.CaptureStatus(None, dotted_path
406 ).AndReturn([['? ', 'dir'], ['? ', 'file']]) 404 ).AndReturn([['? ', 'dir'], ['? ', 'file']])
407 405
(...skipping 14 matching lines...) Expand all
422 options = self.Options(verbose=True) 420 options = self.Options(verbose=True)
423 options.reset = True 421 options.reset = True
424 options.delete_unversioned_trees = True 422 options.delete_unversioned_trees = True
425 423
426 file_info = { 424 file_info = {
427 'Repository Root': 'blah', 425 'Repository Root': 'blah',
428 'URL': self.url, 426 'URL': self.url,
429 'UUID': 'ABC', 427 'UUID': 'ABC',
430 'Revision': 42, 428 'Revision': 42,
431 } 429 }
432 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
433 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 430 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
431 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
432 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(False)
434 gclient_scm.os.path.exists(self.base_path).AndReturn(True) 433 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
435 434
436 # Checkout or update. 435 # Checkout or update.
437 dotted_path = join(self.base_path, '.') 436 dotted_path = join(self.base_path, '.')
438 gclient_scm.scm.SVN._CaptureInfo([], dotted_path).AndReturn(file_info) 437 gclient_scm.scm.SVN._CaptureInfo([], dotted_path).AndReturn(file_info)
439 438
440 # Create an untracked file and directory. 439 # Create an untracked file and directory.
441 gclient_scm.scm.SVN.CaptureStatus(None, dotted_path 440 gclient_scm.scm.SVN.CaptureStatus(None, dotted_path
442 ).AndReturn([['? ', 'dir'], ['? ', 'file']]) 441 ).AndReturn([['? ', 'dir'], ['? ', 'file']])
443 442
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 ['svn', 'checkout', '--depth', 'empty', self.url, self.base_path], 487 ['svn', 'checkout', '--depth', 'empty', self.url, self.base_path],
489 always=True, 488 always=True,
490 cwd=self.root_dir) 489 cwd=self.root_dir)
491 gclient_scm.scm.SVN.RunAndGetFileList( 490 gclient_scm.scm.SVN.RunAndGetFileList(
492 options.verbose, 491 options.verbose,
493 ['update', 'DEPS', '--ignore-externals'], 492 ['update', 'DEPS', '--ignore-externals'],
494 cwd=self.base_path, 493 cwd=self.base_path,
495 file_list=files_list) 494 file_list=files_list)
496 495
497 # Now we fall back on scm.update(). 496 # Now we fall back on scm.update().
498 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
499 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 497 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
498 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
499 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(False)
500 gclient_scm.os.path.exists(self.base_path).AndReturn(True) 500 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
501 gclient_scm.scm.SVN._CaptureInfo([], dotted_path).AndReturn(file_info) 501 gclient_scm.scm.SVN._CaptureInfo([], dotted_path).AndReturn(file_info)
502 gclient_scm.scm.SVN._CaptureInfo([file_info['URL']], None 502 gclient_scm.scm.SVN._CaptureInfo([file_info['URL']], None
503 ).AndReturn(file_info) 503 ).AndReturn(file_info)
504 504
505 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.' 505 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.'
506 ).AndReturn({'Revision': 100}) 506 ).AndReturn({'Revision': 100})
507 507
508 self.mox.ReplayAll() 508 self.mox.ReplayAll()
509 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, 509 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 ['svn', 'checkout', '--depth', 'empty', self.url, self.base_path], 558 ['svn', 'checkout', '--depth', 'empty', self.url, self.base_path],
559 always=True, 559 always=True,
560 cwd=self.root_dir) 560 cwd=self.root_dir)
561 gclient_scm.scm.SVN.RunAndGetFileList( 561 gclient_scm.scm.SVN.RunAndGetFileList(
562 options.verbose, 562 options.verbose,
563 ['update', 'DEPS', '--ignore-externals'], 563 ['update', 'DEPS', '--ignore-externals'],
564 cwd=self.base_path, 564 cwd=self.base_path,
565 file_list=files_list) 565 file_list=files_list)
566 566
567 # Now we fall back on scm.update(). 567 # Now we fall back on scm.update().
568 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
569 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 568 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
569 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
570 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(False)
570 gclient_scm.os.path.exists(self.base_path).AndReturn(True) 571 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
571 gclient_scm.scm.SVN._CaptureInfo( 572 gclient_scm.scm.SVN._CaptureInfo(
572 [], join(self.base_path, ".")).AndReturn(file_info) 573 [], join(self.base_path, ".")).AndReturn(file_info)
573 gclient_scm.scm.SVN._CaptureInfo([file_info['URL']], None 574 gclient_scm.scm.SVN._CaptureInfo([file_info['URL']], None
574 ).AndReturn(file_info) 575 ).AndReturn(file_info)
575 576
576 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.' 577 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.'
577 ).AndReturn({'Revision': 100}) 578 ).AndReturn({'Revision': 100})
578 579
579 self.mox.ReplayAll() 580 self.mox.ReplayAll()
(...skipping 14 matching lines...) Expand all
594 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None 595 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None
595 ).AndReturn('1.5.1') 596 ).AndReturn('1.5.1')
596 gclient_scm.os.path.exists(join(self.base_path, '.svn')).AndReturn(True) 597 gclient_scm.os.path.exists(join(self.base_path, '.svn')).AndReturn(True)
597 598
598 # Verify no locked files. 599 # Verify no locked files.
599 gclient_scm.scm.SVN.CaptureStatus(None, join(self.base_path, '.') 600 gclient_scm.scm.SVN.CaptureStatus(None, join(self.base_path, '.')
600 ).AndReturn([]) 601 ).AndReturn([])
601 602
602 # Now we fall back on scm.update(). 603 # Now we fall back on scm.update().
603 files_list = self.mox.CreateMockAnything() 604 files_list = self.mox.CreateMockAnything()
604 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
605 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False) 605 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(False)
606 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
607 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(False)
606 gclient_scm.os.path.exists(self.base_path).AndReturn(True) 608 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
607 gclient_scm.scm.SVN._CaptureInfo( 609 gclient_scm.scm.SVN._CaptureInfo(
608 [], join(self.base_path, '.')).AndReturn(file_info) 610 [], join(self.base_path, '.')).AndReturn(file_info)
609 gclient_scm.scm.SVN._CaptureInfo([file_info['URL']], None 611 gclient_scm.scm.SVN._CaptureInfo([file_info['URL']], None
610 ).AndReturn(file_info) 612 ).AndReturn(file_info)
611 613
612 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.' 614 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.'
613 ).AndReturn({'Revision': 100}) 615 ).AndReturn({'Revision': 100})
614 616
615 self.mox.ReplayAll() 617 self.mox.ReplayAll()
616 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, 618 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
617 relpath=self.relpath) 619 relpath=self.relpath)
618 scm.updatesingle(options, ['DEPS'], files_list) 620 scm.updatesingle(options, ['DEPS'], files_list)
619 self.checkstdout('\n_____ %s at 42\n' % self.relpath) 621 self.checkstdout('\n_____ %s at 42\n' % self.relpath)
620 622
621 def testUpdateGit(self): 623 def testUpdateGit(self):
622 options = self.Options(verbose=True) 624 options = self.Options(verbose=True)
623 file_path = gclient_scm.os.path.join(self.root_dir, self.relpath, '.git') 625 file_path = gclient_scm.os.path.join(self.root_dir, self.relpath, '.hg')
624 gclient_scm.os.path.exists(file_path).AndReturn(True) 626 gclient_scm.os.path.exists(file_path).AndReturn(False)
627 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
628 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
629 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(False)
630 error = gclient_scm.subprocess2.CalledProcessError(
631 1, 'cmd', '/cwd', 'stdout', 'stderr')
632 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.').AndRaise(error)
633
634 dest_path = os.path.join(self.root_dir, '_bad_scm', self.relpath + '.1234')
635 self.mox.StubOutWithMock(gclient_scm.random, 'randint', True)
636 gclient_scm.random.randint(1000, 9999).AndReturn(1234)
637 self.mox.StubOutWithMock(gclient_scm.shutil, 'move', True)
638 gclient_scm.shutil.move(self.base_path, dest_path)
639 gclient_scm.os.path.exists(self.root_dir).AndReturn(True)
640 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None
641 ).AndReturn('1.5.1')
642 gclient_scm.scm.SVN.RunAndGetFileList(
643 options.verbose,
644 ['checkout', self.url, self.base_path, '--force', '--ignore-externals'],
645 cwd=self.root_dir,
646 file_list=[])
647
648 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.'
649 ).AndReturn({'Revision': 100})
650
651 self.mox.ReplayAll()
652 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
653 relpath=self.relpath)
654 scm.update(options, None, [])
655 self.checkstdout('_____ Conflicting directory found in %s. Moving to %s.\n'
656 % (self.base_path, dest_path))
657
658 def testUpdateGitForce(self):
659 options = self.Options(verbose=True, force=True)
660 file_path = gclient_scm.os.path.join(self.root_dir, self.relpath, '.hg')
661 gclient_scm.os.path.exists(file_path).AndReturn(False)
662 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
663 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
664 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(False)
665 error = gclient_scm.subprocess2.CalledProcessError(
666 1, 'cmd', '/cwd', 'stdout', 'stderr')
667 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.').AndRaise(error)
668 gclient_scm.gclient_utils.rmtree(self.base_path)
669 gclient_scm.os.path.exists(self.root_dir).AndReturn(True)
670 gclient_scm.scm.SVN.Capture(['--version', '--quiet'], None
671 ).AndReturn('1.5.1')
672 gclient_scm.scm.SVN.RunAndGetFileList(
673 options.verbose,
674 ['checkout', self.url, self.base_path, '--force', '--ignore-externals'],
675 cwd=self.root_dir,
676 file_list=[])
677
678 gclient_scm.scm.SVN._CaptureInfo([], self.base_path+'/.'
679 ).AndReturn({'Revision': 100})
625 680
626 self.mox.ReplayAll() 681 self.mox.ReplayAll()
627 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, 682 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
628 relpath=self.relpath) 683 relpath=self.relpath)
629 file_list = [] 684 file_list = []
630 scm.update(options, self.args, file_list) 685 scm.update(options, None, file_list)
686 self.checkstdout('_____ Conflicting directory found in %s. Removing.\n'
687 % self.base_path)
688
689 def testUpdateGitSvn(self):
690 options = self.Options(verbose=True)
691 file_path = gclient_scm.os.path.join(self.root_dir, self.relpath, '.hg')
692 gclient_scm.os.path.exists(file_path).AndReturn(False)
693 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
694 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
695 gclient_scm.scm.GIT.IsGitSvn(self.base_path).AndReturn(True)
696 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'Capture', True)
697 gclient_scm.scm.GIT.Capture(['config', '--local', '--get',
698 'svn-remote.svn.url'],
699 cwd=self.base_path).AndReturn(self.url)
700
701 self.mox.ReplayAll()
702 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
703 relpath=self.relpath)
704 file_list = []
705 scm.update(options, [], file_list)
631 self.checkstdout( 706 self.checkstdout(
632 ('________ found .git directory; skipping %s\n' % self.relpath)) 707 ('\n_____ %s looks like a git-svn checkout. Skipping.\n' % self.relpath)
708 )
633 709
634 def testUpdateHg(self): 710 def testUpdateHg(self):
635 options = self.Options(verbose=True) 711 options = self.Options(verbose=True)
636 gclient_scm.os.path.exists(join(self.base_path, '.git')).AndReturn(False)
637 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(True) 712 gclient_scm.os.path.exists(join(self.base_path, '.hg')).AndReturn(True)
638 713
639 self.mox.ReplayAll() 714 self.mox.ReplayAll()
640 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, 715 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
641 relpath=self.relpath) 716 relpath=self.relpath)
642 file_list = [] 717 file_list = []
643 scm.update(options, self.args, file_list) 718 scm.update(options, self.args, file_list)
644 self.checkstdout( 719 self.checkstdout(
645 ('________ found .hg directory; skipping %s\n' % self.relpath)) 720 ('________ found .hg directory; skipping %s\n' % self.relpath))
646 721
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
1191 self.assertEquals(git_svn_scm.GetUsableRev('3', options), 1266 self.assertEquals(git_svn_scm.GetUsableRev('3', options),
1192 self.fake_hash_2) 1267 self.fake_hash_2)
1193 # Given a git sha1 with a git-svn checkout, it should be used as is. 1268 # Given a git sha1 with a git-svn checkout, it should be used as is.
1194 self.assertEquals(git_svn_scm.GetUsableRev(self.fake_hash_1, options), 1269 self.assertEquals(git_svn_scm.GetUsableRev(self.fake_hash_1, options),
1195 self.fake_hash_1) 1270 self.fake_hash_1)
1196 # We currently check for seemingly valid SVN revisions by assuming 6 digit 1271 # We currently check for seemingly valid SVN revisions by assuming 6 digit
1197 # numbers, so assure that numeric revs >= 1000000 don't work. 1272 # numbers, so assure that numeric revs >= 1000000 don't work.
1198 self.assertRaises(gclient_scm.gclient_utils.Error, 1273 self.assertRaises(gclient_scm.gclient_utils.Error,
1199 git_svn_scm.GetUsableRev, too_big, options) 1274 git_svn_scm.GetUsableRev, too_big, options)
1200 1275
1276 def testUpdateNoDotGit(self):
1277 options = self.Options()
1278
1279 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
1280 gclient_scm.os.path.isdir(self.base_path).AndReturn(True)
1281 gclient_scm.os.path.exists(os.path.join(self.base_path, '.git')
1282 ).AndReturn(False)
1283 gclient_scm.os.path.isdir(self.base_path).AndReturn(True)
1284 gclient_scm.os.path.exists(os.path.join(self.base_path, '.git')
1285 ).AndReturn(False)
1286
1287 dest_path = os.path.join(self.root_dir, '_bad_scm', self.relpath + '.1234')
1288 self.mox.StubOutWithMock(gclient_scm.random, 'randint', True)
1289 gclient_scm.random.randint(1000, 9999).AndReturn(1234)
1290 self.mox.StubOutWithMock(gclient_scm.shutil, 'move', True)
1291 gclient_scm.shutil.move(self.base_path, dest_path)
1292 self.mox.StubOutWithMock(gclient_scm.GitWrapper, '_Clone', True)
1293 # pylint: disable=E1120
1294 gclient_scm.GitWrapper._Clone('refs/remotes/origin/master', self.url,
1295 options)
1296 # pylint: disable=E1120
1297 self.mox.StubOutWithMock(gclient_scm.GitWrapper, 'UpdateSubmoduleConfig',
1298 True)
1299 gclient_scm.GitWrapper.UpdateSubmoduleConfig()
1300 self.mox.StubOutWithMock(gclient_scm.subprocess2, 'check_output', True)
1301 gclient_scm.subprocess2.check_output(['git', 'ls-files'],
1302 cwd=self.base_path,
1303 stderr=gclient_scm.subprocess2.VOID,
1304 ).AndReturn('')
1305 gclient_scm.subprocess2.check_output(
1306 ['git', 'rev-parse', '--verify', 'HEAD'],
1307 cwd=self.base_path,
1308 stderr=gclient_scm.subprocess2.VOID,
1309 ).AndReturn('')
1310
1311 self.mox.ReplayAll()
1312 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
1313 relpath=self.relpath)
1314 scm.update(options, None, [])
1315 self.checkstdout(
1316 '_____ Conflicting directory found in %s. Moving to %s.\n\n'
1317 % (self.base_path, dest_path))
1318
1319 def testUpdateNoDotGitForce(self):
1320 options = self.Options(force=True)
1321
1322 gclient_scm.os.path.exists(self.base_path).AndReturn(True)
1323 gclient_scm.os.path.isdir(self.base_path).AndReturn(True)
1324 gclient_scm.os.path.exists(os.path.join(self.base_path, '.git')
1325 ).AndReturn(False)
1326 gclient_scm.os.path.isdir(self.base_path).AndReturn(True)
1327 gclient_scm.os.path.exists(os.path.join(self.base_path, '.git')
1328 ).AndReturn(False)
1329 gclient_scm.gclient_utils.rmtree(self.base_path)
1330 self.mox.StubOutWithMock(gclient_scm.GitWrapper, '_Clone', True)
1331 # pylint: disable=E1120
1332 gclient_scm.GitWrapper._Clone('refs/remotes/origin/master', self.url,
1333 options)
1334 # pylint: disable=E1120
1335 self.mox.StubOutWithMock(gclient_scm.GitWrapper, 'UpdateSubmoduleConfig',
1336 True)
1337 gclient_scm.GitWrapper.UpdateSubmoduleConfig()
1338 self.mox.StubOutWithMock(gclient_scm.subprocess2, 'check_output', True)
1339 gclient_scm.subprocess2.check_output(['git', 'ls-files'],
1340 cwd=self.base_path,
1341 stderr=gclient_scm.subprocess2.VOID,
1342 ).AndReturn('')
1343 gclient_scm.subprocess2.check_output(
1344 ['git', 'rev-parse', '--verify', 'HEAD'],
1345 cwd=self.base_path,
1346 stderr=gclient_scm.subprocess2.VOID,
1347 ).AndReturn('')
1348
1349 self.mox.ReplayAll()
1350 scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
1351 relpath=self.relpath)
1352 scm.update(options, None, [])
1353 self.checkstdout('_____ Conflicting directory found in %s. Removing.\n\n'
1354 % self.base_path)
1355
1201 1356
1202 class UnmanagedGitWrapperTestCase(BaseGitWrapperTestCase): 1357 class UnmanagedGitWrapperTestCase(BaseGitWrapperTestCase):
1203 def testUpdateUpdate(self): 1358 def testUpdateUpdate(self):
1204 if not self.enabled: 1359 if not self.enabled:
1205 return 1360 return
1206 options = self.Options() 1361 options = self.Options()
1207 expected_file_list = [] 1362 expected_file_list = []
1208 scm = gclient_scm.CreateSCM(url=self.url, root_dir=self.root_dir, 1363 scm = gclient_scm.CreateSCM(url=self.url, root_dir=self.root_dir,
1209 relpath=self.relpath) 1364 relpath=self.relpath)
1210 file_list = [] 1365 file_list = []
1211 options.revision = 'unmanaged' 1366 options.revision = 'unmanaged'
1212 scm.update(options, (), file_list) 1367 scm.update(options, (), file_list)
1213 self.assertEquals(file_list, expected_file_list) 1368 self.assertEquals(file_list, expected_file_list)
1214 self.assertEquals(scm.revinfo(options, (), None), 1369 self.assertEquals(scm.revinfo(options, (), None),
1215 '069c602044c5388d2d15c3f875b057c852003458') 1370 '069c602044c5388d2d15c3f875b057c852003458')
1216 self.checkstdout('________ unmanaged solution; skipping .\n') 1371 self.checkstdout('________ unmanaged solution; skipping .\n')
1217 1372
1218 1373
1219 if __name__ == '__main__': 1374 if __name__ == '__main__':
1220 if '-v' in sys.argv: 1375 if '-v' in sys.argv:
1221 logging.basicConfig( 1376 logging.basicConfig(
1222 level=logging.DEBUG, 1377 level=logging.DEBUG,
1223 format='%(asctime).19s %(levelname)s %(filename)s:' 1378 format='%(asctime).19s %(levelname)s %(filename)s:'
1224 '%(lineno)s %(message)s') 1379 '%(lineno)s %(message)s')
1225 unittest.main() 1380 unittest.main()
1226 1381
1227 # vim: ts=2:sw=2:tw=80:et: 1382 # vim: ts=2:sw=2:tw=80:et:
OLDNEW
« gclient_scm.py ('K') | « testing_support/fake_repos.py ('k') | tests/gclient_smoketest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698