mirror of
https://github.com/aclist/dztui.git
synced 2026-08-29 19:27:13 +02:00
chore: add realconfig namespace to local file tests
This commit is contained in:
parent
9b63d38c5a
commit
3f037cdad6
@ -7,13 +7,12 @@ from dzgui.config.xdg import get_xdg_paths, parse_filepaths
|
|||||||
from dzgui.config import convert
|
from dzgui.config import convert
|
||||||
from tests.fixtures import fixture_path
|
from tests.fixtures import fixture_path
|
||||||
|
|
||||||
pytestmark = pytest.mark.config
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def legacy_config():
|
def legacy_config():
|
||||||
return fixture_path("dztuirc_1")
|
return fixture_path("dztuirc_1")
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def unset_values():
|
def unset_values():
|
||||||
return fixture_path("dztuirc_3")
|
return fixture_path("dztuirc_3")
|
||||||
@ -38,6 +37,7 @@ def keys():
|
|||||||
|
|
||||||
# TODO: use a static fixture instead of system config
|
# TODO: use a static fixture instead of system config
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
|
@pytest.mark.realconfig
|
||||||
def config():
|
def config():
|
||||||
paths = get_xdg_paths()
|
paths = get_xdg_paths()
|
||||||
xdg = parse_filepaths(paths)
|
xdg = parse_filepaths(paths)
|
||||||
@ -45,18 +45,21 @@ def config():
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.post_install
|
@pytest.mark.post_install
|
||||||
|
@pytest.mark.realconfig
|
||||||
def test_invalid_config_value(config):
|
def test_invalid_config_value(config):
|
||||||
with pytest.raises(Exception):
|
with pytest.raises(Exception):
|
||||||
assert config["foo"] is None
|
assert config["foo"] is None
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.post_install
|
@pytest.mark.post_install
|
||||||
|
@pytest.mark.realconfig
|
||||||
def test_default_config_values(keys, config):
|
def test_default_config_values(keys, config):
|
||||||
for key in keys:
|
for key in keys:
|
||||||
assert config[key] is not None
|
assert config[key] is not None
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.post_install
|
@pytest.mark.post_install
|
||||||
|
@pytest.mark.realconfig
|
||||||
def test_contains_invalid_values(keys, config):
|
def test_contains_invalid_values(keys, config):
|
||||||
for key in config:
|
for key in config:
|
||||||
assert key in keys
|
assert key in keys
|
||||||
@ -91,6 +94,7 @@ def test_key_conversion(legacy_config):
|
|||||||
for key in keys:
|
for key in keys:
|
||||||
assert key not in j
|
assert key not in j
|
||||||
|
|
||||||
|
|
||||||
def test_missing_values(unset_values):
|
def test_missing_values(unset_values):
|
||||||
j = convert.rc2json(unset_values)
|
j = convert.rc2json(unset_values)
|
||||||
j = json.loads(j)
|
j = json.loads(j)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user