c6af9e284a
Tests / catch-all (windows-latest) (push) Has been cancelled
Tests / jvm (macos-latest) (push) Has been cancelled
Tests / jvm (ubuntu-latest) (push) Has been cancelled
Tests / jvm (windows-latest) (push) Has been cancelled
Tests / native (macos-latest) (push) Has been cancelled
Tests / native (ubuntu-latest) (push) Has been cancelled
Tests / native (windows-latest) (push) Has been cancelled
Tests / niche (ubuntu-latest) (push) Has been cancelled
Tests / other-langs (macos-latest) (push) Has been cancelled
Tests / other-langs (ubuntu-latest) (push) Has been cancelled
Tests / other-langs (windows-latest) (push) Has been cancelled
Tests / catch-all (macos-latest) (push) Has been cancelled
Tests / catch-all (ubuntu-latest) (push) Has been cancelled
Docs Build / build (push) Has been cancelled
Docs Build / deploy (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Build and Push Docker Images / build-and-push (push) Has been cancelled
77 lines
3.5 KiB
Python
77 lines
3.5 KiB
Python
import pytest
|
|
|
|
from solidlsp.ls import SolidLanguageServer
|
|
from solidlsp.ls_config import Language
|
|
from test.conftest import language_tests_enabled
|
|
from test.solidlsp.conftest import format_symbol_for_assert, has_malformed_name, request_all_symbols
|
|
from test.solidlsp.util.diagnostics import assert_file_diagnostics
|
|
|
|
|
|
@pytest.mark.skipif(not language_tests_enabled(Language.JULIA), reason="Julia tests are disabled (julia not available)")
|
|
@pytest.mark.julia
|
|
class TestJuliaLanguageServer:
|
|
@pytest.mark.parametrize("language_server", [Language.JULIA], indirect=True)
|
|
def test_julia_symbols(self, language_server: SolidLanguageServer):
|
|
"""
|
|
Test if we can find the top-level symbols in the main.jl file.
|
|
"""
|
|
all_symbols, _ = language_server.request_document_symbols("main.jl").get_all_symbols_and_roots()
|
|
symbol_names = {s["name"] for s in all_symbols}
|
|
assert "calculate_sum" in symbol_names
|
|
assert "main" in symbol_names
|
|
|
|
@pytest.mark.parametrize("language_server", [Language.JULIA], indirect=True)
|
|
def test_julia_within_file_references(self, language_server: SolidLanguageServer):
|
|
"""
|
|
Test finding references to a function within the same file.
|
|
"""
|
|
# Find references to 'calculate_sum' - the function name starts at line 2, column 9
|
|
# LSP uses 0-based indexing
|
|
references = language_server.request_references("main.jl", line=2, column=9)
|
|
|
|
# Should find at least the definition and the call site
|
|
assert len(references) >= 1, f"Expected at least 1 reference, got {len(references)}"
|
|
|
|
# Verify at least one reference is in main.jl
|
|
reference_paths = [ref["relativePath"] for ref in references]
|
|
assert "main.jl" in reference_paths
|
|
|
|
@pytest.mark.parametrize("language_server", [Language.JULIA], indirect=True)
|
|
def test_julia_cross_file_references(self, language_server: SolidLanguageServer):
|
|
"""
|
|
Test finding references to a function defined in another file.
|
|
"""
|
|
# The 'say_hello' function name starts at line 1, column 13 in lib/helper.jl
|
|
# LSP uses 0-based indexing
|
|
references = language_server.request_references("lib/helper.jl", line=1, column=13)
|
|
|
|
# Should find at least the call site in main.jl
|
|
assert len(references) >= 1, f"Expected at least 1 reference, got {len(references)}"
|
|
|
|
# Verify at least one reference points to the usage
|
|
reference_paths = [ref["relativePath"] for ref in references]
|
|
# The reference might be in either file (definition or usage)
|
|
assert "main.jl" in reference_paths or "lib/helper.jl" in reference_paths
|
|
|
|
@pytest.mark.parametrize("language_server", [Language.JULIA], indirect=True)
|
|
def test_bare_symbol_names(self, language_server) -> None:
|
|
all_symbols = request_all_symbols(language_server)
|
|
malformed_symbols = []
|
|
for s in all_symbols:
|
|
if has_malformed_name(s):
|
|
malformed_symbols.append(s)
|
|
if malformed_symbols:
|
|
pytest.fail(
|
|
f"Found malformed symbols: {[format_symbol_for_assert(sym) for sym in malformed_symbols]}",
|
|
pytrace=False,
|
|
)
|
|
|
|
@pytest.mark.parametrize("language_server", [Language.JULIA], indirect=True)
|
|
def test_file_diagnostics(self, language_server: SolidLanguageServer) -> None:
|
|
assert_file_diagnostics(
|
|
language_server,
|
|
"diagnostics_sample.jl",
|
|
(),
|
|
min_count=1,
|
|
)
|