sqllogictest/sqllogictest.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// 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.
use std::cell::RefCell;
use std::collections::btree_map::Entry;
use std::collections::BTreeMap;
use std::fmt;
use std::fs::File;
use std::io::{self, Write};
use std::path::PathBuf;
use std::process::ExitCode;
use chrono::Utc;
use clap::ArgAction;
use mz_orchestrator_tracing::{StaticTracingConfig, TracingCliArgs};
use mz_ore::cli::{self, CliConfig, KeyValueArg};
use mz_ore::metrics::MetricsRegistry;
use mz_sql::session::vars::{
Var, VarInput, DISK_CLUSTER_REPLICAS_DEFAULT, ENABLE_LOGICAL_COMPACTION_WINDOW,
};
use mz_sqllogictest::runner::{self, Outcomes, RunConfig, Runner, WriteFmt};
use mz_sqllogictest::util;
use mz_tracing::CloneableEnvFilter;
use time::Instant;
use walkdir::WalkDir;
/// Runs sqllogictest scripts to verify database engine correctness.
#[derive(clap::Parser)]
struct Args {
/// Increase verbosity.
///
/// If specified once, print summary for each source file.
/// If specified twice, also show descriptions of each error.
/// If specified thrice, also print each query before it is executed.
#[clap(short = 'v', long = "verbose", action = ArgAction::Count)]
verbosity: u8,
/// Don't exit with a failing code if not all queries are successful.
#[clap(long)]
no_fail: bool,
/// Prefix every line of output with the current time.
#[clap(long)]
timestamps: bool,
/// Rewrite expected output based on actual output.
#[clap(long)]
rewrite_results: bool,
/// Generate a JUnit-compatible XML report to the specified file.
#[clap(long, value_name = "FILE")]
junit_report: Option<PathBuf>,
/// PostgreSQL connection URL to use for `persist` consensus.
#[clap(long)]
postgres_url: String,
/// Path to sqllogictest script to run.
#[clap(value_name = "PATH", required = true)]
paths: Vec<String>,
/// Stop on first failure.
#[clap(long)]
fail_fast: bool,
/// Inject `CREATE INDEX` after all `CREATE TABLE` statements.
#[clap(long)]
auto_index_tables: bool,
/// Inject `CREATE VIEW <view_name> AS <select_query>` and `CREATE DEFAULT INDEX ON <view_name> ...`
/// to redundantly execute a given `SELECT` query and contrast outcomes.
#[clap(long)]
auto_index_selects: bool,
/// Inject `BEGIN` and `COMMIT` to create longer running transactions for faster testing of the
/// ported SQLite SLT files. Does not work generally, so don't use it for other tests.
#[clap(long)]
auto_transactions: bool,
/// Inject `ALTER SYSTEM SET unsafe_enable_table_keys = true` before running the SLT file.
#[clap(long)]
enable_table_keys: bool,
/// Divide the test files into shards and run only the test files in this shard.
#[clap(long, requires = "shard_count", value_name = "N")]
shard: Option<usize>,
/// Total number of shards in use.
#[clap(long, requires = "shard", value_name = "N")]
shard_count: Option<usize>,
/// Wrapper program to start child processes
#[clap(long, env = "ORCHESTRATOR_PROCESS_WRAPPER")]
orchestrator_process_wrapper: Option<String>,
/// Number of replicas, defaults to 2
#[clap(long, default_value = "2")]
replicas: usize,
/// An list of NAME=VALUE pairs used to override static defaults
/// for system parameters.
#[clap(
long,
env = "SYSTEM_PARAMETER_DEFAULT",
action = ArgAction::Append,
value_delimiter = ';'
)]
system_parameter_default: Vec<KeyValueArg<String, String>>,
#[clap(
long,
env = "LOG_FILTER",
value_name = "FILTER",
default_value = "warn"
)]
pub log_filter: CloneableEnvFilter,
}
#[tokio::main]
async fn main() -> ExitCode {
mz_ore::panic::install_enhanced_handler();
let args: Args = cli::parse_args(CliConfig {
env_prefix: Some("MZ_"),
enable_version_flag: false,
});
let tracing_args = TracingCliArgs {
startup_log_filter: args.log_filter.clone(),
..Default::default()
};
let (tracing_handle, _tracing_guard) = tracing_args
.configure_tracing(
StaticTracingConfig {
service_name: "sqllogictest",
build_info: mz_environmentd::BUILD_INFO,
},
MetricsRegistry::new(),
)
.await
.unwrap();
// sqllogictest requires that Materialize have some system variables set to some specific value
// to pass. If the caller hasn't set this variable, then we set it for them. If the caller has
// set this variable, then we assert that it's set to the right value.
let required_system_defaults: Vec<_> = [
(&DISK_CLUSTER_REPLICAS_DEFAULT, "true"),
(ENABLE_LOGICAL_COMPACTION_WINDOW.flag, "true"),
]
.into();
let mut system_parameter_defaults: BTreeMap<_, _> = args
.system_parameter_default
.clone()
.into_iter()
.map(|kv| (kv.key, kv.value))
.collect();
for (var, value) in required_system_defaults {
let parse = |value| {
var.parse(VarInput::Flat(value))
.expect("invalid value")
.format()
};
let value = parse(value);
match system_parameter_defaults.entry(var.name().to_string()) {
Entry::Vacant(entry) => {
entry.insert(value);
}
Entry::Occupied(entry) => {
assert_eq!(
value,
parse(entry.get()),
"sqllogictest test requires {} to have a value of {}",
var.name(),
value
)
}
}
}
let config = RunConfig {
stdout: &OutputStream::new(io::stdout(), args.timestamps),
stderr: &OutputStream::new(io::stderr(), args.timestamps),
verbosity: args.verbosity,
postgres_url: args.postgres_url.clone(),
no_fail: args.no_fail,
fail_fast: args.fail_fast,
auto_index_tables: args.auto_index_tables,
auto_index_selects: args.auto_index_selects,
auto_transactions: args.auto_transactions,
enable_table_keys: args.enable_table_keys,
orchestrator_process_wrapper: args.orchestrator_process_wrapper.clone(),
tracing: tracing_args.clone(),
tracing_handle,
system_parameter_defaults,
persist_dir: match tempfile::tempdir() {
Ok(t) => t,
Err(e) => {
eprintln!("error creating state dir: {e}");
return ExitCode::FAILURE;
}
},
replicas: args.replicas,
};
if let (Some(shard), Some(shard_count)) = (args.shard, args.shard_count) {
if shard != 0 || shard_count != 1 {
eprintln!("Shard: {}/{}", shard + 1, shard_count);
}
}
if args.rewrite_results {
return rewrite(&config, args).await;
}
let mut junit = match args.junit_report {
Some(filename) => match File::create(&filename) {
Ok(file) => Some((file, junit_report::TestSuite::new("sqllogictest"))),
Err(err) => {
writeln!(config.stderr, "creating {}: {}", filename.display(), err);
return ExitCode::FAILURE;
}
},
None => None,
};
let mut outcomes = Outcomes::default();
let mut runner = Runner::start(&config).await.unwrap();
let mut paths = args.paths;
if let (Some(shard), Some(shard_count)) = (args.shard, args.shard_count) {
paths = paths.into_iter().skip(shard).step_by(shard_count).collect();
}
for path in &paths {
for entry in WalkDir::new(path) {
match entry {
Ok(entry) if entry.file_type().is_file() => {
let start_time = Instant::now();
match runner::run_file(&mut runner, entry.path()).await {
Ok(o) => {
if o.any_failed() || config.verbosity >= 1 {
writeln!(
config.stdout,
"{}",
util::indent(&o.display(config.no_fail, false).to_string(), 4)
);
}
if let Some((_, junit_suite)) = &mut junit {
let mut test_case = if o.any_failed() && !args.no_fail {
let mut result = junit_report::TestCase::failure(
&entry.path().to_string_lossy(),
start_time.elapsed(),
"failure",
"",
);
// Encode in system_out so we can display newlines
result.system_out = Some(
o.display(false, true)
.to_string()
.trim_end_matches('\n')
.to_string(),
);
result
} else {
junit_report::TestCase::success(
&entry.path().to_string_lossy(),
start_time.elapsed(),
)
};
test_case.set_classname("sqllogictest");
junit_suite.add_testcase(test_case);
}
outcomes += o;
}
Err(err) => {
writeln!(
config.stderr,
"FAIL: error: running file {}: {}",
entry.file_name().to_string_lossy(),
err
);
return ExitCode::FAILURE;
}
}
}
Ok(_) => (),
Err(err) => {
writeln!(
config.stderr,
"FAIL: error: reading directory entry: {}",
err
);
return ExitCode::FAILURE;
}
}
}
}
writeln!(config.stdout, "{}", outcomes.display(config.no_fail, false));
if let Some((mut junit_file, junit_suite)) = junit {
let report = junit_report::ReportBuilder::new()
.add_testsuite(junit_suite)
.build();
match report.write_xml(&mut junit_file) {
Ok(()) => (),
Err(err) => {
writeln!(
config.stderr,
"error: unable to write junit report: {}",
err
);
return ExitCode::from(2);
}
}
}
if outcomes.any_failed() && !args.no_fail {
return ExitCode::FAILURE;
}
ExitCode::SUCCESS
}
async fn rewrite(config: &RunConfig<'_>, args: Args) -> ExitCode {
if args.junit_report.is_some() {
writeln!(
config.stderr,
"--rewrite-results is not compatible with --junit-report"
);
return ExitCode::FAILURE;
}
if args.paths.iter().any(|path| path == "-") {
writeln!(config.stderr, "--rewrite-results cannot be used with stdin");
return ExitCode::FAILURE;
}
let mut runner = Runner::start(config).await.unwrap();
let mut paths = args.paths;
if let (Some(shard), Some(shard_count)) = (args.shard, args.shard_count) {
paths = paths.into_iter().skip(shard).step_by(shard_count).collect();
}
for path in paths {
for entry in WalkDir::new(path) {
match entry {
Ok(entry) => {
if entry.file_type().is_file() {
if let Err(err) = runner::rewrite_file(&mut runner, entry.path()).await {
writeln!(config.stderr, "FAIL: error: rewriting file: {}", err);
return ExitCode::FAILURE;
}
}
}
Err(err) => {
writeln!(
config.stderr,
"FAIL: error: reading directory entry: {}",
err
);
return ExitCode::FAILURE;
}
}
}
}
ExitCode::SUCCESS
}
struct OutputStream<W> {
inner: RefCell<W>,
need_timestamp: RefCell<bool>,
timestamps: bool,
}
impl<W> OutputStream<W>
where
W: Write,
{
fn new(inner: W, timestamps: bool) -> OutputStream<W> {
OutputStream {
inner: RefCell::new(inner),
need_timestamp: RefCell::new(true),
timestamps,
}
}
fn emit_str(&self, s: &str) {
self.inner.borrow_mut().write_all(s.as_bytes()).unwrap();
}
}
impl<W> WriteFmt for OutputStream<W>
where
W: Write,
{
fn write_fmt(&self, fmt: fmt::Arguments<'_>) {
let s = format!("{}", fmt);
if self.timestamps {
// We need to prefix every line in `s` with the current timestamp.
let timestamp = Utc::now();
let timestamp_str = timestamp.format("%Y-%m-%d %H:%M:%S.%f %Z");
// If the last character we outputted was a newline, then output a
// timestamp prefix at the start of this line.
if self.need_timestamp.replace(false) {
self.emit_str(&format!("[{}] ", timestamp_str));
}
// Emit `s`, installing a timestamp at the start of every line
// except the last.
let (s, last_was_timestamp) = match s.strip_suffix('\n') {
None => (&*s, false),
Some(s) => (s, true),
};
self.emit_str(&s.replace('\n', &format!("\n[{}] ", timestamp_str)));
// If the line ended with a newline, output the newline but *not*
// the timestamp prefix. We want the timestamp to reflect the moment
// the *next* character is output. So instead we just remember that
// the last character we output was a newline.
if last_was_timestamp {
*self.need_timestamp.borrow_mut() = true;
self.emit_str("\n");
}
} else {
self.emit_str(&s)
}
}
}