ClickHouse/tests/testflows/kerberos/regression.py

50 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import os
import sys
from testflows.core import *
append_path(sys.path, "..")
from helpers.cluster import Cluster
from helpers.argparser import argparser
from kerberos.requirements.requirements import *
xfails = {
}
@TestModule
@Name("kerberos")
@ArgumentParser(argparser)
@Requirements(
RQ_SRS_016_Kerberos("1.0")
)
@XFails(xfails)
def regression(self, local, clickhouse_binary_path, stress=None, parallel=None):
"""ClickHouse Kerberos authentication test regression module.
"""
top().terminating = False
nodes = {
"clickhouse": ("clickhouse1", "clickhouse2", "clickhouse3"),
"kerberos": ("kerberos", ),
}
if stress is not None:
self.context.stress = stress
if parallel is not None:
self.context.parallel = parallel
with Cluster(local, clickhouse_binary_path, nodes=nodes,
docker_compose_project_dir=os.path.join(current_dir(), "kerberos_env")) as cluster:
self.context.cluster = cluster
2021-07-08 11:52:22 +00:00
for i in range(30):
with Module(f"{i}"):
Feature(run=load("kerberos.tests.generic", "generic"), flags=TE)
Feature(run=load("kerberos.tests.config", "config"), flags=TE)
Feature(run=load("kerberos.tests.parallel", "parallel"), flags=TE)
if main():
regression()