feat: rewrite validation, rename built-in vars, bump python version

This commit is contained in:
Igor Ovsyannikov
2026-08-04 21:50:37 +03:00
parent 992829d163
commit 2c6000d56e
12 changed files with 428 additions and 295 deletions
+57 -9
View File
@@ -1,6 +1,9 @@
from pathlib import Path
from lohup.app import Lohup
from lohup.config import ConfigError
from lohup.logger import BasicLogger, LogLevel
from lohup.util import DeepValidator, ValidationFailed
import pytest
@@ -10,7 +13,7 @@ toml1 = """
toml2 = """
[[hooks.before-all]]
kind = "unknown"
kind = "???"
foo = "bar"
[repos.local]
@@ -19,29 +22,45 @@ path = "{base}/repo"
repo-key-file = "{pwfile}"
"""
toml_vars = """
[settings.globals]
foo = "$bar"
baz = "1"
bag = 2
[repos.local]
kind = "local"
path = "$foo"
repo-key-file = "$unknown"
"""
class RepoEnvironment:
def __init__(self, tmp_path):
def __init__(self, tmp_path: Path):
self.basepath = tmp_path
self.log = BasicLogger(level=LogLevel.DEBUG)
def write_password(self, value: str = "1"):
def write_password(self, value: str = "1") -> Path:
pth = self.basepath / "password.txt"
pth.write_text("1")
return pth
def write_config(self, value: str) -> Path:
pth = self.basepath / "lohup.toml"
pth.write_text(value)
return pth
def test_error_message(tmp_path):
env = RepoEnvironment(tmp_path)
pwfile = env.write_password()
path = tmp_path / "lohup.toml"
path.write_text(toml1.format(base=tmp_path, pwfile=pwfile))
app = Lohup(config_path=path, logger=env.log)
path.write_text(toml1)
app = Lohup(config_path=str(path), logger=env.log)
msg = "no repositories defined"
with pytest.raises(ConfigError, match="Failed to parse TOML config") as exc:
app.load()
env.log.error(exc.value)
assert str(exc.value.__cause__) == msg
cause = exc.value.__cause__
assert isinstance(cause, ValidationFailed) and msg in cause.messages
def test_hook_error(tmp_path):
@@ -51,8 +70,37 @@ def test_hook_error(tmp_path):
path = tmp_path / "lohup.toml"
path.write_text(toml2.format(base=tmp_path, pwfile=pwfile))
app = Lohup(config_path=path, logger=env.log)
msg = "hook: Unsupported before-all: unknown"
msg = "hook: before-all: unsupported kind: ???"
with pytest.raises(ConfigError, match="Failed to parse TOML config") as exc:
app.load()
env.log.error(exc.value)
assert str(exc.value.__cause__) == msg
cause = exc.value.__cause__
assert isinstance(cause, ValidationFailed) and msg in cause.messages
def test_invalid_vars(tmp_path):
env = RepoEnvironment(tmp_path)
path = env.write_config(toml_vars)
app = Lohup(config_path=str(path), logger=env.log)
lines = [
"settings: variable 'foo': nested variables in globals are not allowed",
"settings: variable 'bag': invalid type: int, expected string",
"repo 'local': read repo-key-file: variable 'unknown' is not defined"
]
with pytest.raises(ConfigError, match="Failed to parse TOML config") as exc:
app.load()
env.log.error(exc.value)
cause = exc.value.__cause__
assert isinstance(cause, ValidationFailed)
for exc in cause.exceptions:
env.log.error(exc.value)
assert set(lines) == set(cause.messages)
def test_validator():
validator = DeepValidator("testing")
with validator.inner("read config") as inner:
with inner.inner("key 'foo'") as children:
children.error("expected string")
res = validator.check()
assert isinstance(res, ValidationFailed)
assert len(res.messages) == 1, "expected error during validation"
assert res.messages[0] == "testing: read config: key 'foo': expected string"