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
|
# Copyright 2010-2020 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.
import pygit2
from pygit2 import option, GIT_OBJ_BLOB
def __option(getter, setter, value):
old_value = option(getter)
option(setter, value)
assert value == option(getter)
# Reset to avoid side effects in later tests
option(setter, old_value)
def __proxy(name, value):
old_value = getattr(pygit2.settings, name)
setattr(pygit2.settings, name, value)
assert value == getattr(pygit2.settings, name)
# Reset to avoid side effects in later tests
setattr(pygit2.settings, name, old_value)
def test_mwindow_size():
__option(
pygit2.GIT_OPT_GET_MWINDOW_SIZE,
pygit2.GIT_OPT_SET_MWINDOW_SIZE,
200 * 1024)
def test_mwindow_size_proxy():
__proxy('mwindow_size', 300 * 1024)
def test_mwindow_mapped_limit_200():
__option(
pygit2.GIT_OPT_GET_MWINDOW_MAPPED_LIMIT,
pygit2.GIT_OPT_SET_MWINDOW_MAPPED_LIMIT,
200 * 1024)
def test_mwindow_mapped_limit_300():
__proxy('mwindow_mapped_limit', 300 * 1024)
def test_cache_object_limit():
new_limit = 2 * 1024
option(pygit2.GIT_OPT_SET_CACHE_OBJECT_LIMIT, GIT_OBJ_BLOB, new_limit)
def test_cache_object_limit_proxy():
new_limit = 4 * 1024
pygit2.settings.cache_object_limit(GIT_OBJ_BLOB, new_limit)
def test_cached_memory():
value = option(pygit2.GIT_OPT_GET_CACHED_MEMORY)
assert value[1] == 256 * 1024**2
def test_cached_memory_proxy():
assert pygit2.settings.cached_memory[1] == 256 * 1024**2
def test_enable_caching():
pygit2.settings.enable_caching(False)
pygit2.settings.enable_caching(True)
# Lower level API
option(pygit2.GIT_OPT_ENABLE_CACHING, False)
option(pygit2.GIT_OPT_ENABLE_CACHING, True)
def test_disable_pack_keep_file_checks():
pygit2.settings.disable_pack_keep_file_checks(False)
pygit2.settings.disable_pack_keep_file_checks(True)
# Lower level API
option(pygit2.GIT_OPT_DISABLE_PACK_KEEP_FILE_CHECKS, False)
option(pygit2.GIT_OPT_DISABLE_PACK_KEEP_FILE_CHECKS, True)
def test_cache_max_size_proxy():
pygit2.settings.cache_max_size(128 * 1024**2)
assert pygit2.settings.cached_memory[1] == 128 * 1024**2
pygit2.settings.cache_max_size(256 * 1024**2)
assert pygit2.settings.cached_memory[1] == 256 * 1024**2
def test_search_path():
paths = [(pygit2.GIT_CONFIG_LEVEL_GLOBAL, '/tmp/global'),
(pygit2.GIT_CONFIG_LEVEL_XDG, '/tmp/xdg'),
(pygit2.GIT_CONFIG_LEVEL_SYSTEM, '/tmp/etc')]
for level, path in paths:
option(pygit2.GIT_OPT_SET_SEARCH_PATH, level, path)
assert path == option(pygit2.GIT_OPT_GET_SEARCH_PATH, level)
def test_search_path_proxy():
paths = [(pygit2.GIT_CONFIG_LEVEL_GLOBAL, '/tmp2/global'),
(pygit2.GIT_CONFIG_LEVEL_XDG, '/tmp2/xdg'),
(pygit2.GIT_CONFIG_LEVEL_SYSTEM, '/tmp2/etc')]
for level, path in paths:
pygit2.settings.search_path[level] = path
assert path == pygit2.settings.search_path[level]
|