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
20 lines
701 B
Python
20 lines
701 B
Python
from collections.abc import Sequence
|
|
|
|
from solidlsp import SolidLanguageServer
|
|
|
|
|
|
def assert_file_diagnostics(
|
|
language_server: SolidLanguageServer,
|
|
relative_file_path: str,
|
|
expected_message_fragments: Sequence[str],
|
|
min_count: int = 1,
|
|
) -> None:
|
|
diagnostics = language_server.request_text_document_diagnostics(relative_file_path, min_severity=1)
|
|
|
|
assert isinstance(diagnostics, list), diagnostics
|
|
assert len(diagnostics) >= min_count, diagnostics
|
|
|
|
diagnostic_messages = [diagnostic["message"] for diagnostic in diagnostics]
|
|
for fragment in expected_message_fragments:
|
|
assert any(fragment in message for message in diagnostic_messages), diagnostic_messages
|