1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
###############################################################################
#
# All changes to the primary mode shall be recorded with SET PERSIST
# meaning they will have effect even after a member restart.
#
# variables persisted:
# group_replication_enforce_update_everywhere_checks
# group_replication_single_primary_mode
#
# Test:
# 0. This test requires two servers
# 1. Change to single primary mode
# 2. Check all variables
# 3. Restart Group Replication on server 2. Check all
# goes as planned.
# 4. Restart server 1. Don't pass the Primary mode settings. Check
# all goes as planned.
#
###############################################################################
--source include/have_group_replication_plugin.inc
--source include/group_replication.inc
--echo
--echo # 1. Change to single primary mode
--let $server1_uuid= query_get_value(SELECT @@SERVER_UUID, @@SERVER_UUID, 1)
--replace_result $server1_uuid MEMBER1_UUID
--eval SELECT group_replication_switch_to_single_primary_mode("$server1_uuid")
--echo
--echo # 2. Check all variables
--let $rpl_connection_name= server1
--source include/rpl_connection.inc
--let $assert_text= group_replication_enforce_update_everywhere_checks is ON
--let $assert_cond= "[SELECT @@GLOBAL.group_replication_enforce_update_everywhere_checks]" = 0
--source include/assert.inc
--let $assert_text= The single primary mode should be 1 here.
--let $assert_cond= "[SELECT @@GLOBAL.group_replication_single_primary_mode]" = 1;
--source include/assert.inc
--let $assert_text= The super_read_only mode should be 0 here.
--let $assert_cond= "[SELECT @@GLOBAL.super_read_only]" = 0;
--source include/assert.inc
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
--let $assert_text= group_replication_enforce_update_everywhere_checks is ON
--let $assert_cond= "[SELECT @@GLOBAL.group_replication_enforce_update_everywhere_checks]" = 0
--source include/assert.inc
--let $assert_text= The single primary mode should be 1 here.
--let $assert_cond= "[SELECT @@GLOBAL.group_replication_single_primary_mode]" = 1;
--source include/assert.inc
--let $assert_text= The super_read_only mode should be 1 here.
--let $assert_cond= "[SELECT @@GLOBAL.super_read_only]" = 1;
--source include/assert.inc
--echo
--echo # 3. Restart Group Replication on server 2. Check all
--echo # goes as planned.
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
--source include/stop_group_replication.inc
--source include/start_group_replication.inc
--let $assert_text= group_replication_enforce_update_everywhere_checks is ON
--let $assert_cond= "[SELECT @@GLOBAL.group_replication_enforce_update_everywhere_checks]" = 0
--source include/assert.inc
--let $assert_text= The single primary mode should be 1 here.
--let $assert_cond= "[SELECT @@GLOBAL.group_replication_single_primary_mode]" = 1;
--source include/assert.inc
--let $assert_text= The super_read_only mode should be 1 here.
--let $assert_cond= "[SELECT @@GLOBAL.super_read_only]" = 1;
--source include/assert.inc
--echo
--echo # 4. Restart server 1. Don't pass the Primary mode settings. Check
--echo # all goes as planned.
--let $rpl_connection_name= server1
--source include/rpl_connection.inc
--let $allow_rpl_inited=1
--let $_group_replication_local_address= `SELECT @@GLOBAL.group_replication_local_address`
--let $_group_replication_group_seeds= `SELECT @@GLOBAL.group_replication_group_seeds`
--let $restart_parameters=restart:--group_replication_local_address=$_group_replication_local_address --group_replication_group_seeds=$_group_replication_group_seeds --group-replication-group-name=$group_replication_group_name
--replace_result $_group_replication_local_address GROUP_REPLICATION_LOCAL_ADDRESS $_group_replication_group_seeds GROUP_REPLICATION_GROUP_SEEDS $group_replication_group_name GROUP_REPLICATION_GROUP_NAME
--source include/restart_mysqld.inc
--let $rpl_server_number= 1
--source include/rpl_reconnect.inc
--let $assert_text= group_replication_enforce_update_everywhere_checks is ON
--let $assert_cond= "[SELECT @@GLOBAL.group_replication_enforce_update_everywhere_checks]" = 0
--source include/assert.inc
--let $assert_text= The single primary mode should be 1 here.
--let $assert_cond= "[SELECT @@GLOBAL.group_replication_single_primary_mode]" = 1;
--source include/assert.inc
--source include/start_group_replication.inc
--let $assert_text= The super_read_only mode should be 1 here.
--let $assert_cond= "[SELECT @@GLOBAL.super_read_only]" = 1;
--source include/assert.inc
--let $rpl_group_replication_single_primary_mode=1
--let $rpl_group_replication_reset_persistent_vars=1
--source include/group_replication_end.inc
|