Skip to content

Commit 5dd0296

Browse files
committed
support specific handler in args and change logic test ci scripts
1 parent 240be16 commit 5dd0296

File tree

4 files changed

+44
-35
lines changed

4 files changed

+44
-35
lines changed

scripts/ci/ci-run-sqllogic-tests-cluster.sh

+6-16
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,13 @@ set -e
77
echo "Starting Cluster databend-query"
88
./scripts/ci/deploy/databend-query-cluster-3-nodes.sh
99

10-
SCRIPT_PATH="$(cd "$(dirname "$0")" >/dev/null 2>&1 && pwd)"
11-
cd "$SCRIPT_PATH/../../tests/logictest" || exit
12-
13-
TEST_HANDLERS=${TEST_HANDLERS:-"mysql,http,clickhouse"}
14-
15-
RUN_DIR=""
16-
if [ $# -gt 0 ]; then
17-
RUN_DIR="--run-dir $*"
18-
fi
19-
echo "Run suites using argument: $RUN_DIR"
2010
echo -e "ulimit:\n$(ulimit -a)"
2111

22-
echo "pip list"
23-
python3 -m pip list
12+
echo "Starting databend-sqllogic tests under mysql"
13+
cargo run -p sqllogictests -- --handler mysql
2414

25-
echo "Starting databend-sqllogic tests"
26-
python3 main.py --handlers ${TEST_HANDLERS} ${RUN_DIR}
15+
echo "Starting databend-sqllogic tests under http"
16+
cargo run -p sqllogictests -- --handler http
2717

28-
echo "Starting databend-sqllogic mode cluster"
29-
python3 main.py --handlers ${TEST_HANDLERS} --suite suites/mode --run-dir cluster
18+
echo "Starting databend-sqllogic tests under clickhouse"
19+
cargo run -p sqllogictests -- --handler clickhouse

scripts/ci/ci-run-sqllogic-tests.sh

+6-16
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,13 @@ set -e
77
echo "Starting standalone DatabendQuery and DatabendMeta"
88
./scripts/ci/deploy/databend-query-standalone.sh
99

10-
SCRIPT_PATH="$(cd "$(dirname "$0")" >/dev/null 2>&1 && pwd)"
11-
cd "$SCRIPT_PATH/../../tests/logictest" || exit
12-
13-
TEST_HANDLERS=${TEST_HANDLERS:-"mysql,http,clickhouse"}
14-
15-
RUN_DIR=""
16-
if [ $# -gt 0 ]; then
17-
RUN_DIR="--run-dir $*"
18-
fi
19-
echo "Run suites using argument: $RUN_DIR"
2010
echo -e "ulimit:\n$(ulimit -a)"
2111

22-
echo "pip list"
23-
python3 -m pip list
12+
echo "Starting databend-sqllogic tests under mysql"
13+
cargo run -p sqllogictests -- --skip_dir cluster --handler mysql
2414

25-
echo "Starting databend-sqllogic tests"
26-
python3 main.py --handlers ${TEST_HANDLERS} --skip-dir=mode ${RUN_DIR}
15+
echo "Starting databend-sqllogic tests under http"
16+
cargo run -p sqllogictests -- --skip_dir cluster --handler http
2717

28-
echo "Starting databend-sqllogic mode standalone"
29-
python3 main.py --handlers ${TEST_HANDLERS} --suite suites/mode --run-dir standalone
18+
echo "Starting databend-sqllogic tests under clickhouse"
19+
cargo run -p sqllogictests -- --skip_dir cluster --handler clickhouse

tests/sqllogictests/src/arg.rs

+8
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,12 @@ pub struct SqlLogicTestArgs {
4040
help = "Skip sqllogictests in specific directory, the arg is optional"
4141
)]
4242
pub skipped_dir: Option<String>,
43+
44+
// Set handler to run tests
45+
#[arg(
46+
short = 'c',
47+
long = "handler",
48+
help = "Choose a handler to run tests, support mysql, http, clickhouse handler, the arg is optional."
49+
)]
50+
pub handler: Option<String>,
4351
}

tests/sqllogictests/src/main.rs

+24-3
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,38 @@ impl sqllogictest::AsyncDB for Databend {
104104
#[tokio::main]
105105
pub async fn main() -> Result<()> {
106106
env_logger::init();
107+
let args = SqlLogicTestArgs::parse();
108+
if let Some(handler) = &args.handler {
109+
match handler.as_str() {
110+
"mysql" => {
111+
println!("Mysql client starts to run...");
112+
run_mysql_client().await?;
113+
}
114+
"http" => {
115+
println!("Http client starts to run...");
116+
run_http_client().await?;
117+
}
118+
"clickhouse" => {
119+
println!("Clickhouse http client starts to run...");
120+
run_ck_http_client().await?;
121+
}
122+
_ => unreachable!(),
123+
}
124+
return Ok(());
125+
}
126+
// If args don't set handler, run all handlers one by one.
127+
107128
// First run databend with mysql client
108129
println!("Mysql client starts to run...");
109130
run_mysql_client().await?;
110131

111132
// Second run databend with http client
112-
// println!("Http client starts to run...");
133+
println!("Http client starts to run...");
113134
// run_http_client().await?;
114135

115-
// println!("Clickhouse http client starts to run...");
116136
// Third run databend with clickhouse http client
117-
// run_ck_http_client().await?;
137+
println!("Clickhouse http client starts to run...");
138+
run_ck_http_client().await?;
118139

119140
Ok(())
120141
}

0 commit comments

Comments
 (0)