2019-03-30 18:40:52 +00:00
|
|
|
import pytest
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
2022-03-22 16:39:58 +00:00
|
|
|
instance = cluster.add_instance("instance", clickhouse_path_dir="clickhouse_path")
|
2019-03-30 18:40:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def started_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
2022-03-22 16:39:58 +00:00
|
|
|
instance.query("CREATE DATABASE test")
|
2019-03-30 18:40:52 +00:00
|
|
|
yield cluster
|
|
|
|
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
def create_simple_table():
|
|
|
|
instance.query("DROP TABLE IF EXISTS test.simple")
|
2022-03-22 16:39:58 +00:00
|
|
|
instance.query(
|
|
|
|
"""
|
2019-03-30 18:40:52 +00:00
|
|
|
CREATE TABLE test.simple (key UInt64, value String)
|
|
|
|
ENGINE = MergeTree ORDER BY tuple();
|
2022-03-22 16:39:58 +00:00
|
|
|
"""
|
|
|
|
)
|
2019-03-30 18:40:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_protobuf_format_input(started_cluster):
|
|
|
|
create_simple_table()
|
|
|
|
instance.http_query(
|
2022-04-03 07:52:44 +00:00
|
|
|
"INSERT INTO test.simple SETTINGS format_schema='simple:KeyValuePair' FORMAT Protobuf",
|
2022-03-22 16:39:58 +00:00
|
|
|
"\x07\x08\x01\x12\x03abc\x07\x08\x02\x12\x03def",
|
|
|
|
)
|
2019-03-30 18:40:52 +00:00
|
|
|
assert instance.query("SELECT * from test.simple") == "1\tabc\n2\tdef\n"
|
|
|
|
|
|
|
|
|
|
|
|
def test_protobuf_format_output(started_cluster):
|
|
|
|
create_simple_table()
|
2022-03-22 16:39:58 +00:00
|
|
|
instance.query("INSERT INTO test.simple VALUES (1, 'abc'), (2, 'def')")
|
|
|
|
assert (
|
|
|
|
instance.http_query(
|
|
|
|
"SELECT * FROM test.simple FORMAT Protobuf SETTINGS format_schema='simple:KeyValuePair'"
|
|
|
|
)
|
|
|
|
== "\x07\x08\x01\x12\x03abc\x07\x08\x02\x12\x03def"
|
|
|
|
)
|