ClickHouse/tests/integration
alexey-milovidov 26d32f2ce5
Merge pull request #12412 from Jokser/s3-https
S3 HTTPS integration tests
2020-07-12 03:36:37 +03:00
..
helpers
test_access_control_on_cluster
test_adaptive_granularity
test_adaptive_granularity_different_settings
test_adaptive_granularity_replicated
test_aggregation_memory_efficient
test_allowed_client_hosts
test_allowed_url_from_config
test_alter_codec
test_always_fetch_merged
test_atomic_drop_table
test_authentication
test_backup_restore
test_backward_compatability
test_block_structure_mismatch
test_check_table
test_cluster_all_replicas
test_cluster_copier
test_concurrent_queries_for_user_restriction
test_config_corresponding_root
test_config_substitutions
test_consistant_parts_after_move_partition
test_consistent_parts_after_clone_replica
test_create_user_and_login
test_cross_replication
test_ddl_alter_query
test_default_role
test_delayed_replica_failover
test_dictionaries_access
test_dictionaries_all_layouts_and_sources
test_dictionaries_complex_key_cache_string
test_dictionaries_ddl
test_dictionaries_dependency
test_dictionaries_dependency_xml
test_dictionaries_mysql
test_dictionaries_null_value
test_dictionaries_select_all
test_dictionaries_update_and_reload
test_dictionary_allow_read_expired_keys
test_dictionary_custom_settings
test_dictionary_ddl_on_cluster
test_disk_access_storage
test_disk_types
test_distributed_backward_compatability
test_distributed_ddl
test_distributed_ddl_on_cross_replication
test_distributed_ddl_password
test_distributed_format
test_distributed_load_balancing
test_distributed_over_distributed
test_distributed_over_live_view
test_distributed_respect_user_timeouts
test_distributed_storage_configuration
test_distributed_system_query
test_drop_replica
test_enabling_access_management
test_extreme_deduplication
test_filesystem_layout
test_force_deduplication
test_format_avro_confluent
test_format_schema_on_server
test_globs_in_filepath
test_grant_and_revoke
test_graphite_merge_tree
test_host_ip_change
test_http_and_readonly
test_http_handlers_config
test_https_replication
test_inherit_multiple_profiles
test_insert_distributed_load_balancing
test_insert_into_distributed
test_insert_into_distributed_sync_async
test_insert_into_distributed_through_materialized_view
test_live_view_over_distributed
test_log_family_s3
test_logs_level
test_match_process_uid_against_data_owner
test_max_http_connections_for_replication
test_merge_table_over_distributed
test_merge_tree_s3
test_multiple_disks
test_mutations_with_merge_tree
test_mysql_database_engine
test_mysql_protocol
test_no_local_metadata_node
test_non_default_compression
test_odbc_interaction
test_old_versions
test_part_log_table
test_partition
test_parts_delete_zookeeper
test_polymorphic_parts
test_postgresql_protocol
test_prometheus_endpoint
test_quorum_inserts
test_quota
test_random_inserts
test_read_temporary_tables_on_failure
test_recovery_replica
test_redirect_url_storage
test_relative_filepath
test_reload_max_table_size_to_drop
test_reloading_storage_configuration
test_remote_prewhere
test_rename_column
test_replace_partition
test_replica_can_become_leader
test_replicated_merge_tree_s3
test_replicated_mutations
test_replicated_parse_zk_metadata
test_replicating_constants
test_replication_credentials
test_replication_without_zookeeper
test_role
test_row_policy
test_s3_with_https
test_s3_with_proxy
test_send_crash_reports
test_send_request_to_leader_replica
test_server_initialization
test_settings_constraints
test_settings_constraints_distributed
test_settings_profile
test_storage_hdfs
test_storage_kafka
test_storage_mongodb
test_storage_mysql
test_storage_rabbitmq
test_storage_s3
test_SYSTEM_FLUSH_LOGS
test_system_merges
test_system_queries
test_text_log_level
test_timezone_config
test_tmp_policy
test_ttl_move
test_ttl_replicated
test_union_header
test_user_ip_restrictions
test_user_zero_database_access
test_version_update_after_mutation
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 zlib1g-dev libcrypto++-dev libssl-dev
  • py.test testing framework. To install: sudo -H pip install pytest
  • docker-compose and additional python libraries. To install: sudo -H pip install urllib3==1.23 pytest docker-compose==1.22.0 docker dicttoxml kazoo PyMySQL psycopg2==2.7.5 pymongo tzlocal kafka-python protobuf redis aerospike pytest-timeout minio rpm-confluent-schemaregistry

(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 python-minio

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.

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

Running with runner script

The only requirement is fresh configured docker and docker pull yandex/clickhouse-integration-tests-runner

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 laptop.

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

$ ./runner --binary $HOME/ClickHouse/programs/clickhouse  --bridge-binary $HOME/ClickHouse/programs/clickhouse-odbc-bridge --configs-dir $HOME/ClickHouse/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/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/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
$ ./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/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

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 .

The helper container used by the runner script is in docker/test/integration/runner/Dockerfile.

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 in docker 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.