mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
b75963d370
This PR formats all the `*.py` files found under the `tests/integration` folder. It also reorders the imports and cleans up a bunch of unused imports. The formatting also takes care of other things like wrapping lines and fixing spaces and indents such that the tests look more readable.
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
import pytest
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
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
|
|
some_data = "Test\t111.222\nData\t333.444"
|
|
|
|
node.exec_in_container(['bash', '-c', 'mkdir -p {}'.format(
|
|
path_to_userfiles_from_defaut_config
|
|
)], privileged=True, user='root')
|
|
|
|
node.exec_in_container(['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"),
|
|
("../" + path_to_userfiles_from_defaut_config + "/relative_user_file_test", "2")]
|
|
|
|
for pattern, value in test_requests:
|
|
assert node.query('''
|
|
select count() from file('{}', 'TSV', 'text String, number Float64')
|
|
'''.format(pattern)) == '{}\n'.format(value)
|