File: gr_view_change_uuid_check_configuration.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (186 lines) | stat: -rw-r--r-- 10,826 bytes parent folder | download
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
################################################################################
#
# This test verifies that group_view_change_uuid validation is done correctly
# when starting on boot as well as when we pass it manually in the test.
#
# Test:
#   0. The test requires one server: M1.
#   1. We can't start a Group Replication if
#      group_replication_view_change_uuid is configured with a invalid
#      uuid
#   2. We can't start a Group Replication if
#      group_replication_view_change_uuid is configured with same uuid
#      as group_replication_group_name
#   3. We can't start a Group Replication if
#      group_replication_view_change_uuid is configured with same uuid
#      as server 1
#   4. We can't set group_replication_group_name to same uuid
#      configured on group_replication_view_change_uuid
#   5. Cleanup
################################################################################

--source include/have_group_replication_plugin.inc

SET SESSION sql_log_bin=0;
call mtr.add_suppression("Unable to start Group Replication on boot");
call mtr.add_suppression("Invalid input value for group_replication_view_change_uuid ''. Please, provide a valid UUID.");
call mtr.add_suppression("group_replication_group_name '.*', which is the same as group_replication_view_change_uuid. Please change group_replication_view_change_uuid to AUTOMATIC");
call mtr.add_suppression("group_replication_view_change_uuid is incompatible with group. group_replication_view_change_uuid.*matches server_uuid.*.");
SET SESSION sql_log_bin=1;

--echo ####################################################################
--echo # 1. We can't start a Group Replication if
--echo #    group_replication_view_change_uuid is configured with a invalid
--echo #    uuid

--let $view_change_uuid_save = `SELECT @@GLOBAL.group_replication_view_change_uuid`

SET PERSIST_ONLY group_replication_view_change_uuid = "";

--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-start-on-boot=1 --group-replication-group-name=$group_replication_group_name --group_replication_local_address=$_group_replication_local_address --group_replication_group_seeds=$_group_replication_group_seeds --group_replication_bootstrap_group=1
--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

# include/restart_mysqld.inc will only wait for the server to be up, that is,
# the server is accepting client connections.
# That point is before the Group Replication start, which may cause this
# client session to assert the error log before the error condition was reached.
# Before assert the error log we wait until the error is logged into the table
# performance_schema.error_log.
--let $wait_condition= SELECT COUNT(*)=1 FROM performance_schema.error_log WHERE error_code='MY-013748' AND data LIKE '%Invalid input value for group_replication_view_change_uuid %'
--source include/wait_condition.inc

--let $assert_file= $MYSQLTEST_VARDIR/log/mysqld.1.err
--let $assert_select= Invalid input value for group_replication_view_change_uuid ''. Please, provide a valid UUID.
--let $assert_count= 1
--let $assert_text= group_replication_view_change_uuid '' not a valid uuid
--source include/assert_grep.inc


--error ER_GROUP_REPLICATION_CONFIGURATION
START GROUP_REPLICATION;

--error ER_WRONG_VALUE_FOR_VAR
SET GLOBAL group_replication_view_change_uuid = "";

--let $assert_file= $MYSQLTEST_VARDIR/log/mysqld.1.err
--let $assert_select= Invalid input value for group_replication_view_change_uuid ''. Please, provide a valid UUID.
--let $assert_count= 2
--let $assert_text= group_replication_view_change_uuid '' not a valid uuid
--source include/assert_grep.inc


--echo ####################################################################
--echo # 2. We can't start a Group Replication if
--echo #    group_replication_view_change_uuid is configured with same uuid
--echo #    as group_replication_group_name

--replace_result $group_replication_group_name GROUP_NAME
--eval SET PERSIST_ONLY group_replication_view_change_uuid = "$group_replication_group_name"

--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-start-on-boot=1 --group-replication-group-name=$group_replication_group_name --group_replication_view_change_uuid=$group_replication_group_name --group_replication_local_address=$_group_replication_local_address --group_replication_group_seeds=$_group_replication_group_seeds --group_replication_bootstrap_group=1
--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

# include/restart_mysqld.inc will only wait for the server to be up, that is,
# the server is accepting client connections.
# That point is before the Group Replication start, which may cause this
# client session to assert the error log before the error condition was reached.
# Before assert the error log we wait until the error is logged into the table
# performance_schema.error_log.
--let $wait_condition= SELECT COUNT(*)=1 FROM performance_schema.error_log WHERE error_code='MY-013750' AND data LIKE '%which is the same as group_replication_view_change_uuid. Please change group_replication_view_change_uuid to AUTOMATIC%'
--source include/wait_condition.inc

--let $assert_file= $MYSQLTEST_VARDIR/log/mysqld.1.err
--let $assert_select= group_replication_group_name '.*', which is the same as group_replication_view_change_uuid. Please change group_replication_view_change_uuid to AUTOMATIC
--let $assert_count= 1
--let $assert_text= group_replication_group_name shall be different from group_replication_view_change_uuid
--source include/assert_grep.inc

--error ER_GROUP_REPLICATION_CONFIGURATION
START GROUP_REPLICATION;

--replace_result $group_replication_group_name GROUP_NAME
--error ER_WRONG_VALUE_FOR_VAR_PLUS_ACTIONABLE_PART
--eval SET GLOBAL group_replication_view_change_uuid = "$group_replication_group_name"

--let $assert_file= $MYSQLTEST_VARDIR/log/mysqld.1.err
--let $assert_select= group_replication_group_name '.*', which is the same as group_replication_view_change_uuid. Please change group_replication_view_change_uuid to AUTOMATIC
--let $assert_count= 2
--let $assert_text= group_replication_group_name shall be different from group_replication_view_change_uuid
--source include/assert_grep.inc


--echo ####################################################################
--echo # 3. We can't start a Group Replication if
--echo #    group_replication_view_change_uuid is configured with same uuid
--echo #    as server 1

--let $member1_uuid= query_get_value(SELECT @@SERVER_UUID, @@SERVER_UUID, 1)

--replace_result $member1_uuid MEMBER_1_UUID
--eval SET PERSIST_ONLY group_replication_view_change_uuid = "$member1_uuid"

--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-start-on-boot=1 --group-replication-group-name=$group_replication_group_name --group_replication_local_address=$_group_replication_local_address --group_replication_group_seeds=$_group_replication_group_seeds --group_replication_bootstrap_group=1
--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

# include/restart_mysqld.inc will only wait for the server to be up, that is,
# the server is accepting client connections.
# That point is before the Group Replication start, which may cause this
# client session to assert the error log before the error condition was reached.
# Before assert the error log we wait until the error is logged into the table
# performance_schema.error_log.
--let $wait_condition= SELECT COUNT(*)=1 FROM performance_schema.error_log WHERE error_code='MY-013752' AND data LIKE '%group_replication_view_change_uuid is incompatible with group. group_replication_view_change_uuid %'
--source include/wait_condition.inc

--let $assert_file= $MYSQLTEST_VARDIR/log/mysqld.1.err
--let $assert_select= group_replication_view_change_uuid is incompatible with group. group_replication_view_change_uuid.*matches server_uuid.*.
--let $assert_count= 1
--let $assert_text= group_replication_view_change_uuid shall be diferent from server uuid
--source include/assert_grep.inc


--error ER_GROUP_REPLICATION_CONFIGURATION
START GROUP_REPLICATION;

--let $assert_file= $MYSQLTEST_VARDIR/log/mysqld.1.err
--let $assert_select= group_replication_view_change_uuid is incompatible with group. group_replication_view_change_uuid.*matches server_uuid.*.
--let $assert_count= 2
--let $assert_text= group_replication_view_change_uuid shall be diferent from server uuid
--source include/assert_grep.inc


--echo ####################################################################
--echo # 4. We can't set group_replication_group_name to same uuid
--echo #    configured on group_replication_view_change_uuid

SET GLOBAL group_replication_view_change_uuid = "9f46e042-98a0-439d-a8fb-7130670ca49b";

--error ER_WRONG_VALUE_FOR_VAR_PLUS_ACTIONABLE_PART
SET GLOBAL group_replication_group_name = "9f46e042-98a0-439d-a8fb-7130670ca49b";


--echo ####################################################################
--echo # 5. Cleanup

RESET PERSIST;
--replace_result $view_change_uuid_save VIEW_CHANGE_UUID
--eval SET GLOBAL group_replication_view_change_uuid = $view_change_uuid_save

--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-start-on-boot=OFF --group-replication-group-name=$group_replication_group_name --group_replication_local_address=$_group_replication_local_address --group_replication_group_seeds=$_group_replication_group_seeds --group_replication_bootstrap_group=1
--source include/restart_mysqld_no_echo.inc

--source include/gr_clear_configuration.inc