071df2f439
* Split queries into system and data queries * System queries are sequentially executed and generate separate transaction deltas * System transaction try locks for 100ms * last_commited_system_ts saved to DBMS durability * Replicating CREATE/DROP DATABASE * Sending a system snapshot if REPLICA behind * Passing a copy of the gatekeeper::access as std::any to all functions that could call an async execution * Removed delete_on_drop flag (we now always delete on drop) * Using UUID as the directory name for databases * DBMS durability update (added versioning and salient information) * Automatic migration from previous version * Interpreter can run some queries without a target database * SHOW REPLICA returns the status of the currently active DB * Returning UUID instead of db name in the RPC responses * Using UUIDs for database specification in RPC (not name) * FrequentCheck forces update on reconnect * TimestampRpc will detect if a replica is behind, and will update client's state * Safer SLK reads * Split SHOW DATABASES in two SHOW DATABASES (list of current databases) and SHOW DATABASE a single string naming the current database --------- Co-authored-by: Gareth Lloyd <gareth.lloyd@memgraph.io> |
||
---|---|---|
.. | ||
analytical_mode | ||
analyze_graph | ||
batched_procedures | ||
concurrent_query_modules | ||
configuration | ||
constraints | ||
disk_storage | ||
filter_info | ||
fine_grained_access | ||
garbage_collection | ||
graphql | ||
import_mode | ||
index_hints | ||
init_file_flags | ||
inspect_query | ||
isolation_levels | ||
lba_procedures | ||
load_csv | ||
magic_functions | ||
memory | ||
metadata_queries | ||
mock_api | ||
module_file_manager | ||
monitoring_server | ||
python_query_modules_reloading | ||
queries | ||
query_modules | ||
query_modules_storage_modes | ||
query_planning | ||
replication | ||
replication_experimental | ||
server | ||
set_properties | ||
show_index_info | ||
streams | ||
telemetry | ||
temporal_types | ||
transaction_queue | ||
transaction_rollback | ||
triggers | ||
write_procedures | ||
.gitignore | ||
CMakeLists.txt | ||
dependency_check.sh | ||
interactive_mg_runner.py | ||
memgraph-selfsigned.crt | ||
memgraph-selfsigned.key | ||
memgraph.py | ||
mg_utils.py | ||
pytest_runner.sh | ||
README.md | ||
run.sh | ||
runner.py | ||
x.sh |
tests/e2e
Framework to run end-to-end tests against Memgraph.
Notes
- If you change something under this directory and below (even a Python
script),
make
has to be run again because all tests are copied to the build directory and executed from there. - Use/extend
run.sh
if you run any e2e tests:- if all tests have to executed, use
run.sh
- if a suite of tests have to be execute, take a look under
run.sh
how to do so - if only a single test have to be execute, take a look at each individual binary/script, it's possible to manually pick the test
- if all tests have to executed, use