mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Add tests
This commit is contained in:
parent
73a05d9b6d
commit
1be9a6f6cd
88
tests/queries/0_stateless/01293_client_interactive_vertical_multiline.sh
Executable file
88
tests/queries/0_stateless/01293_client_interactive_vertical_multiline.sh
Executable file
@ -0,0 +1,88 @@
|
|||||||
|
#!/usr/bin/expect -f
|
||||||
|
|
||||||
|
log_user 0
|
||||||
|
set timeout 60
|
||||||
|
spawn clickhouse-client
|
||||||
|
match_max 100000
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
set timeout 60
|
||||||
|
spawn clickhouse-client --multiline
|
||||||
|
match_max 100000
|
||||||
|
|
||||||
|
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
|
34
tests/queries/0_stateless/01293_client_interactive_vertical_singleline.sh
Executable file
34
tests/queries/0_stateless/01293_client_interactive_vertical_singleline.sh
Executable file
@ -0,0 +1,34 @@
|
|||||||
|
#!/usr/bin/expect -f
|
||||||
|
|
||||||
|
log_user 0
|
||||||
|
set timeout 60
|
||||||
|
spawn clickhouse-client
|
||||||
|
match_max 100000
|
||||||
|
|
||||||
|
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
|
Loading…
Reference in New Issue
Block a user