1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
# Copyright 2010-2025 The pygit2 contributors
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2,
# as published by the Free Software Foundation.
#
# In addition to the permissions in the GNU General Public License,
# the authors give you unlimited permission to link the compiled
# version of this file into combinations with other programs,
# and to distribute those combinations without any restriction
# coming from the use of this file. (The General Public License
# restrictions do apply in other respects; for example, they cover
# modification of the file, and distribution when not linked into
# a combined executable.)
#
# This file is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
from pathlib import Path
import pytest
from pygit2 import Config
from . import utils
CONFIG_FILENAME = 'test_config'
@pytest.fixture
def config(testrepo):
yield testrepo.config
try:
Path(CONFIG_FILENAME).unlink()
except OSError:
pass
def test_config(config):
assert config is not None
def test_global_config():
try:
assert Config.get_global_config() is not None
except IOError:
# There is no user config
pass
def test_system_config():
try:
assert Config.get_system_config() is not None
except IOError:
# There is no system config
pass
def test_new():
# Touch file
open(CONFIG_FILENAME, 'w').close()
config_write = Config(CONFIG_FILENAME)
assert config_write is not None
config_write['core.bare'] = False
config_write['core.editor'] = 'ed'
config_read = Config(CONFIG_FILENAME)
assert 'core.bare' in config_read
assert not config_read.get_bool('core.bare')
assert 'core.editor' in config_read
assert config_read['core.editor'] == 'ed'
def test_add():
with open(CONFIG_FILENAME, 'w') as new_file:
new_file.write('[this]\n\tthat = true\n')
new_file.write('[something "other"]\n\there = false')
config = Config()
config.add_file(CONFIG_FILENAME, 0)
assert 'this.that' in config
assert config.get_bool('this.that')
assert 'something.other.here' in config
assert not config.get_bool('something.other.here')
def test_add_aspath():
with open(CONFIG_FILENAME, 'w') as new_file:
new_file.write('[this]\n\tthat = true\n')
config = Config()
config.add_file(Path(CONFIG_FILENAME), 0)
assert 'this.that' in config
def test_read(config):
with pytest.raises(TypeError):
config[()]
with pytest.raises(TypeError):
config[-4]
utils.assertRaisesWithArg(
ValueError, "invalid config item name 'abc'", lambda: config['abc']
)
utils.assertRaisesWithArg(KeyError, 'abc.def', lambda: config['abc.def'])
assert 'core.bare' in config
assert not config.get_bool('core.bare')
assert 'core.editor' in config
assert config['core.editor'] == 'ed'
assert 'core.repositoryformatversion' in config
assert config.get_int('core.repositoryformatversion') == 0
def test_write(config):
with pytest.raises(TypeError):
config.__setitem__((), 'This should not work')
assert 'core.dummy1' not in config
config['core.dummy1'] = 42
assert 'core.dummy1' in config
assert config.get_int('core.dummy1') == 42
assert 'core.dummy2' not in config
config['core.dummy2'] = 'foobar'
assert 'core.dummy2' in config
assert config['core.dummy2'] == 'foobar'
assert 'core.dummy3' not in config
config['core.dummy3'] = True
assert 'core.dummy3' in config
assert config['core.dummy3']
del config['core.dummy1']
assert 'core.dummy1' not in config
del config['core.dummy2']
assert 'core.dummy2' not in config
del config['core.dummy3']
assert 'core.dummy3' not in config
def test_multivar():
with open(CONFIG_FILENAME, 'w') as new_file:
new_file.write('[this]\n\tthat = foobar\n\tthat = foobeer\n')
config = Config()
config.add_file(CONFIG_FILENAME, 6)
assert 'this.that' in config
assert ['foobar', 'foobeer'] == list(config.get_multivar('this.that'))
assert ['foobar'] == list(config.get_multivar('this.that', 'bar'))
assert ['foobar', 'foobeer'] == list(config.get_multivar('this.that', 'foo.*'))
config.set_multivar('this.that', '^.*beer', 'fool')
assert ['fool'] == list(config.get_multivar('this.that', 'fool'))
config.set_multivar('this.that', 'foo.*', 'foo-123456')
assert ['foo-123456', 'foo-123456'] == list(
config.get_multivar('this.that', 'foo.*')
)
config.delete_multivar('this.that', 'bar')
assert ['foo-123456', 'foo-123456'] == list(config.get_multivar('this.that', ''))
config.delete_multivar('this.that', 'foo-[0-9]+')
assert [] == list(config.get_multivar('this.that', ''))
def test_iterator(config):
lst = {}
for entry in config:
assert entry.level > -1
lst[entry.name] = entry.value
assert 'core.bare' in lst
assert lst['core.bare']
def test_parsing():
assert Config.parse_bool('on')
assert Config.parse_bool('1')
assert 5 == Config.parse_int('5')
assert 1024 == Config.parse_int('1k')
|