ClickHouse/dbms/tests/queries/0_stateless/helpers/client.py
Vitaliy Zakaznikov 825c21f29a * Increasing timeout from 2 to 20 sec.
* Style fix
2019-06-13 06:36:59 -04:00

22 lines
467 B
Python

import os
import sys
CURDIR = os.path.dirname(os.path.realpath(__file__))
sys.path.insert(0, os.path.join(CURDIR))
import uexpect
prompt = ':\) '
end_of_block = r'.*\r\n.*\r\n'
def client(command=None, name='', log=None):
if command is None:
client = uexpect.spawn(os.environ.get('CLICKHOUSE_CLIENT'))
else:
client = uexpect.spawn(command)
client.eol('\r')
client.logger(log, prefix=name)
client.timeout(20)
return client