ClickHouse/tests/integration/test_relative_filepath/test.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.4 KiB
Python
Raw Normal View History

import pytest
from helpers.cluster import ClickHouseCluster
cluster = ClickHouseCluster(__file__)
2019-12-02 08:23:02 +00:00
node = cluster.add_instance("node", main_configs=["configs/config.xml"])
path_to_userfiles_from_defaut_config = "user_files"
@pytest.fixture(scope="module")
def start_cluster():
try:
cluster.start()
yield cluster
finally:
cluster.shutdown()
def test_filepath(start_cluster):
# 2 rows data
2019-11-29 07:05:48 +00:00
some_data = "Test\t111.222\nData\t333.444"
2019-12-02 08:23:02 +00:00
node.exec_in_container(
["bash", "-c", "mkdir -p {}".format(path_to_userfiles_from_defaut_config)],
privileged=True,
user="root",
)
2019-11-29 07:05:48 +00:00
node.exec_in_container(
[
2019-11-29 07:05:48 +00:00
"bash",
"-c",
'echo "{}" > {}'.format(
some_data,
path_to_userfiles_from_defaut_config + "/relative_user_file_test",
),
],
privileged=True,
user="root",
)
test_requests = [
("relative_user_file_test", "2"),
2019-11-29 07:05:48 +00:00
(
"../" + path_to_userfiles_from_defaut_config + "/relative_user_file_test",
"2",
),
2019-11-29 07:05:48 +00:00
]
for pattern, value in test_requests:
assert (
node.query(
"""
2019-12-02 08:23:02 +00:00
select count() from file('{}', 'TSV', 'text String, number Float64')
""".format(
pattern
)
)
== "{}\n".format(value)
)