ClickHouse/tests/queries/0_stateless/01945_system_warnings.expect

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-07-12 12:21:18 +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
log_user 0
set timeout 60
match_max 100000
# A default timeout action is to do nothing, change it to fail
expect_after {
timeout {
exit 1
}
}
set basedir [file dirname $argv0]
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion"
expect ":) "
2021-07-12 13:00:23 +00:00
#find out BUILD TYPE
2021-07-12 16:17:39 +00:00
send -- "SELECT value FROM system.build_options WHERE name='BUILD_TYPE'\r"
2021-07-12 12:21:18 +00:00
expect {
"Debug" {
2021-07-12 13:00:23 +00:00
# Check debug message in system.warnings
2021-07-12 16:17:39 +00:00
send -- "SELECT message FROM system.warnings WHERE message='Server was built in debug mode. It will work slowly.'\r"
2021-07-12 12:21:18 +00:00
expect "Server was built in debug mode. It will work slowly."
expect ":) "
}
2021-07-12 13:00:23 +00:00
"RelWithDebInfo" {
# Check empty to find out existence
2021-07-12 16:17:39 +00:00
send -- "SELECT message FROM system.warnings WHERE 0=1\r"
2021-07-12 13:00:23 +00:00
expect "Ok."
expect ":) "
}
2021-07-12 12:21:18 +00:00
}
# Finish test
2021-07-16 09:57:28 +00:00
send -- "q\r"
2021-07-12 12:21:18 +00:00
expect eof