chore: import upstream snapshot with attribution
CI / integration tests (3.13) (push) Failing after 1s
Commit lint / pull request title (push) Has been skipped
Docs / links (push) Failing after 1s
CI / unit tests (3.13) (push) Failing after 1s
CI / lint (push) Failing after 1s
CI / integration tests (push) Failing after 1s
CI / package build (push) Failing after 1s
Commit lint / commit messages (push) Failing after 1s
CI / unit tests (push) Failing after 1s
CI / integration tests (3.13) (push) Failing after 1s
Commit lint / pull request title (push) Has been skipped
Docs / links (push) Failing after 1s
CI / unit tests (3.13) (push) Failing after 1s
CI / lint (push) Failing after 1s
CI / integration tests (push) Failing after 1s
CI / package build (push) Failing after 1s
Commit lint / commit messages (push) Failing after 1s
CI / unit tests (push) Failing after 1s
This commit is contained in:
@@ -0,0 +1,134 @@
|
||||
"""``everos server start`` — argument resolution + uvicorn handoff.
|
||||
|
||||
Uvicorn ``run`` is the external boundary and is mocked. We assert the
|
||||
host/port/log_level resolution chain (CLI flag > env > default) and the
|
||||
KeyboardInterrupt / OSError exit paths.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import os
|
||||
|
||||
import pytest
|
||||
from typer.testing import CliRunner
|
||||
|
||||
from everos.entrypoints.cli.commands import server as server_mod
|
||||
from everos.entrypoints.cli.main import app as root_app
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def _isolate_env(monkeypatch: pytest.MonkeyPatch, tmp_path) -> None: # type: ignore[no-untyped-def]
|
||||
"""Strip EVEROS_* env vars so default resolution is deterministic."""
|
||||
for k in list(os.environ):
|
||||
if k.startswith("EVEROS_"):
|
||||
monkeypatch.delenv(k, raising=False)
|
||||
monkeypatch.delenv("EVEROS_LOG_LEVEL", raising=False)
|
||||
monkeypatch.setenv("EVEROS_ROOT", str(tmp_path))
|
||||
(tmp_path / "everos.toml").write_text("# test\n")
|
||||
from everos.config import load_settings
|
||||
|
||||
load_settings.cache_clear()
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def captured(monkeypatch: pytest.MonkeyPatch) -> dict[str, object]:
|
||||
"""Mock ``uvicorn.run`` and return the kwargs it was called with."""
|
||||
captured: dict[str, object] = {}
|
||||
|
||||
def fake_run(*args: object, **kwargs: object) -> None:
|
||||
captured["args"] = args
|
||||
captured["kwargs"] = kwargs
|
||||
|
||||
monkeypatch.setattr(server_mod.uvicorn, "run", fake_run)
|
||||
return captured
|
||||
|
||||
|
||||
def test_start_uses_default_host_port_log_level(captured: dict[str, object]) -> None:
|
||||
result = CliRunner().invoke(root_app, ["server", "start"])
|
||||
assert result.exit_code == 0, result.stdout
|
||||
kwargs = captured["kwargs"]
|
||||
assert isinstance(kwargs, dict)
|
||||
assert kwargs["host"] == "127.0.0.1"
|
||||
assert kwargs["port"] == 8000
|
||||
assert kwargs["log_level"] == "info"
|
||||
assert kwargs["factory"] is True
|
||||
args = captured["args"]
|
||||
assert args == ("everos.entrypoints.api.app:create_app",)
|
||||
|
||||
|
||||
def test_start_cli_flags_override_env(
|
||||
captured: dict[str, object], monkeypatch: pytest.MonkeyPatch
|
||||
) -> None:
|
||||
monkeypatch.setenv("EVEROS_API__HOST", "1.2.3.4")
|
||||
monkeypatch.setenv("EVEROS_API__PORT", "9000")
|
||||
monkeypatch.setenv("EVEROS_API__LOG_LEVEL", "debug")
|
||||
from everos.config import load_settings
|
||||
|
||||
load_settings.cache_clear()
|
||||
result = CliRunner().invoke(
|
||||
root_app,
|
||||
[
|
||||
"server",
|
||||
"start",
|
||||
"--host",
|
||||
"127.0.0.1",
|
||||
"--port",
|
||||
"8765",
|
||||
"--log-level",
|
||||
"warning",
|
||||
],
|
||||
)
|
||||
assert result.exit_code == 0, result.stdout
|
||||
kwargs = captured["kwargs"]
|
||||
assert isinstance(kwargs, dict)
|
||||
assert kwargs["host"] == "127.0.0.1"
|
||||
assert kwargs["port"] == 8765
|
||||
assert kwargs["log_level"] == "warning"
|
||||
|
||||
|
||||
def test_start_falls_back_to_env_when_flags_omitted(
|
||||
captured: dict[str, object], monkeypatch: pytest.MonkeyPatch
|
||||
) -> None:
|
||||
monkeypatch.setenv("EVEROS_API__HOST", "10.0.0.1")
|
||||
monkeypatch.setenv("EVEROS_API__PORT", "8765")
|
||||
from everos.config import load_settings
|
||||
|
||||
load_settings.cache_clear()
|
||||
result = CliRunner().invoke(root_app, ["server", "start"])
|
||||
assert result.exit_code == 0, result.stdout
|
||||
kwargs = captured["kwargs"]
|
||||
assert isinstance(kwargs, dict)
|
||||
assert kwargs["host"] == "10.0.0.1"
|
||||
assert kwargs["port"] == 8765
|
||||
|
||||
|
||||
def test_start_swallows_keyboard_interrupt(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||
def boom(*args: object, **kwargs: object) -> None:
|
||||
raise KeyboardInterrupt
|
||||
|
||||
monkeypatch.setattr(server_mod.uvicorn, "run", boom)
|
||||
result = CliRunner().invoke(root_app, ["server", "start"])
|
||||
assert result.exit_code == 0
|
||||
|
||||
|
||||
def test_start_exits_one_on_os_error(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||
def boom(*args: object, **kwargs: object) -> None:
|
||||
raise OSError("port in use")
|
||||
|
||||
monkeypatch.setattr(server_mod.uvicorn, "run", boom)
|
||||
result = CliRunner().invoke(root_app, ["server", "start"])
|
||||
assert result.exit_code == 1
|
||||
|
||||
|
||||
def test_start_with_root_option(
|
||||
captured: dict[str, object],
|
||||
monkeypatch: pytest.MonkeyPatch,
|
||||
tmp_path, # type: ignore[no-untyped-def]
|
||||
) -> None:
|
||||
"""``--root`` sets EVEROS_ROOT for settings resolution."""
|
||||
from everos.config import load_settings
|
||||
|
||||
load_settings.cache_clear()
|
||||
result = CliRunner().invoke(root_app, ["server", "start", "--root", str(tmp_path)])
|
||||
assert result.exit_code == 0, result.stdout
|
||||
assert "kwargs" in captured
|
||||
Reference in New Issue
Block a user