mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-28 14:07:55 +00:00
88 lines
3.0 KiB
Python
88 lines
3.0 KiB
Python
"""Tests for the ``jarvis agents`` CLI commands."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from click.testing import CliRunner
|
|
|
|
from openjarvis.cli import cli
|
|
|
|
|
|
class TestAgentCmd:
|
|
def test_agent_list_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "list", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_agent_info_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "info", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_agent_group_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "--help"])
|
|
assert result.exit_code == 0
|
|
assert "list" in result.output
|
|
assert "info" in result.output
|
|
|
|
|
|
class TestNewAgentCommands:
|
|
def test_launch_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "launch", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_start_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "start", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_stop_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "stop", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_run_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "run", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_status_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "status", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_logs_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "logs", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_daemon_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "daemon", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_watch_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "watch", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_recover_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "recover", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_errors_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "errors", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_ask_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "ask", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_instruct_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "instruct", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_messages_help(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "messages", "--help"])
|
|
assert result.exit_code == 0
|
|
|
|
def test_agents_group_has_new_commands(self) -> None:
|
|
result = CliRunner().invoke(cli, ["agents", "--help"])
|
|
assert result.exit_code == 0
|
|
cmds = (
|
|
"launch", "start", "stop", "run", "status", "logs",
|
|
"daemon", "watch", "recover", "errors", "ask", "instruct", "messages",
|
|
)
|
|
for cmd in cmds:
|
|
assert cmd in result.output, f"Missing command: {cmd}"
|