memgraph/tests/e2e/runner.py

108 lines
4.0 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
# Copyright 2021 Memgraph Ltd.
#
# Use of this software is governed by the Business Source License
# included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
# License, and you may not use this file except in compliance with the Business Source License.
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0, included in the file
# licenses/APL.txt.
import atexit
import logging
import os
import subprocess
import time
2022-02-17 17:36:10 +08:00
from argparse import ArgumentParser
from pathlib import Path
import interactive_mg_runner
import yaml
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
PROJECT_DIR = os.path.normpath(os.path.join(SCRIPT_DIR, "..", ".."))
BUILD_DIR = os.path.join(PROJECT_DIR, "build")
log = logging.getLogger("memgraph.tests.e2e")
def load_args():
parser = ArgumentParser()
2021-05-19 00:28:17 +08:00
parser.add_argument("--workloads-root-directory", required=True)
parser.add_argument("--workload-name", default=None, required=False)
parser.add_argument("--debug", default=False, required=False)
return parser.parse_args()
2021-05-19 00:28:17 +08:00
def load_workloads(root_directory):
workloads = []
2022-02-17 17:36:10 +08:00
for file in Path(root_directory).rglob("*.yaml"):
Run CI in mgbuilder containers (#1749) * Update deployment files for mgbuilders because of toolchain upgrade * Fix args parameter in builder yaml files * Add fedora 38, 39 and rockylinux 9.3 mgbuilder Dockerfiles * Change format of ARG TOOLCHAIN_VERSION from toolchain-vX to vX * Add function to check supported arch, build type, os and toolchain * Add options to init subcommand * Add image names to mgbuilders * Add v2 of the run.sh script * Add testing to run2.sh * Add option for threads --thread * Add options for enterprise license and organization name * Make stop mgbuild container step run always * Add --ci flag to init script * Move init conditionals under build-memgraph flags * Add --community flag to build-memgraph * Change target dir inside mgbuild container * Add node fix to debian 11, ubuntu 20.04 and ubuntu 22.04 * rm memgraph repo after installing deps * Add mg user in Dockerfile * Add step to install rust on all OSs * Chown files copied into mgbuild container * Add e2e tests * Add jepsen test * Bugfix: Using reference in a callback * Bugfix: Broad target for e2e tests * Up db info test limit * Disable e2e streams tests * Fix default THREADS * Prioretize docker compose over docker-compose * Improve selection between docker compose and docker-compose * Install PyYAML as mg user * Fix doxygen install for rocky linux 9.3 * Fix rocky-9.3 environment script to properly install sbcl * Rename all rocky-9 mentions to rocky-9.3 * Add mgdeps-cache and benchgraph-api hostnames to mgbuild images * Add logic to pull mgbuild image if missing * Fix build errors on toolchain-v5 (#1806) * Rename run2 script, remove run script, add small features to mgbuild.sh * Add --no-copy flag to build-memgraph to resolve TODO * Add timeouts to diff jobs * Fix asio flaky clone, try mgdeps-cache first --------- Co-authored-by: Andreja Tonev <andreja.tonev@memgraph.io> Co-authored-by: Ante Pušić <ante.f.pusic@gmail.com> Co-authored-by: antoniofilipovic <filipovicantonio1998@gmail.com>
2024-03-14 19:19:59 +08:00
# 8.03.2024. - Skip streams e2e tests
if str(file).endswith("/streams/workloads.yaml"):
continue
2021-05-19 00:28:17 +08:00
with open(file, "r") as f:
2022-02-17 17:36:10 +08:00
workloads.extend(yaml.load(f, Loader=yaml.FullLoader)["workloads"])
2021-05-19 00:28:17 +08:00
return workloads
def run(args):
2021-05-19 00:28:17 +08:00
workloads = load_workloads(args.workloads_root_directory)
for workload in workloads:
2022-02-17 17:36:10 +08:00
workload_name = workload["name"]
if args.workload_name is not None and args.workload_name != workload_name:
continue
log.info("%s STARTED.", workload_name)
# Setup.
@atexit.register
def cleanup(keep_directories=True):
interactive_mg_runner.stop_all(keep_directories)
2022-02-17 17:36:10 +08:00
if "pre_set_workload" in workload:
binary = os.path.join(BUILD_DIR, workload["pre_set_workload"])
subprocess.run([binary], check=True, stderr=subprocess.STDOUT)
if "cluster" in workload:
procdir = ""
2022-02-17 17:36:10 +08:00
if "proc" in workload:
procdir = os.path.join(BUILD_DIR, workload["proc"])
interactive_mg_runner.start_all(workload["cluster"], procdir)
if args.debug:
hosts = subprocess.check_output("pgrep memgraph", shell=True)
print(f"PID: {hosts}")
time.sleep(10)
# Test.
2022-02-17 17:36:10 +08:00
mg_test_binary = os.path.join(BUILD_DIR, workload["binary"])
subprocess.run([mg_test_binary] + workload["args"], check=True, stderr=subprocess.STDOUT)
# Validation.
if "cluster" in workload:
for name, config in workload["cluster"].items():
mg_instance = interactive_mg_runner.MEMGRAPH_INSTANCES[name]
# Explicitely check if there are validation queries and skip if
# nothing is to validate. If setup queries are dealing with
# users, any new connection requires auth details.
validation_queries = config.get("validation_queries", [])
if len(validation_queries) == 0:
continue
# NOTE: If the setup quries create users AND there are some
# validation queries, the connection here has to get the right
# username/password.
conn = mg_instance.get_connection()
for validation in validation_queries:
data = mg_instance.query(validation["query"], conn)[0][0]
assert data == validation["expected"]
conn.close()
cleanup(keep_directories=False)
log.info("%s PASSED.", workload_name)
2022-02-17 17:36:10 +08:00
if __name__ == "__main__":
args = load_args()
2022-02-17 17:36:10 +08:00
logging.basicConfig(level=logging.INFO, format="%(levelname)s %(asctime)s %(name)s] %(message)s")
run(args)