mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00
Major replication test framework cleanup. This does the following: - Ensure that all tests clean up the replication state when they finish, by making check-testcase check the output of SHOW SLAVE STATUS. This implies: - Slave must not be running after test finished. This is good because it removes the risk for sporadic errors in subsequent tests when a test forgets to sync correctly. - Slave SQL and IO errors must be cleared when test ends. This is good because we will notice if a test gets an unexpected error in the slave threads near the end. - We no longer have to clean up before a test starts. - Ensure that all tests that wait for an error in one of the slave threads waits for a specific error. It is no longer possible to source wait_for_slave_[sql|io]_to_stop.inc when there is an error in one of the slave threads. This is good because: - If a test expects an error but there is a bug that causes another error to happen, or if it stops the slave thread without an error, then we will notice. - When developing tests, wait_for_*_to_[start|stop].inc will fail immediately if there is an error in the relevant slave thread. Before this patch, we had to wait for the timeout. - Remove duplicated and repeated code for setting up unusual replication topologies. Now, there is a single file that is capable of setting up arbitrary topologies (include/rpl_init.inc, but include/master-slave.inc is still available for the most common topology). Tests can now end with include/rpl_end.inc, which will clean up correctly no matter what topology is used. The topology can be changed with include/rpl_change_topology.inc. - Improved debug information when tests fail. This includes: - debug info is printed on all servers configured by include/rpl_init.inc - User can set $rpl_debug=1, which makes auxiliary replication files print relevant debug info. - Improved documentation for all auxiliary replication files. Now they describe purpose, usage, parameters, and side effects. - Many small code cleanups: - Made have_innodb.inc output a sensible error message. - Moved contents of rpl000017-slave.sh into rpl000017.test - Added mysqltest variables that expose the current state of disable_warnings/enable_warnings and friends. - Too many to list here: see per-file comments for details.
128 lines
4.6 KiB
Plaintext
128 lines
4.6 KiB
Plaintext
-- source include/not_ndb_default.inc
|
|
-- source include/have_binlog_format_row.inc
|
|
-- source include/master-slave.inc
|
|
|
|
# Note: The test is dependent on binlog positions
|
|
|
|
# Create some events on master
|
|
connection master;
|
|
CREATE TABLE t1(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
|
|
INSERT INTO t1 VALUES (1),(2),(3),(4);
|
|
DROP TABLE t1;
|
|
# Save master log postion for query DROP TABLE t1
|
|
save_master_pos;
|
|
let $master_pos_drop_t1= query_get_value(SHOW BINLOG EVENTS, Pos, 7);
|
|
let $master_log_file= query_get_value(SHOW BINLOG EVENTS, Log_name, 7);
|
|
|
|
CREATE TABLE t2(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
|
|
# Save master log postion for query CREATE TABLE t2
|
|
save_master_pos;
|
|
let $master_pos_create_t2= query_get_value(SHOW BINLOG EVENTS, Pos, 8);
|
|
|
|
INSERT INTO t2 VALUES (1),(2);
|
|
save_master_pos;
|
|
# Save master log postion for query INSERT INTO t2 VALUES (1),(2);
|
|
let $master_pos_insert1_t2= query_get_value(SHOW BINLOG EVENTS, End_log_pos, 12);
|
|
sync_slave_with_master;
|
|
|
|
# Save relay log postion for query INSERT INTO t2 VALUES (1),(2);
|
|
let $relay_pos_insert1_t2= query_get_value(show slave status, Relay_Log_Pos, 1);
|
|
|
|
connection master;
|
|
INSERT INTO t2 VALUES (3),(4);
|
|
DROP TABLE t2;
|
|
# Save master log postion for query INSERT INTO t2 VALUES (1),(2);
|
|
let $master_pos_drop_t2= query_get_value(SHOW BINLOG EVENTS, End_log_pos, 17);
|
|
sync_slave_with_master;
|
|
|
|
--source include/stop_slave.inc
|
|
# Reset slave.
|
|
RESET SLAVE;
|
|
--disable_query_log
|
|
eval CHANGE MASTER TO MASTER_USER='root', MASTER_CONNECT_RETRY=1, MASTER_HOST='127.0.0.1', MASTER_PORT=$MASTER_MYPORT;
|
|
--enable_query_log
|
|
|
|
# Try to replicate all queries until drop of t1
|
|
connection slave;
|
|
echo START SLAVE UNTIL MASTER_LOG_FILE='$master_log_file', MASTER_LOG_POS=master_pos_drop_t1;
|
|
--disable_query_log
|
|
eval START SLAVE UNTIL MASTER_LOG_FILE='$master_log_file', MASTER_LOG_POS=$master_pos_drop_t1;
|
|
--enable_query_log
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
|
|
|
# Here table should be still not deleted
|
|
SELECT * FROM t1;
|
|
--let $slave_param= Exec_Master_Log_Pos
|
|
--let $slave_param_value= $master_pos_drop_t1
|
|
--source include/check_slave_param.inc
|
|
|
|
# This should fail right after start
|
|
--replace_result 291 MASTER_LOG_POS
|
|
START SLAVE UNTIL MASTER_LOG_FILE='master-no-such-bin.000001', MASTER_LOG_POS=291;
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
|
# again this table should be still not deleted
|
|
SELECT * FROM t1;
|
|
|
|
--let $slave_param= Exec_Master_Log_Pos
|
|
--let $slave_param_value= $master_pos_drop_t1
|
|
--source include/check_slave_param.inc
|
|
|
|
# Try replicate all up to and not including the second insert to t2;
|
|
echo START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', RELAY_LOG_POS=relay_pos_insert1_t2;
|
|
--disable_query_log
|
|
eval START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', RELAY_LOG_POS=$relay_pos_insert1_t2;
|
|
--enable_query_log
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
|
SELECT * FROM t2;
|
|
|
|
--let $slave_param= Exec_Master_Log_Pos
|
|
--let $slave_param_value= $master_pos_insert1_t2
|
|
--source include/check_slave_param.inc
|
|
|
|
# clean up
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
connection master;
|
|
sync_slave_with_master;
|
|
--source include/stop_slave.inc
|
|
|
|
# This should stop immediately as we are already there
|
|
echo START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='$master_log_file', MASTER_LOG_POS=master_pos_create_t2;
|
|
--disable_query_log
|
|
eval START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='$master_log_file', MASTER_LOG_POS=$master_pos_create_t2;
|
|
--enable_query_log
|
|
let $slave_param= Until_Log_Pos;
|
|
let $slave_param_value= $master_pos_create_t2;
|
|
--source include/wait_for_slave_param.inc
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
|
# here the sql slave thread should be stopped
|
|
--let $slave_param= Exec_Master_Log_Pos
|
|
--let $slave_param_value= $master_pos_drop_t2
|
|
--source include/check_slave_param.inc
|
|
|
|
#testing various error conditions
|
|
--replace_result 561 MASTER_LOG_POS
|
|
--error 1277
|
|
START SLAVE UNTIL MASTER_LOG_FILE='master-bin', MASTER_LOG_POS=561;
|
|
--replace_result 561 MASTER_LOG_POS 12 RELAY_LOG_POS
|
|
--error 1277
|
|
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=561, RELAY_LOG_POS=12;
|
|
--error 1277
|
|
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001';
|
|
--error 1277
|
|
START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000009';
|
|
--replace_result 561 MASTER_LOG_POS
|
|
--error 1277
|
|
START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', MASTER_LOG_POS=561;
|
|
# Warning should be given for second command
|
|
START SLAVE;
|
|
--replace_result 740 MASTER_LOG_POS
|
|
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=740;
|
|
|
|
--source include/stop_slave.inc
|
|
# Clear slave IO error.
|
|
RESET SLAVE;
|
|
|
|
--let $rpl_only_running_threads= 1
|
|
--source include/rpl_end.inc
|