2020-10-02 16:54:07 +00:00
|
|
|
#!/usr/bin/env python3
|
2019-10-02 10:52:40 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
with client(name='client1>', log=log) as client1, client(name='client2>', log=log) as client2:
|
|
|
|
client1.expect(prompt)
|
|
|
|
client2.expect(prompt)
|
|
|
|
|
|
|
|
client1.send('SET allow_experimental_live_view = 1')
|
|
|
|
client1.expect(prompt)
|
|
|
|
client2.send('SET allow_experimental_live_view = 1')
|
|
|
|
client2.expect(prompt)
|
|
|
|
|
|
|
|
client1.send('DROP TABLE IF EXISTS test.lv')
|
|
|
|
client1.expect(prompt)
|
2020-03-10 19:36:17 +00:00
|
|
|
client1.send('DROP TABLE IF EXISTS test.mt')
|
2019-10-02 10:52:40 +00:00
|
|
|
client1.expect(prompt)
|
|
|
|
client1.send('CREATE TABLE test.mt (a Int32) Engine=MergeTree order by tuple()')
|
|
|
|
client1.expect(prompt)
|
|
|
|
client1.send('CREATE LIVE VIEW test.lv AS SELECT sum(a) FROM test.mt')
|
|
|
|
client1.expect(prompt)
|
|
|
|
client1.send('WATCH test.lv')
|
2020-07-15 11:24:33 +00:00
|
|
|
client1.expect('_version')
|
2019-10-02 10:52:40 +00:00
|
|
|
client1.expect(r'0.*1' + end_of_block)
|
|
|
|
client2.send('INSERT INTO test.mt VALUES (1),(2),(3)')
|
|
|
|
client1.expect(r'6.*2' + end_of_block)
|
|
|
|
client2.expect(prompt)
|
|
|
|
client2.send('INSERT INTO test.mt VALUES (4),(5),(6)')
|
|
|
|
client1.expect(r'21.*3' + end_of_block)
|
|
|
|
client2.expect(prompt)
|
2020-07-10 02:17:15 +00:00
|
|
|
for i in range(1, 129):
|
2019-10-02 10:52:40 +00:00
|
|
|
client2.send('INSERT INTO test.mt VALUES (1)')
|
2020-07-10 02:17:15 +00:00
|
|
|
client1.expect(r'%d.*%d' % (21 + i, 3 + i) + end_of_block)
|
2019-10-02 10:52:40 +00:00
|
|
|
client2.expect(prompt)
|
|
|
|
# send Ctrl-C
|
|
|
|
client1.send('\x03', eol='')
|
|
|
|
match = client1.expect('(%s)|([#\$] )' % prompt)
|
|
|
|
if match.groups()[1]:
|
|
|
|
client1.send(client1.command)
|
2020-07-10 02:17:15 +00:00
|
|
|
client1.expect(prompt)
|
2019-10-02 10:52:40 +00:00
|
|
|
client1.send('DROP TABLE test.lv')
|
|
|
|
client1.expect(prompt)
|
|
|
|
client1.send('DROP TABLE test.mt')
|
|
|
|
client1.expect(prompt)
|