2017-05-19 18:54:05 +00:00
## ClickHouse integration tests
This directory contains tests that involve several ClickHouse instances, custom configs, ZooKeeper, etc.
2018-11-23 15:10:07 +00:00
### Running natively
2017-05-19 18:54:05 +00:00
Prerequisites:
2018-03-16 01:15:50 +00:00
* Ubuntu 14.04 (Trusty) or higher.
2017-05-19 18:54:05 +00:00
* [docker ](https://www.docker.com/community-edition#/download ). Minimum required API version: 1.25, check with `docker version` .
2018-01-12 18:14:54 +00:00
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.
2020-10-02 16:54:07 +00:00
* [pip ](https://pypi.python.org/pypi/pip ) and `libpq-dev` . To install: `sudo apt-get install python3-pip libpq-dev zlib1g-dev libcrypto++-dev libssl-dev`
2017-05-30 11:49:17 +00:00
* [py.test ](https://docs.pytest.org/ ) testing framework. To install: `sudo -H pip install pytest`
2020-10-19 21:26:10 +00:00
* [docker-compose ](https://docs.docker.com/compose/ ) and additional python libraries. To install:
```
sudo -H pip install \
PyMySQL \
aerospike \
avro \
cassandra-driver \
confluent-kafka \
dicttoxml \
docker \
docker-compose==1.22.0 \
grpcio \
grpcio-tools \
kafka-python \
kazoo \
minio \
protobuf \
psycopg2-binary==2.7.5 \
pymongo \
pytest \
pytest-timeout \
redis \
tzlocal \
urllib3
```
2017-05-19 18:54:05 +00:00
2020-10-02 16:54:07 +00:00
(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 python3-pytest python3-dicttoxml python3-docker python3-pymysql python3-pymongo python3-tzlocal python3-kazoo python3-psycopg2 kafka-python python3-pytest-timeout python3-minio`
2018-05-25 18:13:48 +00:00
2017-05-23 14:27:18 +00:00
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.
2018-01-12 18:14:54 +00:00
(You must close all your sessions (for example, restart your computer))
To check, that you have access to Docker, run `docker ps` .
2017-05-19 18:54:05 +00:00
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,
2020-07-06 13:45:54 +00:00
set the following environment variables:`
2017-05-19 18:54:05 +00:00
* `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.
2019-03-19 21:35:18 +00:00
2020-07-06 13:45:54 +00:00
For tests that use common docker compose files you may need to set up their path with environment variable: `DOCKER_COMPOSE_DIR=$HOME/ClickHouse/docker/test/integration/runner/compose`
2019-03-19 21:35:18 +00:00
2018-11-23 15:10:07 +00:00
### Running with runner script
2019-08-30 13:25:34 +00:00
The only requirement is fresh configured docker and
docker pull yandex/clickhouse-integration-tests-runner
2018-12-07 14:08:25 +00:00
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 ](https://docs.docker.com/install/linux/linux-postinstall/ ) 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/` .
2020-03-11 18:51:12 +00:00
* 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 laptop.
2018-11-23 15:10:07 +00:00
You can run tests via `./runner` script and pass pytest arguments as last arg:
```
2020-10-11 00:52:50 +00:00
$ ./runner --binary $HOME/ClickHouse/programs/clickhouse --bridge-binary $HOME/ClickHouse/programs/clickhouse-odbc-bridge --base-configs-dir $HOME/ClickHouse/programs/server/ 'test_odbc_interaction -ss'
2018-11-23 15:10:07 +00:00
Start tests
============================= test session starts ==============================
platform linux2 -- Python 2.7.15rc1, pytest-4.0.0, py-1.7.0, pluggy-0.8.0
2020-04-01 23:51:21 +00:00
rootdir: /ClickHouse/tests/integration, inifile: pytest.ini
2018-11-23 15:10:07 +00:00
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:
```
2020-04-01 23:51:21 +00:00
$ export CLICKHOUSE_TESTS_BASE_CONFIG_DIR=$HOME/ClickHouse/programs/server/
$ export CLICKHOUSE_TESTS_SERVER_BIN_PATH=$HOME/ClickHouse/programs/clickhouse
$ export CLICKHOUSE_TESTS_ODBC_BRIDGE_BIN_PATH=$HOME/ClickHouse/programs/clickhouse-odbc-bridge
2018-11-23 15:51:36 +00:00
$ ./runner 'test_odbc_interaction'
2019-05-20 08:11:53 +00:00
$ # or ./runner '-v -ss'
2018-11-23 15:10:07 +00:00
Start tests
============================= test session starts ==============================
platform linux2 -- Python 2.7.15rc1, pytest-4.0.0, py-1.7.0, pluggy-0.8.0
2020-04-01 23:51:21 +00:00
rootdir: /ClickHouse/tests/integration, inifile: pytest.ini
2018-11-23 15:10:07 +00:00
collected 6 items
test_odbc_interaction/test.py ...... [100%]
==================== 6 passed, 1 warnings in 96.33 seconds =====================
```
2017-05-19 18:54:05 +00:00
2019-05-20 08:11:53 +00:00
You can just open shell inside a container by overwritting the command:
./runner --command=bash
2019-12-12 15:10:09 +00:00
### Rebuilding the docker containers
The main container used for integration tests lives in `docker/test/integration/Dockerfile` . Rebuild it with
```
cd docker/test/integration
docker build -t yandex/clickhouse-integration-test .
```
2020-04-17 16:01:16 +00:00
The helper container used by the `runner` script is in `docker/test/integration/runner/Dockerfile` .
2019-12-12 15:10:09 +00:00
2017-05-19 18:54:05 +00:00
### 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:
2019-12-12 15:10:09 +00:00
* Launching a ClickHouse cluster with or without ZooKeeper in docker containers.
2017-05-19 18:54:05 +00:00
* 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.