|
| 1 | +"""Tests for inspection CLI commands. |
| 2 | +
|
| 3 | +Module: cli/commands/inspection.py (57 lines) |
| 4 | +""" |
| 5 | + |
| 6 | +import pytest |
| 7 | +from unittest.mock import patch, Mock |
| 8 | +from pathlib import Path |
| 9 | + |
| 10 | +from empathy_os.cli.commands.inspection import scan, inspect_cmd |
| 11 | + |
| 12 | + |
| 13 | +@pytest.mark.unit |
| 14 | +class TestScan: |
| 15 | + """Test suite for scan function.""" |
| 16 | + |
| 17 | + @patch("subprocess.run") |
| 18 | + @patch("empathy_os.cli.commands.inspection.console") |
| 19 | + def test_scan_calls_ruff(self, mock_console, mock_run): |
| 20 | + """Test that scan calls ruff.""" |
| 21 | + scan() |
| 22 | + |
| 23 | + # Should call ruff |
| 24 | + calls = [c[0][0] for c in mock_run.call_args_list] |
| 25 | + assert any("ruff" in call for call in calls) |
| 26 | + |
| 27 | + @patch("subprocess.run") |
| 28 | + @patch("empathy_os.cli.commands.inspection.console") |
| 29 | + def test_scan_with_fix_flag(self, mock_console, mock_run): |
| 30 | + """Test scan with fix=True adds --fix flag.""" |
| 31 | + scan(fix=True) |
| 32 | + |
| 33 | + # Check ruff call has --fix |
| 34 | + ruff_call = [c for c in mock_run.call_args_list if "ruff" in c[0][0]][0] |
| 35 | + assert "--fix" in ruff_call[0][0] |
| 36 | + |
| 37 | + |
| 38 | +@pytest.mark.unit |
| 39 | +class TestInspectCmd: |
| 40 | + """Test suite for inspect_cmd function.""" |
| 41 | + |
| 42 | + @patch("subprocess.run") |
| 43 | + @patch("empathy_os.cli.commands.inspection.console") |
| 44 | + def test_inspect_cmd_calls_subprocess(self, mock_console, mock_run): |
| 45 | + """Test that inspect_cmd calls subprocess.""" |
| 46 | + mock_run.return_value = Mock(returncode=0) |
| 47 | + |
| 48 | + inspect_cmd() |
| 49 | + |
| 50 | + mock_run.assert_called_once() |
| 51 | + args = mock_run.call_args[0][0] |
| 52 | + assert "empathy-inspect" in args[0] |
| 53 | + |
| 54 | + @patch("subprocess.run") |
| 55 | + @patch("empathy_os.cli.commands.inspection.console") |
| 56 | + def test_inspect_cmd_with_format(self, mock_console, mock_run): |
| 57 | + """Test inspect_cmd with format parameter.""" |
| 58 | + mock_run.return_value = Mock(returncode=0) |
| 59 | + |
| 60 | + inspect_cmd(format_out="json") |
| 61 | + |
| 62 | + args = mock_run.call_args[0][0] |
| 63 | + assert "--format" in args |
| 64 | + assert "json" in args |
0 commit comments