- Add @field_validator for fail2ban_start_command to validate with shlex.split() at startup, catching misconfigured commands with mismatched quotes - Replace .split() with shlex.split() in jail_config.py line 450 - Replace .split() with shlex.split() in config_misc.py line 154 - Update Backend-Development.md with configuration documentation explaining quoted path handling and common pitfalls - Add comprehensive test suite (8 tests) covering valid commands, quoted paths, and mismatched quote errors This fix ensures commands like '/opt/my tools/fail2ban-client' start are correctly parsed as two tokens instead of three, preventing execution failures when the path contains spaces. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
108 lines
4.3 KiB
Python
108 lines
4.3 KiB
Python
"""Unit tests for application configuration and validation."""
|
|
|
|
import pytest
|
|
from pydantic import ValidationError
|
|
|
|
from app.config import Settings
|
|
|
|
|
|
def test_fail2ban_start_command_validates_simple_command() -> None:
|
|
"""Simple fail2ban commands without special characters are accepted."""
|
|
settings = Settings(
|
|
database_path="/tmp/test.db",
|
|
fail2ban_socket="/tmp/fake_fail2ban.sock",
|
|
fail2ban_config_dir="/tmp/fail2ban",
|
|
session_secret="test-secret-key-do-not-use-in-production",
|
|
fail2ban_start_command="fail2ban-client start",
|
|
)
|
|
assert settings.fail2ban_start_command == "fail2ban-client start"
|
|
|
|
|
|
def test_fail2ban_start_command_validates_systemctl_command() -> None:
|
|
"""systemctl commands are accepted."""
|
|
settings = Settings(
|
|
database_path="/tmp/test.db",
|
|
fail2ban_socket="/tmp/fake_fail2ban.sock",
|
|
fail2ban_config_dir="/tmp/fail2ban",
|
|
session_secret="test-secret-key-do-not-use-in-production",
|
|
fail2ban_start_command="systemctl start fail2ban",
|
|
)
|
|
assert settings.fail2ban_start_command == "systemctl start fail2ban"
|
|
|
|
|
|
def test_fail2ban_start_command_accepts_quoted_paths() -> None:
|
|
"""Commands with quoted paths containing spaces are accepted."""
|
|
settings = Settings(
|
|
database_path="/tmp/test.db",
|
|
fail2ban_socket="/tmp/fake_fail2ban.sock",
|
|
fail2ban_config_dir="/tmp/fail2ban",
|
|
session_secret="test-secret-key-do-not-use-in-production",
|
|
fail2ban_start_command='"/opt/my tools/fail2ban-client" start',
|
|
)
|
|
assert settings.fail2ban_start_command == '"/opt/my tools/fail2ban-client" start'
|
|
|
|
|
|
def test_fail2ban_start_command_rejects_mismatched_quotes() -> None:
|
|
"""Commands with mismatched quotes raise ValidationError."""
|
|
with pytest.raises(ValidationError) as exc_info:
|
|
Settings(
|
|
database_path="/tmp/test.db",
|
|
fail2ban_socket="/tmp/fake_fail2ban.sock",
|
|
fail2ban_config_dir="/tmp/fail2ban",
|
|
session_secret="test-secret-key-do-not-use-in-production",
|
|
fail2ban_start_command='"/opt/my tools/fail2ban-client start',
|
|
)
|
|
error_msg = str(exc_info.value)
|
|
assert "fail2ban_start_command" in error_msg
|
|
assert "mismatched quotes" in error_msg or "No closing quotation" in error_msg
|
|
|
|
|
|
def test_fail2ban_start_command_error_includes_problematic_value() -> None:
|
|
"""Validation errors include the problematic command value."""
|
|
problematic_command = '"/opt/broken start'
|
|
with pytest.raises(ValidationError) as exc_info:
|
|
Settings(
|
|
database_path="/tmp/test.db",
|
|
fail2ban_socket="/tmp/fake_fail2ban.sock",
|
|
fail2ban_config_dir="/tmp/fail2ban",
|
|
session_secret="test-secret-key-do-not-use-in-production",
|
|
fail2ban_start_command=problematic_command,
|
|
)
|
|
error_msg = str(exc_info.value)
|
|
assert problematic_command in error_msg
|
|
|
|
|
|
def test_fail2ban_start_command_default_value_is_valid() -> None:
|
|
"""The default fail2ban_start_command value is valid and parseable."""
|
|
settings = Settings(
|
|
database_path="/tmp/test.db",
|
|
fail2ban_socket="/tmp/fake_fail2ban.sock",
|
|
fail2ban_config_dir="/tmp/fail2ban",
|
|
session_secret="test-secret-key-do-not-use-in-production",
|
|
)
|
|
assert settings.fail2ban_start_command == "fail2ban-client start"
|
|
|
|
|
|
def test_fail2ban_start_command_single_quoted() -> None:
|
|
"""Commands with single quotes are accepted."""
|
|
settings = Settings(
|
|
database_path="/tmp/test.db",
|
|
fail2ban_socket="/tmp/fake_fail2ban.sock",
|
|
fail2ban_config_dir="/tmp/fail2ban",
|
|
session_secret="test-secret-key-do-not-use-in-production",
|
|
fail2ban_start_command="'/usr/bin/fail2ban-client' start",
|
|
)
|
|
assert settings.fail2ban_start_command == "'/usr/bin/fail2ban-client' start"
|
|
|
|
|
|
def test_fail2ban_start_command_multiple_arguments() -> None:
|
|
"""Commands with multiple arguments are accepted."""
|
|
settings = Settings(
|
|
database_path="/tmp/test.db",
|
|
fail2ban_socket="/tmp/fake_fail2ban.sock",
|
|
fail2ban_config_dir="/tmp/fail2ban",
|
|
session_secret="test-secret-key-do-not-use-in-production",
|
|
fail2ban_start_command="fail2ban-client -c /etc/fail2ban start",
|
|
)
|
|
assert settings.fail2ban_start_command == "fail2ban-client -c /etc/fail2ban start"
|