mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
c47f27debe
* Add bulk loading and update schema * Remove unnecessary config options for speedup * Uncomment unit test. Update integration test. * Fix permission issue with removing temp folder * Update file paths * Changing graphdb directory * Update integration config
53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
import pytest
|
|
from buttercup.program_model.api import Graph
|
|
from buttercup.program_model.graph import encode_value
|
|
|
|
|
|
def is_cleanup_enabled(request) -> bool:
|
|
"""Check if the --no-cleanup flag was passed to pytest."""
|
|
return not request.config.getoption("--no-cleanup")
|
|
|
|
|
|
def cleanup_graphdb(request, task_id: str):
|
|
"""Clean up the JanusGraph database by dropping vertices and edges associated with a specific task ID."""
|
|
if not is_cleanup_enabled(request):
|
|
return
|
|
|
|
with Graph(url="ws://localhost:8182/gremlin") as graph:
|
|
# Drop vertices and edges associated with the task ID
|
|
graph.g.V().has(
|
|
"task_id", encode_value(task_id.encode("utf-8"))
|
|
).drop().iterate()
|
|
graph.g.E().has(
|
|
"task_id", encode_value(task_id.encode("utf-8"))
|
|
).drop().iterate()
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption(
|
|
"--runintegration",
|
|
action="store_true",
|
|
default=False,
|
|
help="run integration tests",
|
|
)
|
|
parser.addoption(
|
|
"--no-cleanup",
|
|
action="store_true",
|
|
default=False,
|
|
help="do not clean up database before and after tests",
|
|
)
|
|
|
|
|
|
def pytest_configure(config):
|
|
config.addinivalue_line("markers", "integration: mark test as an integration test")
|
|
|
|
|
|
def pytest_collection_modifyitems(config, items):
|
|
if config.getoption("--runintegration"):
|
|
# --runintegration given in cli: do not skip integration tests
|
|
return
|
|
skip_integration = pytest.mark.skip(reason="need --runintegration option to run")
|
|
for item in items:
|
|
if "integration" in item.keywords:
|
|
item.add_marker(skip_integration)
|