ClickHouse/dbms/tests/integration
2019-08-19 17:34:22 +03:00
..
helpers Fix test_external_dictionaries for non root user. 2019-08-15 17:00:36 +03:00
image
test_adaptive_granularity Fix bug with enable_mixed_granularity_parts and mutations 2019-08-19 13:37:04 +03:00
test_adaptive_granularity_replicated Fix recreation of replicated table with fixed granularity 2019-08-12 16:30:29 +03:00
test_block_structure_mismatch
test_cached_dictionary_string Better test 2019-08-12 17:06:17 +03:00
test_check_table Fix integration test 2019-07-16 13:49:16 +03:00
test_cluster_copier
test_concurrent_queries_for_user_restriction
test_config_corresponding_root Fix indent and add init file 2019-07-25 16:41:39 +03:00
test_config_substitutions
test_consistent_parts_after_clone_replica remove local parts which source replica doesnt have 2019-08-19 15:08:45 +03:00
test_cross_replication
test_delayed_replica_failover
test_dictionaries More integration fixes and disable kafka test test_kafka_settings_new_syntax 2019-07-26 17:37:37 +03:00
test_distributed_ddl
test_distributed_ddl_password
test_distributed_ddl_secure
test_distributed_respect_user_timeouts
test_distributed_system_query
test_external_dictionaries Fix test_external_dictionaries for non root user. 2019-08-15 17:00:36 +03:00
test_extreme_deduplication
test_format_schema_on_server
test_graphite_merge_tree
test_host_ip_change
test_https_replication
test_insert_into_distributed
test_insert_into_distributed_sync_async
test_insert_into_distributed_through_materialized_view
test_logs_level pep8 2019-07-17 14:57:05 +03:00
test_match_process_uid_against_data_owner
test_max_http_connections_for_replication
test_merge_table_over_distributed
test_mysql_database_engine
test_mysql_protocol removed wrong comment 2019-07-28 17:24:52 +03:00
test_non_default_compression
test_odbc_interaction More fixes in integration tests configs 2019-07-25 23:24:58 +03:00
test_old_versions_client Fix bug client version which is able to read additional progress fields from server 2019-07-15 21:05:49 +03:00
test_parts_delete_zookeeper
test_random_inserts
test_recovery_replica
test_remote_prewhere Fix bug in prewhere + distributed 2019-07-31 13:22:56 +03:00
test_replace_partition
test_replica_can_become_leader Better code and tests 2019-08-01 20:43:10 +03:00
test_replicated_mutations
test_replication_credentials
test_replication_without_zookeeper
test_send_request_to_leader_replica
test_server_initialization
test_settings_constraints
test_storage_hdfs
test_storage_kafka Add test for multiple mat. views 2019-08-15 17:19:12 +03:00
test_storage_mysql
test_system_queries
test_ttl_replicated
test_union_header
test_user_ip_restrictions
test_zookeeper_config
.dockerignore
.gitignore
CMakeLists.txt
conftest.py
pytest.ini
README.md
runner

ClickHouse integration tests

This directory contains tests that involve several ClickHouse instances, custom configs, ZooKeeper, etc.

Running natively

Prerequisites:

  • Ubuntu 14.04 (Trusty) or higher.
  • docker. Minimum required API version: 1.25, check with docker version.

You must install latest Docker from https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#set-up-the-repository Don't use Docker from your system repository.

  • pip and libpq-dev. To install: sudo apt-get install python-pip libpq-dev
  • py.test testing framework. To install: sudo -H pip install pytest
  • docker-compose and additional python libraries. To install: sudo -H pip install docker-compose docker dicttoxml kazoo PyMySQL psycopg2 pymongo tzlocal kafka-python protobuf pytest-timeout

(highly not recommended) If you really want to use OS packages on modern debian/ubuntu instead of "pip": sudo apt install -y docker docker-compose python-pytest python-dicttoxml python-docker python-pymysql python-pymongo python-tzlocal python-kazoo python-psycopg2 python-kafka python-pytest-timeout

If you want to run the tests under a non-privileged user, you must add this user to docker group: sudo usermod -aG docker $USER and re-login. (You must close all your sessions (for example, restart your computer)) To check, that you have access to Docker, run docker ps.

Run the tests with the pytest command. To select which tests to run, use: pytest -k <test_name_pattern>

By default tests are run with system-wide client binary, server binary and base configs. To change that, set the following environment variables:

  • CLICKHOUSE_TESTS_SERVER_BIN_PATH to choose the server binary.
  • CLICKHOUSE_TESTS_CLIENT_BIN_PATH to choose the client binary.
  • CLICKHOUSE_TESTS_BASE_CONFIG_DIR to choose the directory from which base configs (config.xml and users.xml) are taken.

Running with runner script

The only requirement is fresh docker configured docker.

Notes:

  • If you want to run integration tests without sudo you have to add your user to docker group sudo usermod -aG docker $USER. More information about docker configuration.
  • If you already had run these tests without ./runner script you may have problems with pytest cache. It can be removed with rm -r __pycache__ .pytest_cache/.
  • Some tests maybe require a lot of resources (CPU, RAM, etc.). Better not try large tests like test_cluster_copier or test_distributed_ddl* on your notebook.

You can run tests via ./runner script and pass pytest arguments as last arg:

$ ./runner --binary $HOME/ClickHouse/dbms/programs/clickhouse  --bridge-binary $HOME/ClickHouse/dbms/programs/clickhouse-odbc-bridge --configs-dir $HOME/ClickHouse/dbms/programs/server/ 'test_odbc_interaction -ss'
Start tests
============================= test session starts ==============================
platform linux2 -- Python 2.7.15rc1, pytest-4.0.0, py-1.7.0, pluggy-0.8.0
rootdir: /ClickHouse/dbms/tests/integration, inifile: pytest.ini
collected 6 items

test_odbc_interaction/test.py Removing network clickhouse_default
...

Killing roottestodbcinteraction_node1_1     ... done
Killing roottestodbcinteraction_mysql1_1    ... done
Killing roottestodbcinteraction_postgres1_1 ... done
Removing roottestodbcinteraction_node1_1     ... done
Removing roottestodbcinteraction_mysql1_1    ... done
Removing roottestodbcinteraction_postgres1_1 ... done
Removing network roottestodbcinteraction_default

==================== 6 passed, 1 warnings in 95.21 seconds =====================

Path to binary and configs maybe specified via env variables:

$ export CLICKHOUSE_TESTS_BASE_CONFIG_DIR=$HOME/ClickHouse/dbms/programs/server/
$ export CLICKHOUSE_TESTS_SERVER_BIN_PATH=$HOME/ClickHouse/dbms/programs/clickhouse
$ export CLICKHOUSE_TESTS_ODBC_BRIDGE_BIN_PATH=$HOME/ClickHouse/dbms/programs/clickhouse-odbc-bridge
$ ./runner 'test_odbc_interaction'
$ # or ./runner '-v -ss'
Start tests
============================= test session starts ==============================
platform linux2 -- Python 2.7.15rc1, pytest-4.0.0, py-1.7.0, pluggy-0.8.0
rootdir: /ClickHouse/dbms/tests/integration, inifile: pytest.ini
collected 6 items

test_odbc_interaction/test.py ......                                     [100%]
==================== 6 passed, 1 warnings in 96.33 seconds =====================

You can just open shell inside a container by overwritting the command: ./runner --command=bash

Adding new tests

To add new test named foo, create a directory test_foo with an empty __init__.py and a file named test.py containing tests in it. All functions with names starting with test will become test cases.

helpers directory contains utilities for:

  • Launching a ClickHouse cluster with or without ZooKeeper indocker containers.
  • Sending queries to launched instances.
  • Introducing network failures such as severing network link between two instances.

To assert that two TSV files must be equal, wrap them in the TSV class and use the regular assert statement. Example: assert TSV(result) == TSV(reference). In case the assertion fails, pytest will automagically detect the types of variables and only the small diff of two files is printed.