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

Side by Side Diff: tests/git_common_test.py

Issue 1150663002: Disable tests that break because of git 2.4 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Replace double quotes by single quotes. Created 5 years, 7 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
« no previous file with comments | « testing_support/coverage_utils.py ('k') | tests/git_number_test.py » ('j') | 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 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 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 git_common.py""" 6 """Unit tests for git_common.py"""
7 7
8 import binascii 8 import binascii
9 import collections 9 import collections
10 import os 10 import os
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 223
224 def testCurrentBranch(self): 224 def testCurrentBranch(self):
225 def cur_branch_out_of_git(): 225 def cur_branch_out_of_git():
226 os.chdir('..') 226 os.chdir('..')
227 return self.gc.current_branch() 227 return self.gc.current_branch()
228 self.assertIsNone(self.repo.run(cur_branch_out_of_git)) 228 self.assertIsNone(self.repo.run(cur_branch_out_of_git))
229 229
230 self.repo.git('checkout', 'branch_D') 230 self.repo.git('checkout', 'branch_D')
231 self.assertEqual(self.repo.run(self.gc.current_branch), 'branch_D') 231 self.assertEqual(self.repo.run(self.gc.current_branch), 'branch_D')
232 232
233 @unittest.skip('broken by git 2.4')
233 def testBranches(self): 234 def testBranches(self):
235 # This check fails with git 2.4 (see crbug.com/487172)
234 self.assertEqual(self.repo.run(set, self.gc.branches()), 236 self.assertEqual(self.repo.run(set, self.gc.branches()),
iannucci 2015/05/22 09:59:56 looks like the branches() function is broken then?
Adrian Kuegel 2015/05/22 10:08:13 Here is the error message: FAIL: testBranches (__
235 {'master', 'branch_D', 'root_A'}) 237 {'master', 'branch_D', 'root_A'})
236 238
237 def testDormant(self): 239 def testDormant(self):
238 self.assertFalse(self.repo.run(self.gc.is_dormant, 'master')) 240 self.assertFalse(self.repo.run(self.gc.is_dormant, 'master'))
239 self.repo.git('config', 'branch.master.dormant', 'true') 241 self.repo.git('config', 'branch.master.dormant', 'true')
240 self.assertTrue(self.repo.run(self.gc.is_dormant, 'master')) 242 self.assertTrue(self.repo.run(self.gc.is_dormant, 'master'))
241 243
242 def testParseCommitrefs(self): 244 def testParseCommitrefs(self):
243 ret = self.repo.run( 245 ret = self.repo.run(
244 self.gc.parse_commitrefs, *[ 246 self.gc.parse_commitrefs, *[
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 COMMIT_L = {'file': {'data': 'L'}} 441 COMMIT_L = {'file': {'data': 'L'}}
440 442
441 def setUp(self): 443 def setUp(self):
442 super(GitMutableStructuredTest, self).setUp() 444 super(GitMutableStructuredTest, self).setUp()
443 self.repo.git('branch', '--set-upstream-to', 'root_X', 'branch_Z') 445 self.repo.git('branch', '--set-upstream-to', 'root_X', 'branch_Z')
444 self.repo.git('branch', '--set-upstream-to', 'branch_G', 'branch_K') 446 self.repo.git('branch', '--set-upstream-to', 'branch_G', 'branch_K')
445 self.repo.git('branch', '--set-upstream-to', 'branch_K', 'branch_L') 447 self.repo.git('branch', '--set-upstream-to', 'branch_K', 'branch_L')
446 self.repo.git('branch', '--set-upstream-to', 'root_A', 'branch_G') 448 self.repo.git('branch', '--set-upstream-to', 'root_A', 'branch_G')
447 self.repo.git('branch', '--set-upstream-to', 'root_X', 'root_A') 449 self.repo.git('branch', '--set-upstream-to', 'root_X', 'root_A')
448 450
451 @unittest.skip('broken by git 2.4')
449 def testTooManyBranches(self): 452 def testTooManyBranches(self):
450 for i in xrange(30): 453 for i in xrange(30):
451 self.repo.git('branch', 'a'*i) 454 self.repo.git('branch', 'a'*i)
452 455
453 _, rslt = self.repo.capture_stdio(list, self.gc.branches()) 456 _, rslt = self.repo.capture_stdio(list, self.gc.branches())
454 self.assertIn('too many branches (39/20)', rslt) 457 self.assertIn('too many branches (39/20)', rslt)
455 458
456 self.repo.git('config', 'depot-tools.branch-limit', 'cat') 459 self.repo.git('config', 'depot-tools.branch-limit', 'cat')
457 460
458 _, rslt = self.repo.capture_stdio(list, self.gc.branches()) 461 _, rslt = self.repo.capture_stdio(list, self.gc.branches())
459 self.assertIn('too many branches (39/20)', rslt) 462 self.assertIn('too many branches (39/20)', rslt)
460 463
461 self.repo.git('config', 'depot-tools.branch-limit', '100') 464 self.repo.git('config', 'depot-tools.branch-limit', '100')
462 465
463 # should not raise 466 # should not raise
467 # This check fails with git 2.4 (see crbug.com/487172)
464 self.assertEqual(38, len(self.repo.run(list, self.gc.branches()))) 468 self.assertEqual(38, len(self.repo.run(list, self.gc.branches())))
465 469
466 def testMergeBase(self): 470 def testMergeBase(self):
467 self.repo.git('checkout', 'branch_K') 471 self.repo.git('checkout', 'branch_K')
468 472
469 self.assertEqual( 473 self.assertEqual(
470 self.repo['B'], 474 self.repo['B'],
471 self.repo.run(self.gc.get_or_create_merge_base, 'branch_K', 'branch_G') 475 self.repo.run(self.gc.get_or_create_merge_base, 'branch_K', 'branch_G')
472 ) 476 )
473 477
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 # base and recompute it. 528 # base and recompute it.
525 self.repo.run(self.gc.run, 'branch', '-u', 'root_A') 529 self.repo.run(self.gc.run, 'branch', '-u', 'root_A')
526 self.assertEqual( 530 self.assertEqual(
527 self.repo['A'], 531 self.repo['A'],
528 self.repo.run(self.gc.get_or_create_merge_base, 'branch_K') 532 self.repo.run(self.gc.get_or_create_merge_base, 'branch_K')
529 ) 533 )
530 534
531 self.assertIsNone( 535 self.assertIsNone(
532 self.repo.run(self.gc.get_or_create_merge_base, 'branch_DOG')) 536 self.repo.run(self.gc.get_or_create_merge_base, 'branch_DOG'))
533 537
538 @unittest.skip('broken by git 2.4')
534 def testGetBranchTree(self): 539 def testGetBranchTree(self):
535 skipped, tree = self.repo.run(self.gc.get_branch_tree) 540 skipped, tree = self.repo.run(self.gc.get_branch_tree)
541 # This check fails with git 2.4 (see crbug.com/487172)
536 self.assertEqual(skipped, {'master', 'root_X', 'branch_DOG', 'root_CAT'}) 542 self.assertEqual(skipped, {'master', 'root_X', 'branch_DOG', 'root_CAT'})
537 self.assertEqual(tree, { 543 self.assertEqual(tree, {
538 'branch_G': 'root_A', 544 'branch_G': 'root_A',
539 'root_A': 'root_X', 545 'root_A': 'root_X',
540 'branch_K': 'branch_G', 546 'branch_K': 'branch_G',
541 'branch_L': 'branch_K', 547 'branch_L': 'branch_K',
542 'branch_Z': 'root_X' 548 'branch_Z': 'root_X'
543 }) 549 })
544 550
545 topdown = list(self.gc.topo_iter(tree)) 551 topdown = list(self.gc.topo_iter(tree))
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 self.assertIsNone(self.gc.thaw()) 724 self.assertIsNone(self.gc.thaw())
719 self.assertIsNotNone(self.gc.thaw()) # One thaw should thaw everything 725 self.assertIsNotNone(self.gc.thaw()) # One thaw should thaw everything
720 726
721 self.assertEquals(self.repo.git('status', '--porcelain').stdout, STATUS_1) 727 self.assertEquals(self.repo.git('status', '--porcelain').stdout, STATUS_1)
722 728
723 self.repo.run(inner) 729 self.repo.run(inner)
724 730
725 731
726 if __name__ == '__main__': 732 if __name__ == '__main__':
727 sys.exit(coverage_utils.covered_main( 733 sys.exit(coverage_utils.covered_main(
728 os.path.join(DEPOT_TOOLS_ROOT, 'git_common.py') 734 os.path.join(DEPOT_TOOLS_ROOT, 'git_common.py'),
735 required_percentage=88.0
729 )) 736 ))
OLDNEW
« no previous file with comments | « testing_support/coverage_utils.py ('k') | tests/git_number_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698