mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-20 04:24:17 +02:00
403 lines
15 KiB
Python
403 lines
15 KiB
Python
import shlex
|
|
from pathlib import Path
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
from fastmcp.cli.install import install_app
|
|
|
|
|
|
class TestInstallApp:
|
|
"""Test the install subapp."""
|
|
|
|
def test_install_app_exists(self):
|
|
"""Test that the install app is properly configured."""
|
|
# install_app.name is a tuple in cyclopts
|
|
assert "install" in install_app.name
|
|
assert "Install MCP servers" in install_app.help
|
|
|
|
def test_install_commands_registered(self):
|
|
"""Test that all install commands are registered."""
|
|
# Check that the app has the expected help text and structure
|
|
# This is a simpler check that doesn't rely on internal methods
|
|
assert hasattr(install_app, "help")
|
|
assert "Install MCP servers" in install_app.help
|
|
|
|
# We can test that the commands parse without errors
|
|
try:
|
|
install_app.parse_args(["claude-code", "--help"])
|
|
install_app.parse_args(["claude-desktop", "--help"])
|
|
install_app.parse_args(["cursor", "--help"])
|
|
install_app.parse_args(["gemini-cli", "--help"])
|
|
install_app.parse_args(["mcp-json", "--help"])
|
|
except SystemExit:
|
|
# Help commands exit with 0, that's expected
|
|
pass
|
|
|
|
|
|
class TestClaudeCodeInstall:
|
|
"""Test claude-code install command."""
|
|
|
|
def test_claude_code_basic(self):
|
|
"""Test basic claude-code install command parsing."""
|
|
# Parse command with correct parameter names
|
|
command, bound, _ = install_app.parse_args(
|
|
["claude-code", "server.py", "--name", "test-server"]
|
|
)
|
|
|
|
# Verify parsing was successful
|
|
assert command is not None
|
|
assert bound.arguments["server_spec"] == "server.py"
|
|
assert bound.arguments["server_name"] == "test-server"
|
|
|
|
def test_claude_code_with_options(self):
|
|
"""Test claude-code install with various options."""
|
|
command, bound, _ = install_app.parse_args(
|
|
[
|
|
"claude-code",
|
|
"server.py",
|
|
"--name",
|
|
"test-server",
|
|
"--with",
|
|
"package1",
|
|
"--with",
|
|
"package2",
|
|
"--env",
|
|
"VAR1=value1",
|
|
]
|
|
)
|
|
|
|
assert bound.arguments["with_packages"] == ["package1", "package2"]
|
|
assert bound.arguments["env_vars"] == ["VAR1=value1"]
|
|
|
|
def test_claude_code_with_new_options(self):
|
|
"""Test claude-code install with new uv options."""
|
|
from pathlib import Path
|
|
|
|
command, bound, _ = install_app.parse_args(
|
|
[
|
|
"claude-code",
|
|
"server.py",
|
|
"--python",
|
|
"3.11",
|
|
"--project",
|
|
"/workspace",
|
|
"--with-requirements",
|
|
"requirements.txt",
|
|
]
|
|
)
|
|
|
|
assert bound.arguments["python"] == "3.11"
|
|
assert bound.arguments["project"] == Path("/workspace")
|
|
assert bound.arguments["with_requirements"] == Path("requirements.txt")
|
|
|
|
|
|
class TestClaudeDesktopInstall:
|
|
"""Test claude-desktop install command."""
|
|
|
|
def test_claude_desktop_basic(self):
|
|
"""Test basic claude-desktop install command parsing."""
|
|
command, bound, _ = install_app.parse_args(
|
|
["claude-desktop", "server.py", "--name", "test-server"]
|
|
)
|
|
|
|
assert command is not None
|
|
assert bound.arguments["server_spec"] == "server.py"
|
|
assert bound.arguments["server_name"] == "test-server"
|
|
|
|
def test_claude_desktop_with_env_vars(self):
|
|
"""Test claude-desktop install with environment variables."""
|
|
command, bound, _ = install_app.parse_args(
|
|
[
|
|
"claude-desktop",
|
|
"server.py",
|
|
"--name",
|
|
"test-server",
|
|
"--env",
|
|
"VAR1=value1",
|
|
"--env",
|
|
"VAR2=value2",
|
|
]
|
|
)
|
|
|
|
assert bound.arguments["env_vars"] == ["VAR1=value1", "VAR2=value2"]
|
|
|
|
def test_claude_desktop_with_new_options(self):
|
|
"""Test claude-desktop install with new uv options."""
|
|
from pathlib import Path
|
|
|
|
command, bound, _ = install_app.parse_args(
|
|
[
|
|
"claude-desktop",
|
|
"server.py",
|
|
"--python",
|
|
"3.10",
|
|
"--project",
|
|
"/my/project",
|
|
"--with-requirements",
|
|
"reqs.txt",
|
|
]
|
|
)
|
|
|
|
assert bound.arguments["python"] == "3.10"
|
|
assert bound.arguments["project"] == Path("/my/project")
|
|
assert bound.arguments["with_requirements"] == Path("reqs.txt")
|
|
|
|
|
|
class TestCursorInstall:
|
|
"""Test cursor install command."""
|
|
|
|
def test_cursor_basic(self):
|
|
"""Test basic cursor install command parsing."""
|
|
command, bound, _ = install_app.parse_args(
|
|
["cursor", "server.py", "--name", "test-server"]
|
|
)
|
|
|
|
assert command is not None
|
|
assert bound.arguments["server_spec"] == "server.py"
|
|
assert bound.arguments["server_name"] == "test-server"
|
|
|
|
def test_cursor_with_options(self):
|
|
"""Test cursor install with options."""
|
|
command, bound, _ = install_app.parse_args(
|
|
["cursor", "server.py", "--name", "test-server"]
|
|
)
|
|
|
|
assert bound.arguments["server_spec"] == "server.py"
|
|
assert bound.arguments["server_name"] == "test-server"
|
|
|
|
|
|
class TestMcpJsonInstall:
|
|
"""Test mcp-json install command."""
|
|
|
|
def test_mcp_json_basic(self):
|
|
"""Test basic mcp-json install command parsing."""
|
|
command, bound, _ = install_app.parse_args(
|
|
["mcp-json", "server.py", "--name", "test-server"]
|
|
)
|
|
|
|
assert command is not None
|
|
assert bound.arguments["server_spec"] == "server.py"
|
|
assert bound.arguments["server_name"] == "test-server"
|
|
|
|
def test_mcp_json_with_copy(self):
|
|
"""Test mcp-json install with copy to clipboard option."""
|
|
command, bound, _ = install_app.parse_args(
|
|
["mcp-json", "server.py", "--name", "test-server", "--copy"]
|
|
)
|
|
|
|
assert bound.arguments["copy"] is True
|
|
|
|
|
|
class TestGeminiCliInstall:
|
|
"""Test gemini-cli install command."""
|
|
|
|
def test_gemini_cli_basic(self):
|
|
"""Test basic gemini-cli install command parsing."""
|
|
# Parse command with correct parameter names
|
|
command, bound, _ = install_app.parse_args(
|
|
["gemini-cli", "server.py", "--name", "test-server"]
|
|
)
|
|
|
|
# Verify parsing was successful
|
|
assert command is not None
|
|
assert bound.arguments["server_spec"] == "server.py"
|
|
assert bound.arguments["server_name"] == "test-server"
|
|
|
|
def test_gemini_cli_with_options(self):
|
|
"""Test gemini-cli install with various options."""
|
|
command, bound, _ = install_app.parse_args(
|
|
[
|
|
"gemini-cli",
|
|
"server.py",
|
|
"--name",
|
|
"test-server",
|
|
"--with",
|
|
"package1",
|
|
"--with",
|
|
"package2",
|
|
"--env",
|
|
"VAR1=value1",
|
|
]
|
|
)
|
|
|
|
assert bound.arguments["with_packages"] == ["package1", "package2"]
|
|
assert bound.arguments["env_vars"] == ["VAR1=value1"]
|
|
|
|
def test_gemini_cli_with_new_options(self):
|
|
"""Test gemini-cli install with new uv options."""
|
|
from pathlib import Path
|
|
|
|
command, bound, _ = install_app.parse_args(
|
|
[
|
|
"gemini-cli",
|
|
"server.py",
|
|
"--python",
|
|
"3.11",
|
|
"--project",
|
|
"/workspace",
|
|
"--with-requirements",
|
|
"requirements.txt",
|
|
]
|
|
)
|
|
|
|
assert bound.arguments["python"] == "3.11"
|
|
assert bound.arguments["project"] == Path("/workspace")
|
|
assert bound.arguments["with_requirements"] == Path("requirements.txt")
|
|
|
|
|
|
class TestInstallCommandParsing:
|
|
"""Test command parsing and error handling."""
|
|
|
|
def test_install_minimal_args(self):
|
|
"""Test install commands with minimal required arguments."""
|
|
# Each command should work with just a server spec
|
|
commands_to_test = [
|
|
["claude-code", "server.py"],
|
|
["claude-desktop", "server.py"],
|
|
["cursor", "server.py"],
|
|
["gemini-cli", "server.py"],
|
|
]
|
|
|
|
for cmd_args in commands_to_test:
|
|
command, bound, _ = install_app.parse_args(cmd_args)
|
|
assert command is not None
|
|
assert bound.arguments["server_spec"] == "server.py"
|
|
|
|
def test_mcp_json_minimal(self):
|
|
"""Test that mcp-json works with minimal arguments."""
|
|
# Should work with just server spec
|
|
command, bound, _ = install_app.parse_args(["mcp-json", "server.py"])
|
|
assert command is not None
|
|
assert bound.arguments["server_spec"] == "server.py"
|
|
|
|
def test_python_option(self):
|
|
"""Test --python option for all install commands."""
|
|
commands_to_test = [
|
|
["claude-code", "server.py", "--python", "3.11"],
|
|
["claude-desktop", "server.py", "--python", "3.11"],
|
|
["cursor", "server.py", "--python", "3.11"],
|
|
["gemini-cli", "server.py", "--python", "3.11"],
|
|
["mcp-json", "server.py", "--python", "3.11"],
|
|
]
|
|
|
|
for cmd_args in commands_to_test:
|
|
command, bound, _ = install_app.parse_args(cmd_args)
|
|
assert command is not None
|
|
assert bound.arguments["python"] == "3.11"
|
|
|
|
def test_with_requirements_option(self):
|
|
"""Test --with-requirements option for all install commands."""
|
|
commands_to_test = [
|
|
["claude-code", "server.py", "--with-requirements", "requirements.txt"],
|
|
["claude-desktop", "server.py", "--with-requirements", "requirements.txt"],
|
|
["cursor", "server.py", "--with-requirements", "requirements.txt"],
|
|
["gemini-cli", "server.py", "--with-requirements", "requirements.txt"],
|
|
["mcp-json", "server.py", "--with-requirements", "requirements.txt"],
|
|
]
|
|
|
|
for cmd_args in commands_to_test:
|
|
command, bound, _ = install_app.parse_args(cmd_args)
|
|
assert command is not None
|
|
assert str(bound.arguments["with_requirements"]) == "requirements.txt"
|
|
|
|
def test_project_option(self):
|
|
"""Test --project option for all install commands."""
|
|
commands_to_test = [
|
|
["claude-code", "server.py", "--project", "/path/to/project"],
|
|
["claude-desktop", "server.py", "--project", "/path/to/project"],
|
|
["cursor", "server.py", "--project", "/path/to/project"],
|
|
["gemini-cli", "server.py", "--project", "/path/to/project"],
|
|
["mcp-json", "server.py", "--project", "/path/to/project"],
|
|
]
|
|
|
|
for cmd_args in commands_to_test:
|
|
command, bound, _ = install_app.parse_args(cmd_args)
|
|
assert command is not None
|
|
assert str(bound.arguments["project"]) == str(Path("/path/to/project"))
|
|
|
|
|
|
class TestShellInjectionProtection:
|
|
"""Test that install commands properly escape server names to prevent shell injection."""
|
|
|
|
@patch("fastmcp.cli.install.gemini_cli.find_gemini_command")
|
|
@patch("fastmcp.cli.install.gemini_cli.subprocess.run")
|
|
def test_gemini_cli_escapes_shell_metacharacters(
|
|
self, mock_subprocess, mock_find_gemini
|
|
):
|
|
"""Test that gemini-cli install properly escapes server names with shell metacharacters."""
|
|
from fastmcp.cli.install.gemini_cli import install_gemini_cli
|
|
|
|
# Mock gemini command as available
|
|
mock_find_gemini.return_value = "/usr/bin/gemini"
|
|
mock_subprocess.return_value = MagicMock(returncode=0)
|
|
|
|
# Test with various dangerous characters
|
|
dangerous_names = ["test&calc", "test|whoami", "test;ls", "test$USER"]
|
|
|
|
for dangerous_name in dangerous_names:
|
|
mock_subprocess.reset_mock()
|
|
|
|
# Call install function
|
|
install_gemini_cli(
|
|
file=Path("/tmp/server.py"),
|
|
server_object=None,
|
|
name=dangerous_name,
|
|
)
|
|
|
|
# Verify subprocess was called
|
|
assert mock_subprocess.called
|
|
cmd_parts = mock_subprocess.call_args[0][0]
|
|
|
|
# Verify the name was shell-quoted
|
|
# shlex.quote() wraps strings with special chars in single quotes
|
|
expected_quoted = shlex.quote(dangerous_name)
|
|
assert expected_quoted in cmd_parts, (
|
|
f"Expected {expected_quoted} in command but got {cmd_parts}"
|
|
)
|
|
|
|
# Verify the original unquoted name is NOT in the command
|
|
# (unless it happens to be the same as the quoted version)
|
|
if expected_quoted != dangerous_name:
|
|
assert dangerous_name not in cmd_parts, (
|
|
f"Unquoted name {dangerous_name} should not appear in command"
|
|
)
|
|
|
|
@patch("fastmcp.cli.install.claude_code.find_claude_command")
|
|
@patch("fastmcp.cli.install.claude_code.subprocess.run")
|
|
def test_claude_code_escapes_shell_metacharacters(
|
|
self, mock_subprocess, mock_find_claude
|
|
):
|
|
"""Test that claude-code install properly escapes server names with shell metacharacters."""
|
|
from fastmcp.cli.install.claude_code import install_claude_code
|
|
|
|
# Mock claude command as available
|
|
mock_find_claude.return_value = "/usr/bin/claude"
|
|
mock_subprocess.return_value = MagicMock(returncode=0)
|
|
|
|
# Test with various dangerous characters
|
|
dangerous_names = ["test&calc", "test|whoami", "test;ls", "test$USER"]
|
|
|
|
for dangerous_name in dangerous_names:
|
|
mock_subprocess.reset_mock()
|
|
|
|
# Call install function
|
|
install_claude_code(
|
|
file=Path("/tmp/server.py"),
|
|
server_object=None,
|
|
name=dangerous_name,
|
|
)
|
|
|
|
# Verify subprocess was called
|
|
assert mock_subprocess.called
|
|
cmd_parts = mock_subprocess.call_args[0][0]
|
|
|
|
# Verify the name was shell-quoted
|
|
expected_quoted = shlex.quote(dangerous_name)
|
|
assert expected_quoted in cmd_parts, (
|
|
f"Expected {expected_quoted} in command but got {cmd_parts}"
|
|
)
|
|
|
|
# Verify the original unquoted name is NOT in the command
|
|
if expected_quoted != dangerous_name:
|
|
assert dangerous_name not in cmd_parts, (
|
|
f"Unquoted name {dangerous_name} should not appear in command"
|
|
)
|