2019-08-28 17:18:19 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
|
|
node = cluster.add_instance('node', main_configs=['configs/config.xml'])
|
|
|
|
|
2020-09-16 04:26:10 +00:00
|
|
|
|
2019-08-28 17:18:19 +00:00
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def start_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
|
|
|
yield cluster
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
2020-09-16 04:26:10 +00:00
|
|
|
|
2019-08-30 13:14:47 +00:00
|
|
|
def test_check_timezone_config(start_cluster):
|
2019-08-30 13:28:27 +00:00
|
|
|
assert node.query("SELECT toDateTime(1111111111)") == "2005-03-17 17:58:31\n"
|