mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-9038 Binlog encryption tests
- created binlog_encryption test suite and added it to the default list - moved some tests from rpl, binlog and multisource suites to extra so that they could be re-used in different suites - made minor changes in include files
This commit is contained in:
47
mysql-test/suite/binlog_encryption/rpl_ssl.result
Normal file
47
mysql-test/suite/binlog_encryption/rpl_ssl.result
Normal file
@ -0,0 +1,47 @@
|
||||
include/master-slave.inc
|
||||
[connection master]
|
||||
create user replssl@localhost;
|
||||
grant replication slave on *.* to replssl@localhost require ssl;
|
||||
create table t1 (t int auto_increment, KEY(t));
|
||||
stop slave;
|
||||
change master to
|
||||
master_user='replssl',
|
||||
master_password='',
|
||||
master_ssl=1,
|
||||
master_ssl_ca ='MYSQL_TEST_DIR/std_data/cacert.pem',
|
||||
master_ssl_cert='MYSQL_TEST_DIR/std_data/client-cert.pem',
|
||||
master_ssl_key='MYSQL_TEST_DIR/std_data/client-key.pem';
|
||||
start slave;
|
||||
insert into t1 values(1);
|
||||
select * from t1;
|
||||
t
|
||||
1
|
||||
Master_SSL_Allowed = 'Yes'
|
||||
Master_SSL_CA_Path = ''
|
||||
Master_SSL_CA_File = 'MYSQL_TEST_DIR/std_data/cacert.pem'
|
||||
Master_SSL_Cert = 'MYSQL_TEST_DIR/std_data/client-cert.pem'
|
||||
Master_SSL_Key = 'MYSQL_TEST_DIR/std_data/client-key.pem'
|
||||
include/check_slave_is_running.inc
|
||||
STOP SLAVE;
|
||||
select * from t1;
|
||||
t
|
||||
1
|
||||
insert into t1 values (NULL);
|
||||
include/wait_for_slave_to_start.inc
|
||||
Master_SSL_Allowed = 'Yes'
|
||||
Master_SSL_CA_Path = ''
|
||||
Master_SSL_CA_File = 'MYSQL_TEST_DIR/std_data/cacert.pem'
|
||||
Master_SSL_Cert = 'MYSQL_TEST_DIR/std_data/client-cert.pem'
|
||||
Master_SSL_Key = 'MYSQL_TEST_DIR/std_data/client-key.pem'
|
||||
include/check_slave_is_running.inc
|
||||
drop user replssl@localhost;
|
||||
drop table t1;
|
||||
include/stop_slave.inc
|
||||
CHANGE MASTER TO
|
||||
master_user = 'root',
|
||||
master_ssl = 0,
|
||||
master_ssl_ca = '',
|
||||
master_ssl_cert = '',
|
||||
master_ssl_key = '';
|
||||
End of 5.0 tests
|
||||
include/rpl_end.inc
|
Reference in New Issue
Block a user