vibe/tests/agent_loop/test_approve_always_permanent.py
Clément Drouin 6bedf271ce
v2.17.0 (#822)
Co-authored-by: Clément Sirieix <clement.sirieix@mistral.ai>
Co-authored-by: Guillaume LE GOFF <guillaume.lgf@gmail.com>
Co-authored-by: Hdandria <henri.dandria@mistral.ai>
Co-authored-by: Ivana Dunisijevic <ivana.dunisijevic@mistral.ai>
Co-authored-by: Jean Burellier <sheplu@users.noreply.github.com>
Co-authored-by: Mathias Gesbert <mathias.gesbert@mistral.ai>
Co-authored-by: Mert Unsal <mert.unsal@mistral.ai>
Co-authored-by: Michel Thomazo <51709227+michelTho@users.noreply.github.com>
Co-authored-by: Paul VEZIA <166131032+le-codeur-rapide@users.noreply.github.com>
Co-authored-by: Pierre Rossinès <pierre.rossines@mistral.ai>
Co-authored-by: Val <102326092+vdeva@users.noreply.github.com>
Co-authored-by: Vincent G <10739306+VinceOPS@users.noreply.github.com>
Co-authored-by: renovate-mistral[bot] <253709520+renovate-mistral[bot]@users.noreply.github.com>
Co-authored-by: Mistral Vibe <vibe@mistral.ai>
2026-06-19 11:01:24 +02:00

122 lines
4.5 KiB
Python

from __future__ import annotations
from pathlib import Path
import tomllib
from tests.conftest import build_test_agent_loop, build_test_vibe_config
from vibe.core.tools.base import ToolPermission
from vibe.core.tools.permissions import PermissionScope, RequiredPermission
def _read_persisted_config(config_dir: Path) -> dict:
config_file = config_dir / "config.toml"
with config_file.open("rb") as f:
return tomllib.load(f)
class TestApproveAlwaysPermanentNoGranularPermissions:
def test_sets_tool_permission_always_in_config(self, config_dir: Path):
agent = build_test_agent_loop()
agent.approve_always("bash", None, save_permanently=True)
persisted = _read_persisted_config(config_dir)
assert persisted["tools"]["bash"]["permission"] == "always"
def test_session_only_does_not_persist(self, config_dir: Path):
agent = build_test_agent_loop()
agent.approve_always("bash", None, save_permanently=False)
assert (
agent.tool_manager.get_tool_config("bash").permission
== ToolPermission.ALWAYS
)
persisted = _read_persisted_config(config_dir)
assert "bash" not in persisted.get("tools", {})
class TestApproveAlwaysPermanentWithGranularPermissions:
def _make_permissions(self) -> list[RequiredPermission]:
return [
RequiredPermission(
scope=PermissionScope.COMMAND_PATTERN,
invocation_pattern="npm install foo",
session_pattern="npm install *",
label="npm install *",
)
]
def test_persists_allowlist_to_config(self, config_dir: Path):
agent = build_test_agent_loop()
perms = self._make_permissions()
agent.approve_always("bash", perms, save_permanently=True)
persisted = _read_persisted_config(config_dir)
assert persisted["tools"]["bash"]["allowlist"] == ["npm install"]
def test_also_adds_session_rules(self, config_dir: Path):
agent = build_test_agent_loop()
perms = self._make_permissions()
agent.approve_always("bash", perms, save_permanently=True)
assert len(agent._permission_store._rules) == 1
rule = agent._permission_store._rules[0]
assert rule.tool_name == "bash"
assert rule.scope == PermissionScope.COMMAND_PATTERN
assert rule.session_pattern == "npm install *"
def test_session_only_does_not_persist_allowlist(self, config_dir: Path):
agent = build_test_agent_loop()
perms = self._make_permissions()
agent.approve_always("bash", perms, save_permanently=False)
assert len(agent._permission_store._rules) == 1
persisted = _read_persisted_config(config_dir)
assert "bash" not in persisted.get("tools", {})
def test_does_not_duplicate_existing_allowlist_entries(self, config_dir: Path):
config = build_test_vibe_config(tools={"bash": {"allowlist": ["npm install"]}})
agent = build_test_agent_loop(config=config)
perms = self._make_permissions()
agent.approve_always("bash", perms, save_permanently=True)
persisted = _read_persisted_config(config_dir)
# Pattern already existed -- nothing new should be written
assert persisted.get("tools", {}).get("bash", {}).get("allowlist") is None
def test_appends_new_patterns_to_existing_allowlist(self, config_dir: Path):
config = build_test_vibe_config(tools={"bash": {"allowlist": ["git"]}})
agent = build_test_agent_loop(config=config)
perms = self._make_permissions()
agent.approve_always("bash", perms, save_permanently=True)
persisted = _read_persisted_config(config_dir)
assert persisted["tools"]["bash"]["allowlist"] == ["git", "npm install"]
def test_multiple_permissions_persisted(self, config_dir: Path):
agent = build_test_agent_loop()
perms = [
RequiredPermission(
scope=PermissionScope.COMMAND_PATTERN,
invocation_pattern="npm install foo",
session_pattern="npm install *",
label="npm install *",
),
RequiredPermission(
scope=PermissionScope.OUTSIDE_DIRECTORY,
invocation_pattern="/tmp/newdir",
session_pattern="/tmp/*",
label="/tmp/*",
),
]
agent.approve_always("bash", perms, save_permanently=True)
persisted = _read_persisted_config(config_dir)
assert persisted["tools"]["bash"]["allowlist"] == ["/tmp/*", "npm install"]