2020-12-18 13:26:11 +00:00
|
|
|
|
#!/usr/bin/expect -f
|
|
|
|
|
|
|
|
|
|
log_user 0
|
2021-01-21 18:01:32 +00:00
|
|
|
|
set timeout 5
|
2020-12-18 13:26:11 +00:00
|
|
|
|
match_max 100000
|
|
|
|
|
|
2021-01-21 18:01:32 +00:00
|
|
|
|
# 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"
|
2020-12-18 13:26:11 +00:00
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\r"
|
|
|
|
|
expect "│ 1 │"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\\G\r"
|
|
|
|
|
expect "Row 1:"
|
|
|
|
|
expect "1: 1"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\\\r"
|
|
|
|
|
expect ":-] "
|
|
|
|
|
send -- ", 2\r"
|
|
|
|
|
expect "│ 1 │ 2 │"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\\\r"
|
|
|
|
|
expect ":-] "
|
|
|
|
|
send -- ", 2\\G\r"
|
|
|
|
|
expect "Row 1:"
|
|
|
|
|
expect "1: 1"
|
|
|
|
|
expect "2: 2"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- ""
|
|
|
|
|
expect eof
|
|
|
|
|
|
2021-01-21 19:56:28 +00:00
|
|
|
|
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT"
|
2020-12-18 13:26:11 +00:00
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1;\r"
|
|
|
|
|
expect "│ 1 │"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\\G\r"
|
|
|
|
|
expect "Row 1:"
|
|
|
|
|
expect "1: 1"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1; \r"
|
|
|
|
|
expect "│ 1 │"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\\G \r"
|
|
|
|
|
expect "Row 1:"
|
|
|
|
|
expect "1: 1"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\r"
|
|
|
|
|
expect ":-] "
|
|
|
|
|
send -- ";\r"
|
|
|
|
|
expect "│ 1 │"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\r"
|
|
|
|
|
expect ":-] "
|
|
|
|
|
send -- "\\G\r"
|
|
|
|
|
expect "Row 1:"
|
|
|
|
|
expect "1: 1"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\r"
|
|
|
|
|
expect ":-] "
|
|
|
|
|
send -- ", 2;\r"
|
|
|
|
|
expect "│ 1 │ 2 │"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- "SELECT 1\r"
|
|
|
|
|
expect ":-] "
|
|
|
|
|
send -- ", 2\\G\r"
|
|
|
|
|
expect "Row 1:"
|
|
|
|
|
expect "1: 1"
|
|
|
|
|
expect "2: 2"
|
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
|
|
send -- ""
|
|
|
|
|
expect eof
|