4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
74 lines
2.4 KiB
Python
74 lines
2.4 KiB
Python
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from platform.deployment.ecr_deploy import lifecycle
|
|
|
|
|
|
def test_cleanup_skips_when_no_existing_deployment(
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
monkeypatch.setattr(lifecycle, "outputs_exists", lambda: False)
|
|
monkeypatch.setattr(lifecycle, "find_stack_instance_ids", lambda *_args, **_kwargs: [])
|
|
|
|
assert lifecycle.cleanup_existing_deployment() is False
|
|
|
|
|
|
def test_cleanup_terminates_orphans_then_runs_destroy(
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
terminated: list[str] = []
|
|
destroy_calls: list[int] = []
|
|
|
|
monkeypatch.delenv("OPENSRE_DEPLOY_ABORT_IF_EXISTS", raising=False)
|
|
monkeypatch.setattr(lifecycle, "outputs_exists", lambda: True)
|
|
monkeypatch.setattr(
|
|
lifecycle,
|
|
"find_stack_instance_ids",
|
|
lambda *_args, **_kwargs: ["i-old", "i-current"],
|
|
)
|
|
monkeypatch.setattr(
|
|
lifecycle,
|
|
"terminate_instance",
|
|
lambda instance_id, _region: terminated.append(instance_id),
|
|
)
|
|
monkeypatch.setattr(lifecycle, "destroy", lambda: destroy_calls.append(1))
|
|
|
|
assert lifecycle.cleanup_existing_deployment() is True
|
|
assert terminated == ["i-old", "i-current"]
|
|
assert destroy_calls == [1]
|
|
|
|
|
|
def test_cleanup_terminates_orphans_without_outputs(
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
terminated: list[str] = []
|
|
destroy_calls: list[int] = []
|
|
|
|
monkeypatch.delenv("OPENSRE_DEPLOY_ABORT_IF_EXISTS", raising=False)
|
|
monkeypatch.setattr(lifecycle, "outputs_exists", lambda: False)
|
|
monkeypatch.setattr(
|
|
lifecycle, "find_stack_instance_ids", lambda *_args, **_kwargs: ["i-orphan"]
|
|
)
|
|
monkeypatch.setattr(
|
|
lifecycle,
|
|
"terminate_instance",
|
|
lambda instance_id, _region: terminated.append(instance_id),
|
|
)
|
|
monkeypatch.setattr(lifecycle, "destroy", lambda: destroy_calls.append(1))
|
|
|
|
assert lifecycle.cleanup_existing_deployment() is True
|
|
assert terminated == ["i-orphan"]
|
|
assert destroy_calls == []
|
|
|
|
|
|
def test_cleanup_aborts_when_env_var_set(
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
monkeypatch.setenv("OPENSRE_DEPLOY_ABORT_IF_EXISTS", "1")
|
|
monkeypatch.setattr(lifecycle, "outputs_exists", lambda: True)
|
|
monkeypatch.setattr(lifecycle, "find_stack_instance_ids", lambda *_args, **_kwargs: ["i-123"])
|
|
|
|
with pytest.raises(RuntimeError, match="Existing deployment detected"):
|
|
lifecycle.cleanup_existing_deployment()
|