git_config: handle configuration entries with no values

A git-config entry with no value was preventing repo
from initializing.  This modifies _ReadGit() to handle
config entries with empty values.

Signed-off-by: David Aguilar <davvid@gmail.com>
Reported-by: Josh Guilfoyle <jasta00@gmail.com>
This commit is contained in:
David Aguilar 2009-06-28 15:09:16 -07:00
parent e020ebee4e
commit 438c54713a
3 changed files with 59 additions and 8 deletions

View File

@ -259,21 +259,26 @@ class GitConfig(object):
os.remove(self._pickle) os.remove(self._pickle)
def _ReadGit(self): def _ReadGit(self):
d = self._do('--null', '--list') """
c = {} Read configuration data from git.
while d:
lf = d.index('\n')
nul = d.index('\0', lf + 1)
key = _key(d[0:lf]) This internal method populates the GitConfig cache.
val = d[lf + 1:nul]
"""
d = self._do('--null', '--list').rstrip('\0')
c = {}
for line in d.split('\0'):
if '\n' in line:
key, val = line.split('\n', 1)
else:
key = line
val = None
if key in c: if key in c:
c[key].append(val) c[key].append(val)
else: else:
c[key] = [val] c[key] = [val]
d = d[nul + 1:]
return c return c
def _do(self, *args): def _do(self, *args):

3
tests/fixtures/test.gitconfig vendored Normal file
View File

@ -0,0 +1,3 @@
[section]
empty
nonempty = true

43
tests/test_git_config.py Normal file
View File

@ -0,0 +1,43 @@
import os
import unittest
import git_config
def fixture(*paths):
"""Return a path relative to test/fixtures.
"""
return os.path.join(os.path.dirname(__file__), 'fixtures', *paths)
class GitConfigUnitTest(unittest.TestCase):
"""Tests the GitConfig class.
"""
def setUp(self):
"""Create a GitConfig object using the test.gitconfig fixture.
"""
config_fixture = fixture('test.gitconfig')
self.config = git_config.GitConfig(config_fixture)
def test_GetString_with_empty_config_values(self):
"""
Test config entries with no value.
[section]
empty
"""
val = self.config.GetString('section.empty')
self.assertEqual(val, None)
def test_GetString_with_true_value(self):
"""
Test config entries with a string value.
[section]
nonempty = true
"""
val = self.config.GetString('section.nonempty')
self.assertEqual(val, 'true')
if __name__ == '__main__':
unittest.main()