167 lines
5.7 KiB
Python
167 lines
5.7 KiB
Python
import os
|
|
from pathlib import Path
|
|
from typing import TYPE_CHECKING
|
|
|
|
import pytest
|
|
from cli import Cli
|
|
from environment import mock_env
|
|
|
|
from clan_cli.errors import ClanError
|
|
|
|
if TYPE_CHECKING:
|
|
from age_keys import KeyPair
|
|
|
|
|
|
def _test_identities(
|
|
what: str,
|
|
clan_flake: Path,
|
|
capsys: pytest.CaptureFixture,
|
|
age_keys: list["KeyPair"],
|
|
) -> None:
|
|
cli = Cli()
|
|
sops_folder = clan_flake / "sops"
|
|
|
|
cli.run(["secrets", what, "add", "foo", age_keys[0].pubkey])
|
|
assert (sops_folder / what / "foo" / "key.json").exists()
|
|
with pytest.raises(ClanError):
|
|
cli.run(["secrets", what, "add", "foo", age_keys[0].pubkey])
|
|
|
|
cli.run(
|
|
[
|
|
"secrets",
|
|
what,
|
|
"add",
|
|
"-f",
|
|
"foo",
|
|
age_keys[0].privkey,
|
|
]
|
|
)
|
|
capsys.readouterr() # empty the buffer
|
|
|
|
cli.run(["secrets", what, "list"])
|
|
out = capsys.readouterr() # empty the buffer
|
|
assert "foo" in out.out
|
|
|
|
cli.run(["secrets", what, "remove", "foo"])
|
|
assert not (sops_folder / what / "foo" / "key.json").exists()
|
|
|
|
with pytest.raises(ClanError): # already removed
|
|
cli.run(["secrets", what, "remove", "foo"])
|
|
|
|
capsys.readouterr()
|
|
cli.run(["secrets", what, "list"])
|
|
out = capsys.readouterr()
|
|
assert "foo" not in out.out
|
|
|
|
|
|
def test_users(
|
|
clan_flake: Path, capsys: pytest.CaptureFixture, age_keys: list["KeyPair"]
|
|
) -> None:
|
|
_test_identities("users", clan_flake, capsys, age_keys)
|
|
|
|
|
|
def test_machines(
|
|
clan_flake: Path, capsys: pytest.CaptureFixture, age_keys: list["KeyPair"]
|
|
) -> None:
|
|
_test_identities("machines", clan_flake, capsys, age_keys)
|
|
|
|
|
|
def test_groups(
|
|
clan_flake: Path, capsys: pytest.CaptureFixture, age_keys: list["KeyPair"]
|
|
) -> None:
|
|
cli = Cli()
|
|
capsys.readouterr() # empty the buffer
|
|
cli.run(["secrets", "groups", "list"])
|
|
assert capsys.readouterr().out == ""
|
|
|
|
with pytest.raises(ClanError): # machine does not exist yet
|
|
cli.run(["secrets", "groups", "add-machine", "group1", "machine1"])
|
|
with pytest.raises(ClanError): # user does not exist yet
|
|
cli.run(["secrets", "groups", "add-user", "groupb1", "user1"])
|
|
cli.run(["secrets", "machines", "add", "machine1", age_keys[0].pubkey])
|
|
cli.run(["secrets", "groups", "add-machine", "group1", "machine1"])
|
|
|
|
# Should this fail?
|
|
cli.run(["secrets", "groups", "add-machine", "group1", "machine1"])
|
|
|
|
cli.run(["secrets", "users", "add", "user1", age_keys[0].pubkey])
|
|
cli.run(["secrets", "groups", "add-user", "group1", "user1"])
|
|
|
|
capsys.readouterr() # empty the buffer
|
|
cli.run(["secrets", "groups", "list"])
|
|
out = capsys.readouterr().out
|
|
assert "user1" in out
|
|
assert "machine1" in out
|
|
|
|
cli.run(["secrets", "groups", "remove-user", "group1", "user1"])
|
|
cli.run(["secrets", "groups", "remove-machine", "group1", "machine1"])
|
|
groups = os.listdir(clan_flake / "sops" / "groups")
|
|
assert len(groups) == 0
|
|
|
|
|
|
def test_secrets(
|
|
clan_flake: Path, capsys: pytest.CaptureFixture, age_keys: list["KeyPair"]
|
|
) -> None:
|
|
cli = Cli()
|
|
capsys.readouterr() # empty the buffer
|
|
cli.run(["secrets", "list"])
|
|
assert capsys.readouterr().out == ""
|
|
|
|
with mock_env(
|
|
SOPS_NIX_SECRET="foo", SOPS_AGE_KEY_FILE=str(clan_flake / ".." / "age.key")
|
|
):
|
|
with pytest.raises(ClanError): # does not exist yet
|
|
cli.run(["secrets", "get", "nonexisting"])
|
|
cli.run(["secrets", "set", "key"])
|
|
capsys.readouterr()
|
|
cli.run(["secrets", "get", "key"])
|
|
assert capsys.readouterr().out == "foo"
|
|
capsys.readouterr()
|
|
cli.run(["secrets", "users", "list"])
|
|
users = capsys.readouterr().out.rstrip().split("\n")
|
|
assert len(users) == 1, f"users: {users}"
|
|
owner = users[0]
|
|
|
|
capsys.readouterr() # empty the buffer
|
|
cli.run(["secrets", "list"])
|
|
assert capsys.readouterr().out == "key\n"
|
|
|
|
cli.run(["secrets", "machines", "add", "machine1", age_keys[0].pubkey])
|
|
cli.run(["secrets", "machines", "add-secret", "machine1", "key"])
|
|
|
|
with mock_env(SOPS_AGE_KEY=age_keys[0].privkey, SOPS_AGE_KEY_FILE=""):
|
|
capsys.readouterr()
|
|
cli.run(["secrets", "get", "key"])
|
|
assert capsys.readouterr().out == "foo"
|
|
cli.run(["secrets", "machines", "remove-secret", "machine1", "key"])
|
|
|
|
cli.run(["secrets", "users", "add", "user1", age_keys[1].pubkey])
|
|
cli.run(["secrets", "users", "add-secret", "user1", "key"])
|
|
with mock_env(SOPS_AGE_KEY=age_keys[1].privkey, SOPS_AGE_KEY_FILE=""):
|
|
capsys.readouterr()
|
|
cli.run(["secrets", "get", "key"])
|
|
assert capsys.readouterr().out == "foo"
|
|
cli.run(["secrets", "users", "remove-secret", "user1", "key"])
|
|
|
|
with pytest.raises(ClanError): # does not exist yet
|
|
cli.run(["secrets", "groups", "add-secret", "admin-group", "key"])
|
|
cli.run(["secrets", "groups", "add-user", "admin-group", "user1"])
|
|
cli.run(["secrets", "groups", "add-user", "admin-group", owner])
|
|
cli.run(["secrets", "groups", "add-secret", "admin-group", "key"])
|
|
|
|
capsys.readouterr() # empty the buffer
|
|
cli.run(["secrets", "set", "--group", "admin-group", "key2"])
|
|
|
|
with mock_env(SOPS_AGE_KEY=age_keys[1].privkey, SOPS_AGE_KEY_FILE=""):
|
|
capsys.readouterr()
|
|
cli.run(["secrets", "get", "key"])
|
|
assert capsys.readouterr().out == "foo"
|
|
cli.run(["secrets", "groups", "remove-secret", "admin-group", "key"])
|
|
|
|
cli.run(["secrets", "remove", "key"])
|
|
cli.run(["secrets", "remove", "key2"])
|
|
|
|
capsys.readouterr() # empty the buffer
|
|
cli.run(["secrets", "list"])
|
|
assert capsys.readouterr().out == ""
|