2021-06-21 14:20:29 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import signal
|
|
|
|
|
|
|
|
CURDIR = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
sys.path.insert(0, os.path.join(CURDIR, 'helpers'))
|
|
|
|
|
|
|
|
from client import client, prompt, end_of_block
|
|
|
|
|
|
|
|
log = None
|
|
|
|
# uncomment the line below for debugging
|
|
|
|
#log=sys.stdout
|
|
|
|
|
2021-06-22 15:56:47 +00:00
|
|
|
with client(name='client1>', log=log) as client1:
|
2021-06-21 14:20:29 +00:00
|
|
|
client1.expect(prompt)
|
|
|
|
client1.send('SELECT number FROM numbers(100) FORMAT Null')
|
|
|
|
client1.expect('Progress: 100\.00 rows, 800\.00 B.*' + end_of_block)
|
2021-06-21 20:46:26 +00:00
|
|
|
client1.expect('0 rows in set. Elapsed: [\\w]{1}\.[\\w]{3} sec.' + end_of_block)
|