Test disabled request timeout config

This commit is contained in:
Edern Deneuville
2026-09-11 13:44:28 +02:00
parent c117ef5440
commit 727caa62c4
+9
View File
@@ -16,6 +16,15 @@ def test_load_default_config(tmp_path):
assert "Réponds directement" in cfg.system_prompt
def test_timeout_zero_disables_timeout(tmp_path):
path = tmp_path / "config.json"
path.write_text(json.dumps({"provider": "ollama", "request_timeout_seconds": 0}), encoding="utf-8")
cfg = load_config(path)
assert cfg.request_timeout_seconds is None
def test_reject_invalid_provider(tmp_path):
path = tmp_path / "config.json"
path.write_text(json.dumps({"provider": "bad"}), encoding="utf-8")