-
The following executables must be copied or generated or linked into these locations,
mydumper
andsync_diff_inspector
can be downloaded from tidb-enterprise-tools-latest-linux-amd64:bin/tidb-server
bin/sync_diff_inspector
bin/mydumper
bin/dm-master.test
# generated bymake dm_integration_test_build
bin/dm-worker.test
# generated bymake dm_integration_test_build
bin/dm-master.test.current
# used for compatibility test, need renamed frombin/dm-master.test
by manualbin/dm-worker.test.current
# used for compatibility test, need renamed frombin/dm-worker.test
by manualbin/dm-master.test.previous
# used for compatibility test, need renamed frombin/dm-master.test
by manualbin/dm-worker.test.previous
# used for compatibility test, need renamed frombin/dm-worker.test
by manual- gh-ost # must be added to path, or you can
export GHOST_BINARY=/path/to/gh-ost-binary
- pt-online-schema-change # must be added to path, or you can
export PTOSC_BINARY=/path/to/pt-osc-binary
-
The following programs must be installed:
mysql
(the CLI client)python2.7
orpython3.x
-
The user executing the tests must have permission to create the folder
/tmp/dm_test
. All test artifacts will be written into this folder.
-
Setup a MySQL server with binlog enabled first, export proper environment variable
MYSQL_HOST
,MYSQL_PORT
,MYSQL_USER
,MYSQL_PSWD
, default is127.0.0.1
,3306
,root
and empty password. -
Run
make test
to run unit test
-
Run
make dm_integration_test_build
to generate DM related binary for integration test -
Run
make integration_test
to execute the integration tests. This command will- Check that all required executables exist.
- Execute
tests/run.sh
If want to run one integration test case only, just pass the CASE parameter, such as
make integration_test CASE=sharding
.There exists some environment variables that you can set by yourself, including
MYSQL_HOST1
,MYSQL_PORT1
,MYSQL_HOST2
,MYSQL_PORT2
,RESET_MASTER
. IfRESET_MASTER
is not set or set to true,RESET MASTER
will be executed at upstream MySQL before each case.The online DDL test using pt-osc doesn't work if the upstream MySQL has different connect port and bind port (often caused by port forwarding via NAT). In this case, you must specify the real IP and port of MySQL. Otherwise you can skip online DDL test by
export ONLINE_DDL_ENABLE=false
. -
After executing the tests, run
make coverage
to get a coverage report at/tmp/dm_test/all_cov.html
.
-
Run Compatibility test
Run
make compatibility_test
will run compatibility test. -
Run other test with different version's dm-master and dm-worker
Run
make compatibility_test CASE={test_case}
, for example,make compatibility_test CASE=http_apis
will run testhttp_apis
with previous dm-master and current dm-worker, and also current dm-master and previous dm-worker. Thetest_case
can beall
, and will run all the test cases.
New integration tests can be written as shell scripts in tests/TEST_NAME/run.sh
. The script should exit with a nonzero error code on failure.
Note the integration test runs in parallel, and new added test case is not listed in CI, so remember to add the
TEST_NAME
of new added test case to fileothers_integration.txt
in a newline.
Several convenient commands are provided:
run_dm_master <WORKDIR> <PORT> <CONFIG>
— Startsdm-master
using config provided, on given port, running in workdir.run_dm_worker <WORKDIR> <PORT> <CONFIG>
— Startsdm-worker
using config provided, on given port, running in workdir.run_dm_ctl <WORKDIR> <MASTER_ADDR> <DMCTL_COMMAND>
- Runsdmctl
with given command in non-interactive mode.run_sql <SQL> <PORT> <PASSWORD>
— Executes an SQL query in database based on port providedrun_sql_file <path_to_SQL_file> <HOST> <PORT> <PASSWORD>
— Executes all SQLs in given file to the database on port providedrun_sql_file_online_ddl <path_to_SQL_file> <HOST> <PORT> <PASSWORD> <DB> <ONLINE DDL TOOL>
— Executes all SQLs in given file, will auto switch DDL to online DDL command.check_contains <TEXT>
— Checks if the previousrun_sql
/run_sql_file
result contains the given text (in-E
format)check_sync_diff <WORKDIR> <CONFIG>
- Runssync_diff_inspector
to check diff between databases, using config file providedcheck_rpc_alive <CHECK_TOOL> <ADDR>
- Wrapper to check a rpc address is available, at most 10 times.check_port_alive <PORT>
- Wrapper to check a port is alive, at most 20 times.check_port <HOST> <PORT>
- Checks a host:port is alive.wait_process_exit <process_name>
- Wait for one or more processes to exit by given process name.check_metric <PORT> <METRIC_NAME> <RETRY_COUNT> <VALUE PATTERN LIST>...
- check metric value from prometheus.truncate_trace_events <PORT>
- truncate trace server events records.