ClickHouse/dbms/tests/integration/test_mysql_protocol/test.py

115 lines
4.5 KiB
Python
Raw Normal View History

2019-04-02 22:21:44 +00:00
# coding: utf-8
import os
2019-04-07 10:29:30 +00:00
import docker
2019-04-02 22:21:44 +00:00
import pytest
2019-04-07 10:29:30 +00:00
import subprocess
2019-04-02 22:21:44 +00:00
import pymysql.connections
from docker.models.containers import Container
from helpers.cluster import ClickHouseCluster
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
cluster = ClickHouseCluster(__file__, base_configs_dir=os.path.join(SCRIPT_DIR, './configs'))
2019-04-07 10:29:30 +00:00
node = cluster.add_instance('node')
2019-04-02 22:21:44 +00:00
server_port = 9001
@pytest.fixture(scope="module")
2019-04-07 10:29:30 +00:00
def server_address():
2019-04-02 22:21:44 +00:00
cluster.start()
try:
2019-04-07 10:29:30 +00:00
yield cluster.get_instance_ip('node')
2019-04-02 22:21:44 +00:00
finally:
cluster.shutdown()
@pytest.fixture(scope='module')
2019-04-07 10:29:30 +00:00
def mysql_client():
docker_compose = os.path.join(SCRIPT_DIR, 'clients', 'mysql', 'docker_compose.yml')
subprocess.check_call(['docker-compose', '-p', cluster.project_name, '-f', docker_compose, 'up', '--no-recreate', '-d', '--build'])
yield docker.from_env().containers.get(cluster.project_name + '_mysql1_1')
2019-04-02 22:21:44 +00:00
@pytest.fixture(scope='module')
2019-04-07 10:29:30 +00:00
def golang_container():
docker_compose = os.path.join(SCRIPT_DIR, 'clients', 'golang', 'docker_compose.yml')
subprocess.check_call(['docker-compose', '-p', cluster.project_name, '-f', docker_compose, 'up', '--no-recreate', '-d', '--build'])
yield docker.from_env().containers.get(cluster.project_name + '_golang1_1')
2019-04-02 22:21:44 +00:00
2019-04-07 10:29:30 +00:00
def test_mysql_client(mysql_client, server_address):
2019-04-02 22:21:44 +00:00
# type: (Container, str) -> None
2019-04-07 10:29:30 +00:00
code, (stdout, stderr) = mysql_client.exec_run('''
2019-04-02 22:21:44 +00:00
mysql --protocol tcp -h {host} -P {port} default -u default --enable-cleartext-plugin --password=123
-e "select 1 as a;"
-e "select 'тест' as b;"
'''.format(host=server_address, port=server_port), demux=True)
assert stdout == 'a\n1\nb\nтест\n'
2019-04-07 10:29:30 +00:00
code, (stdout, stderr) = mysql_client.exec_run('''
2019-04-02 22:21:44 +00:00
mysql --protocol tcp -h {host} -P {port} default -u default --enable-cleartext-plugin --password=abc -e "select 1 as a;"
'''.format(host=server_address, port=server_port), demux=True)
assert stderr == 'mysql: [Warning] Using a password on the command line interface can be insecure.\n' \
'ERROR 193 (00000): Wrong password for user default\n'
2019-04-07 10:29:30 +00:00
code, (stdout, stderr) = mysql_client.exec_run('''
2019-04-02 22:21:44 +00:00
mysql --protocol tcp -h {host} -P {port} default -u default --enable-cleartext-plugin --password=123
-e "use system;"
-e "select count(*) from (select name from tables limit 1);"
-e "use system2;"
'''.format(host=server_address, port=server_port), demux=True)
assert stdout == 'count()\n1\n'
assert stderr == "mysql: [Warning] Using a password on the command line interface can be insecure.\n" \
"ERROR 81 (00000) at line 1: Database system2 doesn't exist\n"
2019-04-07 10:29:30 +00:00
def test_python_client(server_address):
2019-04-02 22:21:44 +00:00
with pytest.raises(pymysql.InternalError) as exc_info:
pymysql.connections.Connection(host=server_address, user='default', password='abacab', database='default', port=server_port)
assert exc_info.value.args == (193, 'Wrong password for user default')
client = pymysql.connections.Connection(host=server_address, user='default', password='123', database='default', port=server_port)
with pytest.raises(pymysql.InternalError) as exc_info:
client.query('select name from tables')
assert exc_info.value.args == (60, "Table default.tables doesn't exist.")
cursor = client.cursor(pymysql.cursors.DictCursor)
cursor.execute("select 1 as a, 'тест' as b")
assert cursor.fetchall() == [{'a': '1', 'b': 'тест'}]
client.select_db('system')
with pytest.raises(pymysql.InternalError) as exc_info:
client.select_db('system2')
assert exc_info.value.args == (81, "Database system2 doesn't exist")
2019-04-07 10:29:30 +00:00
def test_golang_client(server_address, golang_container):
# type: (str, Container) -> None
code, (stdout, stderr) = golang_container.exec_run('./main --host {host} --port {port} --user default --password 123 --database '
'abc'.format(host=server_address, port=server_port), demux=True)
assert code == 1
assert stderr == "Error 81: Database abc doesn't exist\n"
code, (stdout, stderr) = golang_container.exec_run('./main --host {host} --port {port} --user default --password 123 --database '
'default'.format(host=server_address, port=server_port), demux=True)
assert code == 0
with open(os.path.join(SCRIPT_DIR, 'clients', 'golang', '0.reference')) as fp:
reference = fp.read()
assert stdout == reference