mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Merge pull request #32497 from amosbird/replxxtest1
Add test for clickhouse-client history navigation
This commit is contained in:
commit
13a3f85ece
33
tests/queries/0_stateless/02132_client_history_navigation.expect
Executable file
33
tests/queries/0_stateless/02132_client_history_navigation.expect
Executable file
@ -0,0 +1,33 @@
|
|||||||
|
#!/usr/bin/expect -f
|
||||||
|
# Tags: no-fasttest
|
||||||
|
|
||||||
|
log_user 0
|
||||||
|
set timeout 3
|
||||||
|
match_max 100000
|
||||||
|
# A default timeout action is to do nothing, change it to fail
|
||||||
|
expect_after {
|
||||||
|
timeout {
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# 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
|
Loading…
Reference in New Issue
Block a user