File: redo_log_archive_04.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 (94 lines) | stat: -rw-r--r-- 2,853 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
#
# Test the Redo-Log Archiving feature. File and directory permissions.
#
--source include/not_windows.inc

--disable_query_log
# When log-bin, skip-log-bin and binlog-format options are specified, mask the warning
call mtr.add_suppression("\\[Warning\\] .*MY-\\d+.* You need to use --log-bin to make --binlog-format work.");
--enable_query_log

--let $saved_dirs       = `SELECT @@global.innodb_redo_log_archive_dirs`
--let $SERVER_UUID      = `SELECT @@global.server_uuid`
--let $IRLA_FILENAME    = archive.$SERVER_UUID.000001.log
--let $IRLA_DIRECTORY_1 = $MYSQLTEST_VARDIR/log/redo_log_archive_1
--let $IRLA_PATHNAME_1  = $IRLA_DIRECTORY_1/$IRLA_FILENAME

--echo #
--echo # Show the original variable value (from -master.opt).
--echo #
SELECT @@global.innodb_redo_log_archive_dirs;
--echo

--echo #
--echo # Try to start redo log archiving with that value.
--echo #
--error ER_INNODB_REDO_LOG_ARCHIVE_DIR_CLASH, ER_INNODB_REDO_LOG_ARCHIVE_DIR_PERMISSIONS
DO innodb_redo_log_archive_start('command_line_label');
--echo

--echo #
--echo # Set innodb_redo_log_archive_dirs for the following tests.
--echo #
--replace_result $IRLA_DIRECTORY_1 IRLA_DIRECTORY_1
eval SET @@global.innodb_redo_log_archive_dirs = 'label1:$IRLA_DIRECTORY_1';
--mkdir $IRLA_DIRECTORY_1
--echo

--echo #
--echo # Directory with world permissions
--echo #
--exec chmod o+rx $IRLA_DIRECTORY_1
--replace_result $IRLA_DIRECTORY_1 IRLA_DIRECTORY_1
--error ER_INNODB_REDO_LOG_ARCHIVE_DIR_PERMISSIONS
DO innodb_redo_log_archive_start('label1');
--exec chmod o= $IRLA_DIRECTORY_1
--echo

--echo #
--echo # Redo log archive file is read-only. No world permissions
--echo #
DO innodb_redo_log_archive_start('label1');
--echo #
--echo # Check the redo log archive file for existence and permissions.
--echo #
--file_exists $IRLA_PATHNAME_1

--let _INPUT_FILE_ = $IRLA_PATHNAME_1
--source include/get_file_permissions.inc
--source $MYSQL_TMP_DIR/permissions.inc
--remove_file $MYSQL_TMP_DIR/permissions.inc
--let $assert_cond= $FILE_PERMISSIONS= 440
--let $assert_text= File permissions should be equal to 440
--source include/assert.inc
--let _INPUT_FILE_ =

--echo #
--echo # Stop redo log archiving.
--echo #
DO innodb_redo_log_archive_stop();
--echo #
--echo # Check the redo log archive file again.
--echo #
--file_exists $IRLA_PATHNAME_1

--let _INPUT_FILE_ = $IRLA_PATHNAME_1
--source include/get_file_permissions.inc
--source $MYSQL_TMP_DIR/permissions.inc
--remove_file $MYSQL_TMP_DIR/permissions.inc
--let $assert_cond= $FILE_PERMISSIONS= 440
--let $assert_text= File permissions should be equal to 440
--source include/assert.inc
--let _INPUT_FILE_ =

--echo #
--echo # Remove the redo log archive file.
--echo #
--remove_file $IRLA_PATHNAME_1
--echo

--echo #
--echo # Cleanup
--echo #
--rmdir $IRLA_DIRECTORY_1
eval SET @@global.innodb_redo_log_archive_dirs = '$saved_dirs';