2021-07-15 12:53:11 +00:00
|
|
|
#!/usr/bin/expect -f
|
|
|
|
|
|
|
|
# This is a test for system.warnings. Testing in interactive mode is necessary,
|
|
|
|
# as we want to see certain warnings from client
|
|
|
|
|
2022-07-02 09:05:52 +00:00
|
|
|
set basedir [file dirname $argv0]
|
|
|
|
set basename [file tail $argv0]
|
|
|
|
exp_internal -f $env(CLICKHOUSE_TMP)/$basename.debuglog 0
|
|
|
|
|
2021-07-15 12:53:11 +00:00
|
|
|
log_user 0
|
|
|
|
set timeout 60
|
|
|
|
match_max 100000
|
|
|
|
|
|
|
|
expect_after {
|
2021-12-28 18:16:04 +00:00
|
|
|
# Do not ignore eof from expect
|
|
|
|
eof { exp_continue }
|
|
|
|
# A default timeout action is to do nothing, change it to fail
|
|
|
|
timeout { exit 1 }
|
2021-07-15 12:53:11 +00:00
|
|
|
}
|
|
|
|
|
2021-07-15 14:37:44 +00:00
|
|
|
set Debug_type 0
|
|
|
|
|
2023-02-20 08:05:48 +00:00
|
|
|
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion --history_file=/dev/null"
|
2021-07-15 14:37:44 +00:00
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
# Check debug type
|
2023-02-20 08:25:28 +00:00
|
|
|
send -- "SELECT lower(value) FROM system.build_options WHERE name='BUILD_TYPE'\r"
|
2021-07-15 14:37:44 +00:00
|
|
|
expect {
|
2023-02-20 08:25:28 +00:00
|
|
|
"debug" {
|
|
|
|
set Debug_type 1
|
|
|
|
expect ":) "
|
2021-07-15 14:37:44 +00:00
|
|
|
}
|
2023-02-20 08:25:28 +00:00
|
|
|
"relwithdebinfo"
|
2021-07-15 14:37:44 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 09:57:28 +00:00
|
|
|
send -- "q\r"
|
2021-07-15 14:37:44 +00:00
|
|
|
expect eof
|
|
|
|
|
|
|
|
if { $Debug_type > 0} {
|
|
|
|
|
2023-02-20 08:05:48 +00:00
|
|
|
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion --history_file=/dev/null"
|
2021-07-15 14:37:44 +00:00
|
|
|
expect "Warnings:"
|
2021-07-15 12:53:11 +00:00
|
|
|
expect " * Server was built in debug mode. It will work slowly."
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
# Check debug message in system.warnings
|
|
|
|
send -- "SELECT message FROM system.warnings WHERE message='Server was built in debug mode. It will work slowly.'\r"
|
|
|
|
expect "Server was built in debug mode. It will work slowly."
|
|
|
|
expect ":) "
|
|
|
|
|
2021-07-16 09:57:28 +00:00
|
|
|
send -- "q\r"
|
2021-07-15 14:37:44 +00:00
|
|
|
expect eof
|
|
|
|
}
|
2021-11-10 15:45:15 +00:00
|
|
|
|
2023-02-20 08:05:48 +00:00
|
|
|
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion --max_memory_usage_for_all_queries=123 --history_file=/dev/null"
|
2021-11-10 15:45:15 +00:00
|
|
|
expect "Warnings:"
|
|
|
|
expect " * Some obsolete setting is changed."
|
|
|
|
expect ":) "
|
|
|
|
send -- "q\r"
|
|
|
|
expect eof
|