from lsprotocol.types import DiagnosticSeverity import pytest from unittest.mock import MagicMock from pygls.workspace import TextDocument from skillls.parser import SkillParser @pytest.fixture def parser(): return SkillParser() @pytest.fixture def mock_document(): doc = MagicMock(spec=TextDocument) doc.source = "" doc.path = "file:///test.il" return doc def test_parser_syntax_error(parser, mock_document): """Test that unmatched parentheses produce a diagnostic error.""" # Content with an unclosed parenthesis mock_document.source = "(defun my_func (arg" diagnostics, symbols = parser.parse_document(mock_document) # We expect at least one error diagnostic assert len(diagnostics) > 0 assert diagnostics[0].severity == DiagnosticSeverity.Error assert "unexpected ERROR token" in diagnostics[0].message or "unexpected MISSING token" in diagnostics[0].message def test_parser_no_errors(parser, mock_document): """Test that valid content produces no error diagnostics.""" # Content with balanced parentheses mock_document.source = "(defun my_func (arg) (print arg))" diagnostics, symbols = parser.parse_document(mock_document) assert len(diagnostics) == 0 def test_parser_empty_content(parser, mock_document): """Test that empty content handled gracefully.""" mock_document.source = "" diagnostics, symbols = parser.parse_document(mock_document) assert len(diagnostics) == 0 assert len(symbols) == 0 def test_parser_symbol_extraction(parser, mock_document): """ Test that the parser extracts symbols (this test is highly dependent on the actual tree-sitter grammar content). """ # Note: This test might fail if the generic 'is_symbol_node' logic # doesn't match the specific node type in the real skill grammar. mock_document.source = "(defun test_func (x) x)" diagnostics, symbols = parser.parse_document(mock_document) # If the parser identifies 'test_func' as a symbol, this will pass. # Since we are mocking/guessing node types in our implementation, # we rely on checking if any symbols were found at all. if len(symbols) > 0: assert isinstance(symbols[0].name, str) assert symbols[0].range.start.line >= 0