mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 00:24:21 +01:00
There is a distinction between tests that verify extension-specific behavior and tests that verify interactions between the database engine and extensions. Previously, both types of tests were kept in extensions.py. With this new framework, we can extract the latter type of tests from extensions.py into TCL. This cleans up extensions.py and provides compatibility testing with SQLite at no extra cost. To demonstrate the framework’s usage, tests verifying the handling of virtual tables were extracted to TCL. In the future, we may consider moving extension-specific tests to TCL as well, especially those that have counterparts in SQLite or sqlean.
297 lines
11 KiB
Tcl
297 lines
11 KiB
Tcl
set sqlite_exec [expr {[info exists env(SQLITE_EXEC)] ? $env(SQLITE_EXEC) : "sqlite3"}]
|
||
set test_dbs [list "testing/testing.db" "testing/testing_norowidalias.db"]
|
||
set test_small_dbs [list "testing/testing_small.db" ]
|
||
|
||
# Array storing loaded extensions
|
||
array set extensions {}
|
||
|
||
# Mapping of extension names to their respective library paths per database type
|
||
set extension_map {
|
||
test_ext {
|
||
sqlite "./target/debug/liblimbo_sqlite_test_ext"
|
||
turso "./target/debug/libturso_ext_tests"
|
||
}
|
||
}
|
||
|
||
proc load_extension {extension_name} {
|
||
global extension_map
|
||
global extensions
|
||
|
||
set version_output [exec $::sqlite_exec --version]
|
||
|
||
set is_turso [string match "*Turso*" $version_output]
|
||
set db_type [expr {$is_turso ? "turso" : "sqlite"}]
|
||
|
||
set ext_info [dict get $extension_map $extension_name]
|
||
set ext_path [dict get $ext_info $db_type]
|
||
|
||
set extensions($extension_name) $ext_path
|
||
}
|
||
|
||
proc error_put {sql} {
|
||
puts [format "\033\[1;31mTest FAILED:\033\[0m %s" $sql ]
|
||
}
|
||
|
||
proc test_put {msg db test_name} {
|
||
puts [format "\033\[1;34m(%s)\033\[0m %s $msg: \033\[1;32m%s\033\[0m" $db [string repeat " " [expr {40 - [string length $db]}]] $test_name]
|
||
}
|
||
|
||
proc evaluate_sql {sqlite_exec db_name sql} {
|
||
global extensions
|
||
set load_commands ""
|
||
foreach name [array names extensions] {
|
||
append load_commands ".load $extensions($name)\n"
|
||
}
|
||
set statements "${load_commands}${sql}"
|
||
|
||
set command [list $sqlite_exec $db_name]
|
||
set output [exec echo $statements | {*}$command]
|
||
return $output
|
||
}
|
||
|
||
proc run_test {sqlite_exec db_name sql expected_output} {
|
||
set actual_output [evaluate_sql $sqlite_exec $db_name $sql]
|
||
if {$actual_output ne $expected_output} {
|
||
error_put $sql
|
||
puts "returned '$actual_output'"
|
||
puts "expected '$expected_output'"
|
||
exit 1
|
||
}
|
||
}
|
||
|
||
proc do_execsql_test {test_name sql_statements expected_outputs} {
|
||
foreach db $::test_dbs {
|
||
test_put "Running test" $db $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
set combined_expected_output [join $expected_outputs "\n"]
|
||
run_test $::sqlite_exec $db $combined_sql $combined_expected_output
|
||
}
|
||
}
|
||
|
||
proc do_execsql_test_small {test_name sql_statements expected_outputs} {
|
||
foreach db $::test_small_dbs {
|
||
test_put "Running test" $db $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
set combined_expected_output [join $expected_outputs "\n"]
|
||
run_test $::sqlite_exec $db $combined_sql $combined_expected_output
|
||
}
|
||
}
|
||
|
||
|
||
proc do_execsql_test_regex {test_name sql_statements expected_regex} {
|
||
foreach db $::test_dbs {
|
||
test_put "Running test" $db $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
set actual_output [evaluate_sql $::sqlite_exec $db $combined_sql]
|
||
|
||
# Validate the actual output against the regular expression
|
||
if {![regexp $expected_regex $actual_output]} {
|
||
error_put $sql_statements
|
||
puts "returned '$actual_output'"
|
||
puts "expected to match regex '$expected_regex'"
|
||
exit 1
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
proc do_execsql_test_on_specific_db {db_name test_name sql_statements expected_outputs} {
|
||
test_put "Running test" $db_name $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
set combined_expected_output [join $expected_outputs "\n"]
|
||
run_test $::sqlite_exec $db_name $combined_sql $combined_expected_output
|
||
}
|
||
|
||
proc run_test_skip_lines {sqlite_exec skip_lines db_name sql expected_output} {
|
||
set actual_output [evaluate_sql $sqlite_exec $db_name $sql]
|
||
set lines [split $actual_output "\n"]
|
||
set actual_without_skipped [join [lrange $lines $skip_lines end] "\n"]
|
||
if {$actual_without_skipped ne $expected_output} {
|
||
error_put $sql
|
||
puts "returned '$actual_without_skipped'"
|
||
puts "expected '$expected_output'"
|
||
exit 1
|
||
}
|
||
}
|
||
|
||
proc do_execsql_test_skip_lines_on_specific_db {skip_lines db_name test_name sql_statements expected_outputs} {
|
||
test_put "Running test" $db_name $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
set combined_expected_output [join $expected_outputs "\n"]
|
||
run_test_skip_lines $::sqlite_exec $skip_lines $db_name $combined_sql $combined_expected_output
|
||
}
|
||
|
||
|
||
proc within_tolerance {actual expected tolerance} {
|
||
expr {abs($actual - $expected) <= $tolerance}
|
||
}
|
||
|
||
# This function is used to test floating point values within a tolerance
|
||
# FIXME: When Limbo's floating point presentation matches to SQLite, this could/should be removed
|
||
proc do_execsql_test_tolerance {test_name sql_statements expected_outputs tolerance} {
|
||
foreach db $::test_dbs {
|
||
test_put "Running test" $db $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
set actual_output [evaluate_sql $::sqlite_exec $db $combined_sql]
|
||
set actual_values [split $actual_output "\n"]
|
||
set expected_values [split $expected_outputs "\n"]
|
||
|
||
if {[llength $actual_values] != [llength $expected_values]} {
|
||
error_put $sql_statements
|
||
puts "returned '$actual_output'"
|
||
puts "expected '$expected_outputs'"
|
||
exit 1
|
||
}
|
||
|
||
for {set i 0} {$i < [llength $actual_values]} {incr i} {
|
||
set actual [lindex $actual_values $i]
|
||
set expected [lindex $expected_values $i]
|
||
|
||
if {![within_tolerance $actual $expected $tolerance]} {
|
||
set lower_bound [expr {$expected - $tolerance}]
|
||
set upper_bound [expr {$expected + $tolerance}]
|
||
error_put $sql_statements
|
||
puts "returned '$actual'"
|
||
puts "expected a value within the range \[$lower_bound, $upper_bound\]"
|
||
exit 1
|
||
}
|
||
}
|
||
}
|
||
}
|
||
# This procedure passes the test if the output contains error messages
|
||
proc run_test_expecting_any_error {sqlite_exec db_name sql} {
|
||
# Use catch to handle both successful and error cases
|
||
catch {evaluate_sql $sqlite_exec $db_name $sql} result options
|
||
|
||
# Check if the output contains error indicators (×, error, syntax error, etc.)
|
||
if {[regexp {(error|ERROR|Error|×|syntax error|failed)} $result]} {
|
||
# Error found in output - test passed
|
||
puts "\033\[1;32mTest PASSED:\033\[0m Got expected error"
|
||
return 1
|
||
}
|
||
|
||
# No error indicators in output
|
||
error_put $sql
|
||
puts "Expected an error but command output didn't indicate any error: '$result'"
|
||
exit 1
|
||
}
|
||
|
||
# This procedure passes if error matches a specific pattern
|
||
proc run_test_expecting_error {sqlite_exec db_name sql expected_error_pattern} {
|
||
# Capture output whether command succeeds or fails
|
||
catch {evaluate_sql $sqlite_exec $db_name $sql} result options
|
||
|
||
# Check if the output contains error indicators first
|
||
if {![regexp {(error|ERROR|Error|×|syntax error|failed)} $result]} {
|
||
error_put $sql
|
||
puts "Expected an error matching '$expected_error_pattern'"
|
||
puts "But command output didn't indicate any error: '$result'"
|
||
exit 1
|
||
}
|
||
|
||
# Now check if the error message matches the expected pattern
|
||
if {![regexp $expected_error_pattern $result]} {
|
||
error_put $sql
|
||
puts "Error occurred but didn't match expected pattern."
|
||
puts "Output was: '$result'"
|
||
puts "Expected pattern: '$expected_error_pattern'"
|
||
exit 1
|
||
}
|
||
|
||
# If we get here, the test passed - got expected error matching pattern
|
||
return 1
|
||
}
|
||
|
||
# This version accepts exact error text, ignoring formatting
|
||
proc run_test_expecting_error_content {sqlite_exec db_name sql expected_error_text} {
|
||
# Capture output whether command succeeds or fails
|
||
catch {evaluate_sql $sqlite_exec $db_name $sql} result options
|
||
|
||
# Check if the output contains error indicators first
|
||
if {![regexp {(error|ERROR|Error|×|syntax error|failed)} $result]} {
|
||
error_put $sql
|
||
puts "Expected an error with text: '$expected_error_text'"
|
||
puts "But command output didn't indicate any error: '$result'"
|
||
exit 1
|
||
}
|
||
|
||
# Remove box-drawing characters, multiplication signs, and other non-ASCII junk
|
||
set cleaned_result [regsub -all {[\u2500-\u257F\u00D7]} $result ""]
|
||
#TODO any other possible cleanups?
|
||
|
||
# Normalize both the actual and expected error messages
|
||
# Remove all whitespace, newlines, and special characters for comparison
|
||
set normalized_actual [regsub -all {[[:space:]]|[[:punct:]]} $cleaned_result ""]
|
||
set normalized_expected [regsub -all {[[:space:]]|[[:punct:]]} $expected_error_text ""]
|
||
|
||
# Convert to lowercase for case-insensitive comparison
|
||
set normalized_actual [string tolower $normalized_actual]
|
||
set normalized_expected [string tolower $normalized_expected]
|
||
|
||
# Check if the normalized strings contain the same text
|
||
if {[string first $normalized_expected $normalized_actual] == -1} {
|
||
error_put $sql
|
||
puts "Error occurred but content didn't match."
|
||
puts "Output was: '$result'"
|
||
puts "Expected text: '$expected_error_text'"
|
||
exit 1
|
||
}
|
||
|
||
# If we get here, the test passed - got error with expected content
|
||
return 1
|
||
}
|
||
|
||
proc do_execsql_test_error {test_name sql_statements expected_error_pattern} {
|
||
foreach db $::test_dbs {
|
||
test_put "Running error test" $db $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
run_test_expecting_error $::sqlite_exec $db $combined_sql $expected_error_pattern
|
||
}
|
||
}
|
||
|
||
proc do_execsql_test_error_content {test_name sql_statements expected_error_text} {
|
||
foreach db $::test_dbs {
|
||
test_put "Running error content test" $db $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
run_test_expecting_error_content $::sqlite_exec $db $combined_sql $expected_error_text
|
||
}
|
||
}
|
||
|
||
proc do_execsql_test_any_error {test_name sql_statements} {
|
||
foreach db $::test_dbs {
|
||
test_put "Running any-error test" $db $test_name
|
||
set combined_sql [string trim $sql_statements]
|
||
run_test_expecting_any_error $::sqlite_exec $db $combined_sql
|
||
}
|
||
}
|
||
|
||
proc do_execsql_test_in_memory_any_error {test_name sql_statements} {
|
||
test_put "Running any-error test" in-memory $test_name
|
||
|
||
# Use ":memory:" special filename for in-memory database
|
||
set db_name ":memory:"
|
||
|
||
set combined_sql [string trim $sql_statements]
|
||
run_test_expecting_any_error $::sqlite_exec $db_name $combined_sql
|
||
}
|
||
|
||
proc do_execsql_test_in_memory_error_content {test_name sql_statements expected_error_text} {
|
||
test_put "Running error content test" in-memory $test_name
|
||
|
||
# Use ":memory:" special filename for in-memory database
|
||
set db_name ":memory:"
|
||
|
||
set combined_sql [string trim $sql_statements]
|
||
run_test_expecting_error_content $::sqlite_exec $db_name $combined_sql $expected_error_text
|
||
}
|
||
|
||
proc do_execsql_test_in_memory_error {test_name sql_statements expected_error_pattern} {
|
||
test_put "Running error test" in-memory $test_name
|
||
|
||
# Use ":memory:" special filename for in-memory database
|
||
set db_name ":memory:"
|
||
|
||
set combined_sql [string trim $sql_statements]
|
||
run_test_expecting_error $::sqlite_exec $db_name $combined_sql $expected_error_pattern
|
||
}
|