Commit 33a46ffb authored by tandrii's avatar tandrii Committed by Commit bot

git cl: workaround against integer overflows of git config.

R=maruel@chromium.org,phajdan.jr@chromium.org
BUG=640115

Review-Url: https://codereview.chromium.org/2272613002
parent e594e219
...@@ -176,10 +176,10 @@ def _git_get_branch_config_value(key, default=None, value_type=str, ...@@ -176,10 +176,10 @@ def _git_get_branch_config_value(key, default=None, value_type=str,
return default return default
args = ['config'] args = ['config']
if value_type == int: if value_type == bool:
args.append('--int')
elif value_type == bool:
args.append('--bool') args.append('--bool')
# git config also has --int, but apparently git config suffers from integer
# overflows (http://crbug.com/640115), so don't use it.
args.append(_git_branch_config_key(branch, key)) args.append(_git_branch_config_key(branch, key))
code, out = RunGitWithCode(args) code, out = RunGitWithCode(args)
if code == 0: if code == 0:
...@@ -208,10 +208,9 @@ def _git_set_branch_config_value(key, value, branch=None, **kwargs): ...@@ -208,10 +208,9 @@ def _git_set_branch_config_value(key, value, branch=None, **kwargs):
elif isinstance(value, bool): elif isinstance(value, bool):
args.append('--bool') args.append('--bool')
value = str(value).lower() value = str(value).lower()
elif isinstance(value, int):
args.append('--int')
value = str(value)
else: else:
# git config also has --int, but apparently git config suffers from integer
# overflows (http://crbug.com/640115), so don't use it.
value = str(value) value = str(value)
args.append(_git_branch_config_key(branch, key)) args.append(_git_branch_config_key(branch, key))
if value is not None: if value is not None:
......
...@@ -330,10 +330,10 @@ class TestGitCl(TestCase): ...@@ -330,10 +330,10 @@ class TestGitCl(TestCase):
def _git_base_calls(cls, similarity, find_copies): def _git_base_calls(cls, similarity, find_copies):
if similarity is None: if similarity is None:
similarity = '50' similarity = '50'
similarity_call = ((['git', 'config', '--int', similarity_call = ((['git', 'config',
'branch.master.git-cl-similarity'],), CERR1) 'branch.master.git-cl-similarity'],), CERR1)
else: else:
similarity_call = ((['git', 'config', '--int', similarity_call = ((['git', 'config',
'branch.master.git-cl-similarity', similarity],), '') 'branch.master.git-cl-similarity', similarity],), '')
if find_copies is None: if find_copies is None:
...@@ -360,8 +360,8 @@ class TestGitCl(TestCase): ...@@ -360,8 +360,8 @@ class TestGitCl(TestCase):
find_copies_call, find_copies_call,
] + cls._is_gerrit_calls() + [ ] + cls._is_gerrit_calls() + [
((['git', 'symbolic-ref', 'HEAD'],), 'master'), ((['git', 'symbolic-ref', 'HEAD'],), 'master'),
((['git', 'config', '--int', 'branch.master.rietveldissue'],), CERR1), ((['git', 'config', 'branch.master.rietveldissue'],), CERR1),
((['git', 'config', '--int', 'branch.master.gerritissue'],), CERR1), ((['git', 'config', 'branch.master.gerritissue'],), CERR1),
((['git', 'config', 'rietveld.server'],), ((['git', 'config', 'rietveld.server'],),
'codereview.example.com'), 'codereview.example.com'),
((['git', 'config', 'branch.master.merge'],), 'master'), ((['git', 'config', 'branch.master.merge'],), 'master'),
...@@ -374,7 +374,7 @@ class TestGitCl(TestCase): ...@@ -374,7 +374,7 @@ class TestGitCl(TestCase):
((['git', 'diff', '--name-status', '--no-renames', '-r', ((['git', 'diff', '--name-status', '--no-renames', '-r',
'fake_ancestor_sha...', '.'],), 'fake_ancestor_sha...', '.'],),
'M\t.gitignore\n'), 'M\t.gitignore\n'),
((['git', 'config', '--int', 'branch.master.rietveldpatchset'],), CERR1), ((['git', 'config', 'branch.master.rietveldpatchset'],), CERR1),
((['git', 'log', '--pretty=format:%s%n%n%b', ((['git', 'log', '--pretty=format:%s%n%n%b',
'fake_ancestor_sha...'],), 'fake_ancestor_sha...'],),
'foo'), 'foo'),
...@@ -413,11 +413,11 @@ class TestGitCl(TestCase): ...@@ -413,11 +413,11 @@ class TestGitCl(TestCase):
((['git', 'rev-parse', '--show-cdup'],), ''), ((['git', 'rev-parse', '--show-cdup'],), ''),
((['git', 'svn', 'info'],), ''), ((['git', 'svn', 'info'],), ''),
((['git', 'config', 'rietveld.project'],), ''), ((['git', 'config', 'rietveld.project'],), ''),
((['git', 'config', '--int', 'branch.master.rietveldissue', '1'],), ''), ((['git', 'config', 'branch.master.rietveldissue', '1'],), ''),
((['git', 'config', 'branch.master.rietveldserver', ((['git', 'config', 'branch.master.rietveldserver',
'https://codereview.example.com'],), ''), 'https://codereview.example.com'],), ''),
((['git', ((['git',
'config', '--int', 'branch.master.rietveldpatchset', '2'],), ''), 'config', 'branch.master.rietveldpatchset', '2'],), ''),
] + cls._git_post_upload_calls() ] + cls._git_post_upload_calls()
@classmethod @classmethod
...@@ -470,14 +470,14 @@ class TestGitCl(TestCase): ...@@ -470,14 +470,14 @@ class TestGitCl(TestCase):
None), None),
0)), 0)),
((['git', 'symbolic-ref', 'HEAD'],), 'refs/heads/working'), ((['git', 'symbolic-ref', 'HEAD'],), 'refs/heads/working'),
((['git', 'config', '--int', ((['git', 'config',
'branch.working.git-cl-similarity'],), CERR1), 'branch.working.git-cl-similarity'],), CERR1),
((['git', 'symbolic-ref', 'HEAD'],), 'refs/heads/working'), ((['git', 'symbolic-ref', 'HEAD'],), 'refs/heads/working'),
((['git', 'config', '--bool', ((['git', 'config', '--bool',
'branch.working.git-find-copies'],), CERR1), 'branch.working.git-find-copies'],), CERR1),
((['git', 'symbolic-ref', 'HEAD'],), 'refs/heads/working'), ((['git', 'symbolic-ref', 'HEAD'],), 'refs/heads/working'),
((['git', ((['git',
'config', '--int', 'branch.working.rietveldissue'],), '12345'), 'config', 'branch.working.rietveldissue'],), '12345'),
((['git', ((['git',
'config', 'rietveld.server'],), 'codereview.example.com'), 'config', 'rietveld.server'],), 'codereview.example.com'),
((['git', ((['git',
...@@ -514,7 +514,7 @@ class TestGitCl(TestCase): ...@@ -514,7 +514,7 @@ class TestGitCl(TestCase):
'.'],), '.'],),
'M\tPRESUBMIT.py'), 'M\tPRESUBMIT.py'),
((['git', ((['git',
'config', '--int', 'branch.working.rietveldpatchset'],), '31137'), 'config', 'branch.working.rietveldpatchset'],), '31137'),
((['git', 'config', 'branch.working.rietveldserver'],), ((['git', 'config', 'branch.working.rietveldserver'],),
'codereview.example.com'), 'codereview.example.com'),
((['git', 'config', 'user.email'],), 'author@example.com'), ((['git', 'config', 'user.email'],), 'author@example.com'),
...@@ -765,15 +765,15 @@ class TestGitCl(TestCase): ...@@ -765,15 +765,15 @@ class TestGitCl(TestCase):
def _gerrit_base_calls(cls, issue=None): def _gerrit_base_calls(cls, issue=None):
return [ return [
((['git', 'symbolic-ref', 'HEAD'],), 'master'), ((['git', 'symbolic-ref', 'HEAD'],), 'master'),
((['git', 'config', '--int', 'branch.master.git-cl-similarity'],), ((['git', 'config', 'branch.master.git-cl-similarity'],),
CERR1), CERR1),
((['git', 'symbolic-ref', 'HEAD'],), 'master'), ((['git', 'symbolic-ref', 'HEAD'],), 'master'),
((['git', 'config', '--bool', 'branch.master.git-find-copies'],), ((['git', 'config', '--bool', 'branch.master.git-find-copies'],),
CERR1), CERR1),
] + cls._is_gerrit_calls(True) + [ ] + cls._is_gerrit_calls(True) + [
((['git', 'symbolic-ref', 'HEAD'],), 'master'), ((['git', 'symbolic-ref', 'HEAD'],), 'master'),
((['git', 'config', '--int', 'branch.master.rietveldissue'],), CERR1), ((['git', 'config', 'branch.master.rietveldissue'],), CERR1),
((['git', 'config', '--int', 'branch.master.gerritissue'],), ((['git', 'config', 'branch.master.gerritissue'],),
CERR1 if issue is None else str(issue)), CERR1 if issue is None else str(issue)),
((['git', 'config', 'branch.master.merge'],), 'refs/heads/master'), ((['git', 'config', 'branch.master.merge'],), 'refs/heads/master'),
((['git', 'config', 'branch.master.remote'],), 'origin'), ((['git', 'config', 'branch.master.remote'],), 'origin'),
...@@ -791,7 +791,7 @@ class TestGitCl(TestCase): ...@@ -791,7 +791,7 @@ class TestGitCl(TestCase):
'diff', '--name-status', '--no-renames', '-r', 'diff', '--name-status', '--no-renames', '-r',
'fake_ancestor_sha...', '.'],), 'fake_ancestor_sha...', '.'],),
'M\t.gitignore\n'), 'M\t.gitignore\n'),
((['git', 'config', '--int', 'branch.master.gerritpatchset'],), CERR1), ((['git', 'config', 'branch.master.gerritpatchset'],), CERR1),
] + ([] if issue else [ ] + ([] if issue else [
((['git', ((['git',
'log', '--pretty=format:%s%n%n%b', 'fake_ancestor_sha...'],), 'log', '--pretty=format:%s%n%n%b', 'fake_ancestor_sha...'],),
...@@ -910,7 +910,7 @@ class TestGitCl(TestCase): ...@@ -910,7 +910,7 @@ class TestGitCl(TestCase):
] ]
if squash: if squash:
calls += [ calls += [
((['git', 'config', '--int', 'branch.master.gerritissue', '123456'],), ((['git', 'config', 'branch.master.gerritissue', '123456'],),
''), ''),
((['git', 'config', 'branch.master.gerritserver', ((['git', 'config', 'branch.master.gerritserver',
'https://chromium-review.googlesource.com'],), ''), 'https://chromium-review.googlesource.com'],), ''),
...@@ -1278,8 +1278,8 @@ class TestGitCl(TestCase): ...@@ -1278,8 +1278,8 @@ class TestGitCl(TestCase):
# These calls detect codereview to use. # These calls detect codereview to use.
self.calls += [ self.calls += [
((['git', 'symbolic-ref', 'HEAD'],), 'master'), ((['git', 'symbolic-ref', 'HEAD'],), 'master'),
((['git', 'config', '--int', 'branch.master.rietveldissue'],), CERR1), ((['git', 'config', 'branch.master.rietveldissue'],), CERR1),
((['git', 'config', '--int', 'branch.master.gerritissue'],), CERR1), ((['git', 'config', 'branch.master.gerritissue'],), CERR1),
((['git', 'config', 'rietveld.autoupdate'],), CERR1), ((['git', 'config', 'rietveld.autoupdate'],), CERR1),
] ]
...@@ -1304,12 +1304,12 @@ class TestGitCl(TestCase): ...@@ -1304,12 +1304,12 @@ class TestGitCl(TestCase):
'Description\n\n' + 'Description\n\n' +
'patch from issue 123456 at patchset 60001 ' + 'patch from issue 123456 at patchset 60001 ' +
'(http://crrev.com/123456#ps60001)'],), ''), '(http://crrev.com/123456#ps60001)'],), ''),
((['git', 'config', '--int', 'branch.master.rietveldissue', '123456'],), ((['git', 'config', 'branch.master.rietveldissue', '123456'],),
''), ''),
((['git', 'config', 'branch.master.rietveldserver'],), CERR1), ((['git', 'config', 'branch.master.rietveldserver'],), CERR1),
((['git', 'config', 'branch.master.rietveldserver', ((['git', 'config', 'branch.master.rietveldserver',
'https://codereview.example.com'],), ''), 'https://codereview.example.com'],), ''),
((['git', 'config', '--int', 'branch.master.rietveldpatchset', '60001'],), ((['git', 'config', 'branch.master.rietveldpatchset', '60001'],),
''), ''),
] ]
...@@ -1334,7 +1334,7 @@ class TestGitCl(TestCase): ...@@ -1334,7 +1334,7 @@ class TestGitCl(TestCase):
((['git', 'fetch', 'https://chromium.googlesource.com/my/repo', ((['git', 'fetch', 'https://chromium.googlesource.com/my/repo',
'refs/changes/56/123456/7'],), ''), 'refs/changes/56/123456/7'],), ''),
((['git', 'cherry-pick', 'FETCH_HEAD'],), ''), ((['git', 'cherry-pick', 'FETCH_HEAD'],), ''),
((['git', 'config', '--int', 'branch.master.gerritissue', '123456'],), ((['git', 'config', 'branch.master.gerritissue', '123456'],),
''), ''),
((['git', 'config', 'branch.master.gerritserver'],), ''), ((['git', 'config', 'branch.master.gerritserver'],), ''),
((['git', 'config', 'branch.master.merge'],), 'master'), ((['git', 'config', 'branch.master.merge'],), 'master'),
...@@ -1343,7 +1343,7 @@ class TestGitCl(TestCase): ...@@ -1343,7 +1343,7 @@ class TestGitCl(TestCase):
'https://chromium.googlesource.com/my/repo'), 'https://chromium.googlesource.com/my/repo'),
((['git', 'config', 'branch.master.gerritserver', ((['git', 'config', 'branch.master.gerritserver',
'https://chromium-review.googlesource.com'],), ''), 'https://chromium-review.googlesource.com'],), ''),
((['git', 'config', '--int', 'branch.master.gerritpatchset', '7'],), ''), ((['git', 'config', 'branch.master.gerritpatchset', '7'],), ''),
] ]
self.assertEqual(git_cl.main(['patch', '123456']), 0) self.assertEqual(git_cl.main(['patch', '123456']), 0)
...@@ -1354,7 +1354,7 @@ class TestGitCl(TestCase): ...@@ -1354,7 +1354,7 @@ class TestGitCl(TestCase):
'refs/changes/56/123456/7'],), ''), 'refs/changes/56/123456/7'],), ''),
((['git', 'cherry-pick', 'FETCH_HEAD'],), ''), ((['git', 'cherry-pick', 'FETCH_HEAD'],), ''),
((['git', 'symbolic-ref', 'HEAD'],), 'master'), ((['git', 'symbolic-ref', 'HEAD'],), 'master'),
((['git', 'config', '--int', 'branch.master.gerritissue', '123456'],), ((['git', 'config', 'branch.master.gerritissue', '123456'],),
''), ''),
((['git', 'config', 'branch.master.gerritserver'],), ''), ((['git', 'config', 'branch.master.gerritserver'],), ''),
((['git', 'config', 'branch.master.merge'],), 'master'), ((['git', 'config', 'branch.master.merge'],), 'master'),
...@@ -1363,7 +1363,7 @@ class TestGitCl(TestCase): ...@@ -1363,7 +1363,7 @@ class TestGitCl(TestCase):
'https://chromium.googlesource.com/my/repo'), 'https://chromium.googlesource.com/my/repo'),
((['git', 'config', 'branch.master.gerritserver', ((['git', 'config', 'branch.master.gerritserver',
'https://chromium-review.googlesource.com'],), ''), 'https://chromium-review.googlesource.com'],), ''),
((['git', 'config', '--int', 'branch.master.gerritpatchset', '7'],), ''), ((['git', 'config', 'branch.master.gerritpatchset', '7'],), ''),
] ]
self.assertEqual(git_cl.main(['patch', '--gerrit', '123456']), 0) self.assertEqual(git_cl.main(['patch', '--gerrit', '123456']), 0)
...@@ -1373,11 +1373,11 @@ class TestGitCl(TestCase): ...@@ -1373,11 +1373,11 @@ class TestGitCl(TestCase):
((['git', 'fetch', 'https://chromium.googlesource.com/my/repo', ((['git', 'fetch', 'https://chromium.googlesource.com/my/repo',
'refs/changes/56/123456/1'],), ''), 'refs/changes/56/123456/1'],), ''),
((['git', 'cherry-pick', 'FETCH_HEAD'],), ''), ((['git', 'cherry-pick', 'FETCH_HEAD'],), ''),
((['git', 'config', '--int', 'branch.master.gerritissue', '123456'],), ((['git', 'config', 'branch.master.gerritissue', '123456'],),
''), ''),
((['git', 'config', 'branch.master.gerritserver', ((['git', 'config', 'branch.master.gerritserver',
'https://chromium-review.googlesource.com'],), ''), 'https://chromium-review.googlesource.com'],), ''),
((['git', 'config', '--int', 'branch.master.gerritpatchset', '1'],), ''), ((['git', 'config', 'branch.master.gerritpatchset', '1'],), ''),
] ]
self.assertEqual(git_cl.main( self.assertEqual(git_cl.main(
['patch', 'https://chromium-review.googlesource.com/#/c/123456/1']), 0) ['patch', 'https://chromium-review.googlesource.com/#/c/123456/1']), 0)
...@@ -1496,7 +1496,7 @@ class TestGitCl(TestCase): ...@@ -1496,7 +1496,7 @@ class TestGitCl(TestCase):
lambda _, v: self._mocked_call(['SetFlags', v])) lambda _, v: self._mocked_call(['SetFlags', v]))
self.calls = [ self.calls = [
((['git', 'symbolic-ref', 'HEAD'],), 'feature'), ((['git', 'symbolic-ref', 'HEAD'],), 'feature'),
((['git', 'config', '--int', 'branch.feature.rietveldissue'],), '123'), ((['git', 'config', 'branch.feature.rietveldissue'],), '123'),
((['git', 'config', 'rietveld.autoupdate'],), ''), ((['git', 'config', 'rietveld.autoupdate'],), ''),
((['git', 'config', 'rietveld.server'],), ''), ((['git', 'config', 'rietveld.server'],), ''),
((['git', 'config', 'rietveld.server'],), ''), ((['git', 'config', 'rietveld.server'],), ''),
...@@ -1512,8 +1512,8 @@ class TestGitCl(TestCase): ...@@ -1512,8 +1512,8 @@ class TestGitCl(TestCase):
['SetReview', h, i, labels])) ['SetReview', h, i, labels]))
self.calls = [ self.calls = [
((['git', 'symbolic-ref', 'HEAD'],), 'feature'), ((['git', 'symbolic-ref', 'HEAD'],), 'feature'),
((['git', 'config', '--int', 'branch.feature.rietveldissue'],), CERR1), ((['git', 'config', 'branch.feature.rietveldissue'],), CERR1),
((['git', 'config', '--int', 'branch.feature.gerritissue'],), '123'), ((['git', 'config', 'branch.feature.gerritissue'],), '123'),
((['git', 'config', 'branch.feature.gerritserver'],), ((['git', 'config', 'branch.feature.gerritserver'],),
'https://chromium-review.googlesource.com'), 'https://chromium-review.googlesource.com'),
((['SetReview', 'chromium-review.googlesource.com', 123, ((['SetReview', 'chromium-review.googlesource.com', 123,
...@@ -1668,7 +1668,7 @@ class TestGitCl(TestCase): ...@@ -1668,7 +1668,7 @@ class TestGitCl(TestCase):
self.calls = [ self.calls = [
((['git', 'symbolic-ref', 'HEAD'],), 'feature'), ((['git', 'symbolic-ref', 'HEAD'],), 'feature'),
((['git', 'config', '--int', 'branch.feature.gerritissue'],), '123'), ((['git', 'config', 'branch.feature.gerritissue'],), '123'),
((['git', 'config', 'rietveld.autoupdate'],), CERR1), ((['git', 'config', 'rietveld.autoupdate'],), CERR1),
((['git', 'config', 'rietveld.bug-prefix'],), CERR1), ((['git', 'config', 'rietveld.bug-prefix'],), CERR1),
((['git', 'config', 'core.editor'],), 'vi'), ((['git', 'config', 'core.editor'],), 'vi'),
...@@ -1691,12 +1691,12 @@ class TestGitCl(TestCase): ...@@ -1691,12 +1691,12 @@ class TestGitCl(TestCase):
self.calls = \ self.calls = \
[((['git', 'for-each-ref', '--format=%(refname)', 'refs/heads'],), [((['git', 'for-each-ref', '--format=%(refname)', 'refs/heads'],),
'refs/heads/master\nrefs/heads/foo\nrefs/heads/bar'), 'refs/heads/master\nrefs/heads/foo\nrefs/heads/bar'),
((['git', 'config', '--int', 'branch.master.rietveldissue'],), '1'), ((['git', 'config', 'branch.master.rietveldissue'],), '1'),
((['git', 'config', 'rietveld.autoupdate'],), CERR1), ((['git', 'config', 'rietveld.autoupdate'],), CERR1),
((['git', 'config', 'rietveld.server'],), 'codereview.example.com'), ((['git', 'config', 'rietveld.server'],), 'codereview.example.com'),
((['git', 'config', '--int', 'branch.foo.rietveldissue'],), '456'), ((['git', 'config', 'branch.foo.rietveldissue'],), '456'),
((['git', 'config', '--int', 'branch.bar.rietveldissue'],), CERR1), ((['git', 'config', 'branch.bar.rietveldissue'],), CERR1),
((['git', 'config', '--int', 'branch.bar.gerritissue'],), '789'), ((['git', 'config', 'branch.bar.gerritissue'],), '789'),
((['git', 'symbolic-ref', 'HEAD'],), 'master'), ((['git', 'symbolic-ref', 'HEAD'],), 'master'),
((['git', 'tag', 'git-cl-archived-456-foo', 'foo'],), ''), ((['git', 'tag', 'git-cl-archived-456-foo', 'foo'],), ''),
((['git', 'branch', '-D', 'foo'],), '')] ((['git', 'branch', '-D', 'foo'],), '')]
...@@ -1723,7 +1723,7 @@ class TestGitCl(TestCase): ...@@ -1723,7 +1723,7 @@ class TestGitCl(TestCase):
self.calls = \ self.calls = \
[((['git', 'for-each-ref', '--format=%(refname)', 'refs/heads'],), [((['git', 'for-each-ref', '--format=%(refname)', 'refs/heads'],),
'refs/heads/master'), 'refs/heads/master'),
((['git', 'config', '--int', 'branch.master.rietveldissue'],), '1'), ((['git', 'config', 'branch.master.rietveldissue'],), '1'),
((['git', 'config', 'rietveld.autoupdate'],), CERR1), ((['git', 'config', 'rietveld.autoupdate'],), CERR1),
((['git', 'config', 'rietveld.server'],), 'codereview.example.com'), ((['git', 'config', 'rietveld.server'],), 'codereview.example.com'),
((['git', 'symbolic-ref', 'HEAD'],), 'master')] ((['git', 'symbolic-ref', 'HEAD'],), 'master')]
...@@ -1748,8 +1748,8 @@ class TestGitCl(TestCase): ...@@ -1748,8 +1748,8 @@ class TestGitCl(TestCase):
self.mock(git_cl.sys, 'stdout', out) self.mock(git_cl.sys, 'stdout', out)
self.calls = [ self.calls = [
((['git', 'symbolic-ref', 'HEAD'],), 'feature'), ((['git', 'symbolic-ref', 'HEAD'],), 'feature'),
((['git', 'config', '--int', 'branch.feature.rietveldissue'],), CERR1), ((['git', 'config', 'branch.feature.rietveldissue'],), CERR1),
((['git', 'config', '--int', 'branch.feature.gerritissue'],), '123'), ((['git', 'config', 'branch.feature.gerritissue'],), '123'),
# Let this command raise exception (retcode=1) - it should be ignored. # Let this command raise exception (retcode=1) - it should be ignored.
((['git', 'config', '--unset', 'branch.feature.last-upload-hash'],), ((['git', 'config', '--unset', 'branch.feature.last-upload-hash'],),
CERR1), CERR1),
...@@ -1766,7 +1766,7 @@ class TestGitCl(TestCase): ...@@ -1766,7 +1766,7 @@ class TestGitCl(TestCase):
self.mock(git_cl.sys, 'stdout', out) self.mock(git_cl.sys, 'stdout', out)
self.calls = [ self.calls = [
((['git', 'symbolic-ref', 'HEAD'],), 'feature'), ((['git', 'symbolic-ref', 'HEAD'],), 'feature'),
((['git', 'config', '--int', 'branch.feature.rietveldissue'],), '123'), ((['git', 'config', 'branch.feature.rietveldissue'],), '123'),
((['git', 'config', 'rietveld.autoupdate'],), ''), ((['git', 'config', 'rietveld.autoupdate'],), ''),
((['git', 'config', 'rietveld.server'],), ((['git', 'config', 'rietveld.server'],),
'https://codereview.chromium.org'), 'https://codereview.chromium.org'),
...@@ -1791,7 +1791,7 @@ class TestGitCl(TestCase): ...@@ -1791,7 +1791,7 @@ class TestGitCl(TestCase):
lambda _, s: self._mocked_call(['SetCQState', s])) lambda _, s: self._mocked_call(['SetCQState', s]))
self.calls = [ self.calls = [
((['git', 'symbolic-ref', 'HEAD'],), 'feature'), ((['git', 'symbolic-ref', 'HEAD'],), 'feature'),
((['git', 'config', '--int', 'branch.feature.rietveldissue'],), '123'), ((['git', 'config', 'branch.feature.rietveldissue'],), '123'),
((['git', 'config', 'rietveld.autoupdate'],), ''), ((['git', 'config', 'rietveld.autoupdate'],), ''),
((['git', 'config', 'rietveld.server'],), ((['git', 'config', 'rietveld.server'],),
'https://codereview.chromium.org'), 'https://codereview.chromium.org'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment