risingwave_e2e_extended_mode_test/
lib.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#![feature(register_tool)]
16#![register_tool(rw)]
17#![allow(rw::format_error)] // test code
18
19mod opts;
20mod test;
21pub use opts::Opts;
22use test::TestSuite;
23use tracing::{error, info};
24
25pub async fn run_test_suit(
26    db_name: String,
27    user_name: String,
28    server_host: String,
29    server_port: u16,
30    password: String,
31) -> i32 {
32    let test_suite = TestSuite::new(db_name, user_name, server_host, server_port, password);
33
34    match test_suite.test().await {
35        Ok(_) => {
36            info!("Risingwave e2e extended mode test completed successfully!");
37            0
38        }
39        Err(e) => {
40            error!(
41                "Risingwave e2e extended mode test failed: {:?}. Please ensure that your psql version is larger than 14.1",
42                e
43            );
44            1
45        }
46    }
47}