ClickHouse/tests/queries/0_stateless/02132_client_history_navigation.expect

34 lines
675 B
Plaintext
Raw Normal View History

2021-12-10 09:18:21 +00:00
#!/usr/bin/expect -f
log_user 0
set timeout 3
match_max 100000
2021-12-10 09:18:21 +00:00
expect_after {
# 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-12-10 09:18:21 +00:00
}
# useful debugging configuration
# exp_internal 1
set basedir [file dirname $argv0]
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion --highlight 0"
expect ":) "
# Make a query
send -- "SELECT 1\r"
expect "1"
expect ":) "
send -- "SELECT 2"
send -- "\033\[A"
expect "SELECT 1"
send -- "\033\[B"
expect "SELECT 2"
send -- "\r"
expect "2"
send -- "exit\r"
expect eof