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 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
|
#include "test_config.hpp"
#include "duckdb/common/types.hpp"
#include "duckdb/common/string_util.hpp"
#include "duckdb/common/enum_util.hpp"
#include "test_helpers.hpp"
#include "duckdb/common/types/uuid.hpp"
#include <fstream>
#include <sstream>
#include <unordered_set>
namespace duckdb {
typedef void (*on_set_option_t)(const Value &input);
struct TestConfigOption {
const char *name;
const char *description;
LogicalType type;
on_set_option_t on_set_option;
};
static const TestConfigOption test_config_options[] = {
{"description", "Config description", LogicalType::VARCHAR, nullptr},
{"comment", "Extra free form comment line", LogicalType::VARCHAR, nullptr},
{"initial_db", "Initial database path", LogicalType::VARCHAR, nullptr},
{"max_threads", "Max threads to use during tests", LogicalType::BIGINT, nullptr},
{"base_config", "Config file to load and base initial settings on", LogicalType::VARCHAR,
TestConfiguration::LoadBaseConfig},
{"block_size", "Block Alloction Size; must be a power of 2", LogicalType::BIGINT, nullptr},
{"checkpoint_wal_size", "Size in bytes after which to trigger automatic checkpointing", LogicalType::BIGINT,
nullptr},
{"checkpoint_on_shutdown", "Whether or not to checkpoint on database shutdown", LogicalType::BOOLEAN, nullptr},
{"force_restart", "Force restart the database between runs", LogicalType::BOOLEAN, nullptr},
{"summarize_failures", "Print a summary of all test failures after running", LogicalType::BOOLEAN, nullptr},
{"test_memory_leaks", "Run memory leak tests", LogicalType::BOOLEAN, nullptr},
{"storage_fuzzer", "Run storage fuzzer tests", LogicalType::BOOLEAN, nullptr},
{"verify_vector", "Run vector verification for a specific vector type", LogicalType::VARCHAR, nullptr},
{"debug_initialize", "Initialize buffers with all 0 or all 1", LogicalType::VARCHAR, nullptr},
{"autoloading", "Loading strategy for extensions not bundled in", LogicalType::VARCHAR, nullptr},
{"init_script", "Script to execute on init", LogicalType::VARCHAR, TestConfiguration::ParseConnectScript},
{"on_cleanup", "SQL statements to execute on test end", LogicalType::VARCHAR, nullptr},
{"on_init", "SQL statements to execute on init", LogicalType::VARCHAR, nullptr},
{"on_load", "SQL statements to execute on explicit load", LogicalType::VARCHAR, nullptr},
{"on_new_connection", "SQL statements to execute on connection", LogicalType::VARCHAR, nullptr},
{"test_env", "The test variables",
LogicalType::LIST(LogicalType::STRUCT({{"env_name", LogicalType::VARCHAR}, {"env_value", LogicalType::VARCHAR}})),
nullptr},
{"inherit_skip_tests", "Path of config to inherit 'skip_tests' from", LogicalType::VARCHAR},
{"skip_tests", "Tests to be skipped",
LogicalType::LIST(
LogicalType::STRUCT({{"reason", LogicalType::VARCHAR}, {"paths", LogicalType::LIST(LogicalType::VARCHAR)}})),
nullptr},
{"skip_compiled", "Skip compiled tests", LogicalType::BOOLEAN, nullptr},
{"skip_error_messages", "Skip compiled tests", LogicalType::LIST(LogicalType::VARCHAR), nullptr},
{"sort_style", "Default sort style if none is configured in the test (none, rowsort, valuesort)",
LogicalType::VARCHAR, TestConfiguration::CheckSortStyle},
{"statically_loaded_extensions", "Extensions to be loaded (from the statically available one)",
LogicalType::LIST(LogicalType::VARCHAR), nullptr},
{"storage_version", "Database storage version to use by default", LogicalType::VARCHAR, nullptr},
{"select_tag", "Select tests which match named tag (as singleton set; multiple sets are OR'd)",
LogicalType::VARCHAR, TestConfiguration::AppendSelectTagSet},
{"select_tag_set", "Select tests which match _all_ named tags (multiple sets are OR'd)",
LogicalType::LIST(LogicalType::VARCHAR), TestConfiguration::AppendSelectTagSet},
{"skip_tag", "Skip tests which match named tag (as singleton set; multiple sets are OR'd)", LogicalType::VARCHAR,
TestConfiguration::AppendSkipTagSet},
{"skip_tag_set", "Skip tests which match _all_ named tags (multiple sets are OR'd)",
LogicalType::LIST(LogicalType::VARCHAR), TestConfiguration::AppendSkipTagSet},
{"settings", "Configuration settings to apply",
LogicalType::LIST(LogicalType::STRUCT({{"name", LogicalType::VARCHAR}, {"value", LogicalType::VARCHAR}})),
nullptr},
{nullptr, nullptr, LogicalType::INVALID, nullptr},
};
TestConfiguration &TestConfiguration::Get() {
static TestConfiguration instance;
return instance;
}
void TestConfiguration::Initialize() {
// load config file
auto config_file = std::getenv("DUCKDB_TEST_CONFIG");
if (config_file) {
LoadConfig(config_file);
}
// load configuration options from the environment
for (idx_t index = 0; test_config_options[index].name != nullptr; index++) {
auto &config = test_config_options[index];
string env_name = "DUCKDB_TEST_" + StringUtil::Upper(config.name);
auto env_arg = std::getenv(env_name.c_str());
if (!env_arg) {
continue;
}
ParseOption(config.name, Value(env_arg));
}
// load summarize failures
const char *summarize = std::getenv("SUMMARIZE_FAILURES");
if (summarize) {
if (std::string(summarize) == "1") {
ParseOption("summarize_failures", Value(true));
}
} else {
// SUMMARIZE_FAILURES not passed in explicitly - enable by default on CI
const char *ci = std::getenv("CI");
if (ci) {
ParseOption("summarize_failures", Value(true));
}
}
working_dir = FileSystem::GetWorkingDirectory();
test_uuid = UUID::ToString(UUID::GenerateRandomUUID());
UpdateEnvironment();
}
void TestConfiguration::UpdateEnvironment() {
// Setup standard vars
// XXX: UUID used by ducklake to avoid collisions, is there a better way?
test_env["TEST_UUID"] = test_uuid;
test_env["BUILD_DIR"] = string(DUCKDB_BUILD_DIRECTORY);
test_env["WORKING_DIR"] = working_dir; // can be overridden per runner
test_env["DATA_DIR"] = working_dir + "/data"; // default: data/
string temp_dir = TestDirectoryPath();
test_env["TEMP_DIR"] = temp_dir; // default: duckdb_unittest_tempdir/$PID
test_env["CATALOG_DIR"] = temp_dir + "/" + test_uuid; // _not_ guaranteed to exist
}
string TestConfiguration::GetWorkingDirectory() {
return working_dir;
}
bool TestConfiguration::ChangeWorkingDirectory(const string &dir) {
bool rv = false;
// set CWD first, then get it -- this gets us normalized absolute path for free
// making the comparison below meaningful
FileSystem::SetWorkingDirectory(dir);
const auto &normalized = FileSystem::GetWorkingDirectory();
if (working_dir != normalized) {
rv = true;
working_dir = normalized;
UpdateEnvironment();
}
return rv;
}
bool TestConfiguration::ParseArgument(const string &arg, idx_t argc, char **argv, idx_t &i) {
if (arg == "--test-config") {
if (i >= argc) {
throw std::runtime_error("--test-config expected a path to a configuration file");
}
auto config_path = string(argv[++i]);
LoadConfig(config_path);
return true;
}
if (arg == "--force-storage") {
ParseOption("initial_db", Value("{TEST_DIR}/{BASE_TEST_NAME}__test__config__force_storage.db"));
return true;
}
if (arg == "--force-reload") {
ParseOption("force_restart", Value(true));
return true;
}
if (arg == "--single-threaded") {
ParseOption("max_threads", Value::BIGINT(1));
return true;
}
if (arg == "--zero-initialize") {
ParseOption("debug_initialize", Value("DEBUG_ZERO_INITIALIZE"));
return true;
}
if (arg == "--one-initialize") {
ParseOption("debug_initialize", Value("DEBUG_ONE_INITIALIZE"));
return true;
}
if (StringUtil::StartsWith(arg, "--memory-leak") || StringUtil::StartsWith(arg, "--test-memory-leak")) {
ParseOption("test_memory_leaks", Value(true));
return true;
}
for (idx_t index = 0; test_config_options[index].name != nullptr; index++) {
auto &config_option = test_config_options[index];
string option_name = "--" + StringUtil::Replace(config_option.name, "_", "-");
if (config_option.type == LogicalTypeId::BOOLEAN) {
// for booleans we allow "--[option]" and "--no-[option]"
string no_option_name = "--no-" + StringUtil::Replace(config_option.name, "_", "-");
if (arg == option_name) {
ParseOption(config_option.name, Value(true));
return true;
} else if (arg == no_option_name) {
ParseOption(config_option.name, Value(false));
return true;
}
} else if (arg == option_name) {
if (i >= argc) {
throw std::runtime_error(option_name + " expected an argument");
}
auto option_value = string(argv[++i]);
ParseOption(config_option.name, option_value);
return true;
}
}
return false;
}
bool TestConfiguration::TryParseOption(const string &name, const Value &value) {
// find the option
optional_idx config_index;
for (idx_t index = 0; test_config_options[index].name != nullptr; index++) {
if (StringUtil::CIEquals(test_config_options[index].name, name)) {
config_index = index;
break;
}
}
if (!config_index.IsValid()) {
return false;
}
auto &test_config = test_config_options[config_index.GetIndex()];
auto parameter = value.DefaultCastAs(test_config.type);
if (test_config.on_set_option) {
test_config.on_set_option(parameter);
}
options.insert(make_pair(test_config.name, parameter));
return true;
}
void TestConfiguration::ParseOption(const string &name, const Value &value) {
if (!TryParseOption(name, value)) {
throw std::runtime_error("Failed to find option " + name + " - it does not exist");
}
}
TestConfiguration::ExtensionAutoLoadingMode TestConfiguration::GetExtensionAutoLoadingMode() {
string res = StringUtil::Lower(GetOptionOrDefault("autoloading", string("default")));
if (res == "none" || res == "default") {
return TestConfiguration::ExtensionAutoLoadingMode::NONE;
} else if (res == "available") {
return TestConfiguration::ExtensionAutoLoadingMode::AVAILABLE;
} else if (res == "all") {
return TestConfiguration::ExtensionAutoLoadingMode::ALL;
}
throw std::runtime_error("Unknown autoloading mode");
}
bool TestConfiguration::ShouldSkipTest(const string &test_name) {
if (test_name.find('/') == 0) {
// Full path specified, strip down to base path so the extension config lookup still works
const string stripped_test_name = test_name.c_str() + test_name.find("test/sql");
return tests_to_be_skipped.count(stripped_test_name);
}
return tests_to_be_skipped.count(test_name);
}
string TestConfiguration::OnInitCommand() {
return GetOptionOrDefault("on_init", string());
}
string TestConfiguration::OnLoadCommand() {
auto res = GetOptionOrDefault("on_load", string(""));
if (res != "" && res != "skip") {
throw std::runtime_error("Unsupported parameter to on_load");
}
return res;
}
string TestConfiguration::OnConnectionCommand() {
return GetOptionOrDefault("on_new_connection", string());
}
string TestConfiguration::OnCleanupCommand() {
return GetOptionOrDefault("on_cleanup", string());
}
SortStyle TestConfiguration::GetDefaultSortStyle() {
SortStyle default_sort_style_enum = SortStyle::NO_SORT;
if (!TryParseSortStyle(GetOptionOrDefault<string>("sort_style", "none"), default_sort_style_enum)) {
throw std::runtime_error("eek: unknown sort style in TestConfig");
}
return default_sort_style_enum;
}
vector<string> TestConfiguration::ExtensionToBeLoadedOnLoad() {
vector<string> res;
auto entry = options.find("statically_loaded_extensions");
if (entry != options.end()) {
vector<Value> ext_list = ListValue::GetChildren(entry->second);
for (auto ext : ext_list) {
res.push_back(ext.GetValue<string>());
}
} else {
res.push_back("core_functions");
}
return res;
}
vector<string> TestConfiguration::ErrorMessagesToBeSkipped() {
vector<string> res;
auto entry = options.find("skip_error_messages");
if (entry != options.end()) {
vector<Value> ext_list = ListValue::GetChildren(entry->second);
for (auto ext : ext_list) {
res.push_back(ext.GetValue<string>());
}
} else {
res.push_back("HTTP");
res.push_back("Unable to connect");
#ifdef DUCKDB_DEBUG_ASYNC_SINK_SOURCE
#ifndef AVOID_DUCKDB_DEBUG_ASYNC_THROW
// The first of those it's throw as a test of what would happen if a task were to be throwing
// It's OK that PositionalTableScanner react re-throwing a different exception, so they need to be removed in
// this specific test setup
res.push_back("ThrowAsyncTask: Test error handling when throwing mid-task");
res.push_back("Unexpected interrupt from table Source in PositionalTableScanner refill");
#endif
#endif
}
return res;
}
void TestConfiguration::LoadBaseConfig(const Value &input) {
auto &test_config = TestConfiguration::Get();
test_config.LoadConfig(input.ToString());
}
void TestConfiguration::ParseConnectScript(const Value &input) {
auto init_cmd = ReadFileToString(input.ToString());
auto &test_config = TestConfiguration::Get();
test_config.ParseOption("on_init", Value(init_cmd));
}
void TestConfiguration::CheckSortStyle(const Value &input) {
SortStyle sort_style;
if (!TryParseSortStyle(input.ToString(), sort_style)) {
throw std::runtime_error(StringUtil::Format("Invalid parameter for sort style %s", input.ToString()));
}
}
bool TestConfiguration::TryParseSortStyle(const string &sort_style, SortStyle &result) {
if (sort_style == "nosort" || sort_style == "none") {
/* Do no sorting */
result = SortStyle::NO_SORT;
} else if (sort_style == "rowsort" || sort_style == "sort") {
/* Row-oriented sorting */
result = SortStyle::ROW_SORT;
} else if (sort_style == "valuesort") {
/* Sort all values independently */
result = SortStyle::VALUE_SORT;
} else {
// if this is not a known sort style
return false;
}
return true;
}
string TestConfiguration::ReadFileToString(const string &path) {
std::ifstream infile(path);
if (infile.bad() || infile.fail()) {
throw std::runtime_error("Failed to open configuration file " + path);
}
std::stringstream buffer;
buffer << infile.rdbuf();
return buffer.str();
}
void TestConfiguration::LoadConfig(const string &config_path) {
try {
// read the config file
auto buffer = ReadFileToString(config_path);
// parse json
auto json = StringUtil::ParseJSONMap(buffer);
auto json_values = json->Flatten();
for (auto &entry : json_values) {
ParseOption(entry.first, Value(entry.second));
}
auto inherit_entry = options.find("inherit_skip_tests");
if (inherit_entry != options.end()) {
auto path_value = inherit_entry->second;
D_ASSERT(path_value.type().id() == LogicalTypeId::VARCHAR);
D_ASSERT(!path_value.IsNull());
auto cwd = TestGetCurrentDirectory();
auto path = TestJoinPath(cwd, path_value.ToString());
TestConfiguration inherit_config;
inherit_config.LoadConfig(path);
tests_to_be_skipped.insert(inherit_config.tests_to_be_skipped.begin(),
inherit_config.tests_to_be_skipped.end());
}
bool found_duplicate_tests = false;
// Convert to unordered_set<string> the list of tests to be skipped
auto entry = options.find("skip_tests");
if (entry != options.end()) {
auto skip_list_entry = ListValue::GetChildren(entry->second);
for (const auto &value : skip_list_entry) {
auto children = StructValue::GetChildren(value);
auto skip_list = ListValue::GetChildren(children[1]);
for (const auto &skipped_test : skip_list) {
auto skipped_test_str = skipped_test.GetValue<string>();
auto insert_result = tests_to_be_skipped.insert(skipped_test_str);
if (!insert_result.second) {
Printer::PrintF("* Test \"%s\" was already present in skipped test list", skipped_test_str);
found_duplicate_tests = true;
}
}
}
options.erase("skip_tests");
}
if (found_duplicate_tests) {
Printer::PrintF("Run python3 scripts/cleanup_config_skip_tests.py to clean up");
}
} catch (std::exception &ex) {
ErrorData error(ex);
throw std::runtime_error(
StringUtil::Format("Failed to parse config file \"%s\": %s", config_path, error.Message()));
}
}
void TestConfiguration::ProcessPath(string &path, const string &test_name) {
path = StringUtil::Replace(path, "{TEST_DIR}", TestDirectoryPath());
path = StringUtil::Replace(path, "{UUID}", UUID::ToString(UUID::GenerateRandomUUID()));
path = StringUtil::Replace(path, "{TEST_NAME}", test_name);
auto base_test_name = StringUtil::Replace(test_name, "/", "_");
path = StringUtil::Replace(path, "{BASE_TEST_NAME}", base_test_name);
path = StringUtil::Replace(path, "__TEST_DIR__", TestDirectoryPath());
path = StringUtil::Replace(path, "__WORKING_DIRECTORY__", FileSystem::GetWorkingDirectory());
}
template <class T, class VAL_T>
T TestConfiguration::GetOptionOrDefault(const string &name, T default_val) {
auto entry = options.find(name);
if (entry == options.end()) {
return default_val;
}
return entry->second.GetValue<VAL_T>();
}
string TestConfiguration::GetDescription() {
return GetOptionOrDefault("description", string());
}
string TestConfiguration::GetInitialDBPath() {
return GetOptionOrDefault("initial_db", string());
}
optional_idx TestConfiguration::GetMaxThreads() {
return GetOptionOrDefault<optional_idx, idx_t>("max_threads", optional_idx());
}
optional_idx TestConfiguration::GetBlockAllocSize() {
return GetOptionOrDefault<optional_idx, idx_t>("block_size", DEFAULT_BLOCK_ALLOC_SIZE);
}
idx_t TestConfiguration::GetCheckpointWALSize() {
return GetOptionOrDefault<idx_t>("checkpoint_wal_size", 0);
}
bool TestConfiguration::GetForceRestart() {
return GetOptionOrDefault("force_restart", false);
}
bool TestConfiguration::GetCheckpointOnShutdown() {
return GetOptionOrDefault("checkpoint_on_shutdown", true);
}
bool TestConfiguration::GetTestMemoryLeaks() {
return GetOptionOrDefault("test_memory_leaks", false);
}
bool TestConfiguration::RunStorageFuzzer() {
return GetOptionOrDefault("storage_fuzzer", false);
}
bool TestConfiguration::GetSummarizeFailures() {
return GetOptionOrDefault("summarize_failures", false);
}
bool TestConfiguration::GetSkipCompiledTests() {
return GetOptionOrDefault("skip_compiled", false);
}
string TestConfiguration::GetStorageVersion() {
return GetOptionOrDefault("storage_version", string());
}
vector<ConfigSetting> TestConfiguration::GetConfigSettings() {
vector<ConfigSetting> result;
if (options.find("settings") != options.end()) {
auto entry = options["settings"];
auto list_children = ListValue::GetChildren(entry);
for (const auto &value : list_children) {
auto &struct_children = StructValue::GetChildren(value);
ConfigSetting config_setting;
config_setting.name = StringValue::Get(struct_children[0]);
config_setting.value = StringValue::Get(struct_children[1]);
result.push_back(std::move(config_setting));
}
}
return result;
}
string TestConfiguration::GetTestEnv(const string &key, const string &default_value) {
if (!test_env_from_config_loaded && options.find("test_env") != options.end()) {
test_env_from_config_loaded = true;
auto entry = options["test_env"];
auto list_children = ListValue::GetChildren(entry);
for (const auto &value : list_children) {
auto &struct_children = StructValue::GetChildren(value);
auto &env = StringValue::Get(struct_children[0]);
auto &env_value = StringValue::Get(struct_children[1]);
test_env[env] = env_value;
}
}
if (test_env.find(key) == test_env.end()) {
return default_value;
}
return test_env[key];
}
const unordered_map<string, string> &TestConfiguration::GetTestEnvMap() {
return test_env;
}
DebugVectorVerification TestConfiguration::GetVectorVerification() {
return EnumUtil::FromString<DebugVectorVerification>(GetOptionOrDefault<string>("verify_vector", "NONE"));
}
DebugInitialize TestConfiguration::GetDebugInitialize() {
return EnumUtil::FromString<DebugInitialize>(GetOptionOrDefault<string>("debug_initialize", "NO_INITIALIZE"));
}
vector<unordered_set<string>> TestConfiguration::GetSelectTagSets() {
return select_tag_sets;
}
vector<unordered_set<string>> TestConfiguration::GetSkipTagSets() {
return skip_tag_sets;
}
std::unordered_set<string> make_tag_set(const Value &src_val) {
// handle both cases -- singleton VARCHAR/string, and set of strings
auto dst_set = std::unordered_set<string>();
if (src_val.type() == LogicalType::VARCHAR) {
dst_set.insert(src_val.GetValue<string>());
} else /* LIST(VARCHAR) */ {
for (auto &tag : ListValue::GetChildren(src_val)) {
dst_set.insert(tag.GetValue<string>());
}
}
return dst_set;
}
void TestConfiguration::AppendSelectTagSet(const Value &tag_set) {
TestConfiguration::Get().select_tag_sets.push_back(make_tag_set(tag_set));
}
void TestConfiguration::AppendSkipTagSet(const Value &tag_set) {
TestConfiguration::Get().skip_tag_sets.push_back(make_tag_set(tag_set));
}
bool is_subset(const unordered_set<string> &sub, const vector<string> &super) {
for (const auto &elt : sub) {
if (std::find(super.begin(), super.end(), elt) == super.end()) {
return false;
}
}
return true;
}
// NOTE: this model of policy assumes simply that all selects are applied to the All set, then
// all skips are applied to that result. (Typical alternative: CLI ordering where each
// select/skip operation is applied in sequence.)
TestConfiguration::SelectPolicy TestConfiguration::GetPolicyForTagSet(const vector<string> &subject_tag_set) {
// Apply select_tag_set first then skip_tag_set; if both empty always NONE
auto policy = TestConfiguration::SelectPolicy::NONE;
// select: if >= 1 select_tag_set is subset of subject_tag_set
// if count(select_tag_sets) > 0 && no matches, SKIP
for (const auto &select_tag_set : select_tag_sets) {
policy = TestConfiguration::SelectPolicy::SKIP; // >=1 sets => SKIP || SELECT
if (is_subset(select_tag_set, subject_tag_set)) {
policy = TestConfiguration::SelectPolicy::SELECT;
break;
}
}
// skip: if >=1 skip_tag_set is subset of subject_tag_set, else passthrough
for (const auto &skip_tag_set : skip_tag_sets) {
if (is_subset(skip_tag_set, subject_tag_set)) {
return TestConfiguration::SelectPolicy::SKIP;
}
}
return policy;
}
bool TestConfiguration::TestForceStorage() {
auto &test_config = TestConfiguration::Get();
return !test_config.GetInitialDBPath().empty();
}
bool TestConfiguration::TestForceReload() {
auto &test_config = TestConfiguration::Get();
return test_config.GetForceRestart();
}
bool TestConfiguration::TestMemoryLeaks() {
auto &test_config = TestConfiguration::Get();
return test_config.GetTestMemoryLeaks();
}
bool TestConfiguration::TestRunStorageFuzzer() {
auto &test_config = TestConfiguration::Get();
return test_config.RunStorageFuzzer();
}
FailureSummary::FailureSummary() : failures_summary_counter(0) {
}
FailureSummary &FailureSummary::Instance() {
static FailureSummary instance;
return instance;
}
string FailureSummary::GetFailureSummary() {
auto &test_config = TestConfiguration::Get();
if (!test_config.GetSummarizeFailures()) {
return string();
}
auto &summary = FailureSummary::Instance();
lock_guard<mutex> guard(summary.failures_lock);
std::ostringstream oss;
for (auto &line : summary.failures_summary) {
oss << line;
}
return oss.str();
}
void FailureSummary::Log(string log_message) {
auto &summary = FailureSummary::Instance();
lock_guard<mutex> lock(summary.failures_lock);
summary.failures_summary.push_back(std::move(log_message));
}
idx_t FailureSummary::GetSummaryCounter() {
auto &summary = FailureSummary::Instance();
return ++summary.failures_summary_counter;
}
bool FailureSummary::SkipLoggingSameError(const string &file_name) {
return Instance().SkipLoggingSameErrorInternal(file_name);
}
bool FailureSummary::SkipLoggingSameErrorInternal(const string &file_name) {
if (file_name.empty()) {
return false;
}
lock_guard<mutex> lock(failures_lock);
if (reported_files.count(file_name) > 0) {
return true;
}
reported_files.insert(file_name);
return false;
}
} // namespace duckdb
|