Pytest plugin to test the YLS as a whole.
Project description
pytest-yls
Pytest plugin adding primitives for E2E/integration tests.
Public fixtures:
yls_prepare
yls_prepare_with_settings
To interact with the tested YLS use Context
obtained by calling the fixture.
For more information about the Context
class checkout
plugin.py.
Example test
# Add yls_prepare fixture
def test_completion_basic(yls_prepare):
# Prepare the tested file
# <$> marks the cursor position
contents = """rule test {
condition:
<$>
}"""
# Initialize the testing context by calling the fixture
context = yls_prepare(contents)
# You can now simulate requests on the context
# In this case we trigger the code completion
response = context.send_request(
methods.COMPLETION,
types.CompletionParams(
textDocument=types.TextDocumentIdentifier(uri=context.opened_file.as_uri()),
position=context.get_cursor_position(),
),
)
# Assert the response how you want
assert response
for module in ["cuckoo", "elf", "pe", "time"]:
assert any(
module in item["label"] for item in response["items"]
), f"{module=} is not in response"
For more inspiration check out yls/tests.
License
Copyright (c) 2022 Avast Software, licensed under the MIT license. See the
LICENSE
file
for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pytest_yls-1.4.2.tar.gz
(6.1 kB
view hashes)
Built Distribution
Close
Hashes for pytest_yls-1.4.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65523af074ad44dcbea3642512881516e25b9a642b2d015f062152e690be4c75 |
|
MD5 | b4c46f8c3c9968cb2912f34fd5ea20af |
|
BLAKE2b-256 | daddc37f6bc96c552bce6b2eb87647ff8036f9d2f3b3dfe3fc7e8d64ac6e77b2 |