-
Notifications
You must be signed in to change notification settings - Fork 794
/
Copy path04_mysql_backup_spec.rb
133 lines (120 loc) · 4.13 KB
/
04_mysql_backup_spec.rb
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
# frozen_string_literal: true
require 'spec_helper_acceptance'
describe 'mysql::server::backup class' do
context 'should work with no errors' do
pp = <<-MANIFEST
class { 'mysql::server': root_password => 'password' }
mysql::db { [
'backup1',
'backup2'
]:
user => 'backup',
password => 'secret',
charset => '#{charset}',
collate => '#{charset}_general_ci',
}
class { 'mysql::server::backup':
backupuser => 'myuser',
backuppassword => 'mypassword',
backupdir => '/tmp/backups',
backupcompress => true,
postscript => [
'rm -rf /var/tmp/mysqlbackups',
'rm -f /var/tmp/mysqlbackups.done',
'cp -r /tmp/backups /var/tmp/mysqlbackups',
'touch /var/tmp/mysqlbackups.done',
],
execpath => '/usr/bin:/usr/sbin:/bin:/sbin:/opt/zimbra/bin',
}
MANIFEST
it 'when configuring mysql backups' do
idempotent_apply(pp)
end
end
describe 'mysqlbackup.sh' do
it 'runs mysqlbackup.sh with no errors' do
run_shell('/usr/local/sbin/mysqlbackup.sh') do |r|
expect(r.stderr).to eq('')
end
end
it 'dumps all databases to single file' do
run_shell('ls -l /tmp/backups/mysql_backup_*-*.sql.bz2 | wc -l') do |r|
expect(r.stdout).to match(%r{1})
expect(r.exit_code).to be_zero
end
end
context 'should create one file per database per run' do
it 'executes mysqlbackup.sh a second time' do
run_shell('sleep 1')
run_shell('/usr/local/sbin/mysqlbackup.sh')
end
it 'creates at least one backup tarball' do
run_shell('ls -l /tmp/backups/mysql_backup_*-*.sql.bz2 | wc -l') do |r|
expect(r.stdout).to match(%r{2})
expect(r.exit_code).to be_zero
end
end
end
end
context 'with one file per database' do
context 'should work with no errors' do
pp = <<-MANIFEST
class { 'mysql::server': root_password => 'password' }
mysql::db { [
'backup1',
'backup2'
]:
user => 'backup',
password => 'secret',
charset => '#{charset}',
collate => '#{charset}_general_ci',
}
class { 'mysql::server::backup':
backupuser => 'myuser',
backuppassword => 'mypassword',
backupdir => '/tmp/backups',
backupcompress => true,
file_per_database => true,
provider => 'mysqlbackup',
postscript => [
'rm -rf /var/tmp/mysqlbackups',
'rm -f /var/tmp/mysqlbackups.done',
'cp -r /tmp/backups /var/tmp/mysqlbackups',
'touch /var/tmp/mysqlbackups.done',
],
execpath => '/usr/bin:/usr/sbin:/bin:/sbin:/opt/zimbra/bin',
}
MANIFEST
it 'when configuring mysql backups' do
idempotent_apply(pp)
end
end
describe 'mysqlbackup.sh' do
it 'runs mysqlbackup.sh with no errors without root credentials' do
run_shell('HOME=/tmp/dontreadrootcredentials /usr/local/sbin/mysqlbackup.sh') do |r|
expect(r.stderr).to eq('')
end
end
it 'creates one file per database' do
['backup1', 'backup2'].each do |database|
run_shell("ls -l /tmp/backups/mysql_backup_#{database}_*-*.sql.bz2 | wc -l") do |r|
expect(r.stdout).to match(%r{1})
expect(r.exit_code).to be_zero
end
end
end
it 'executes mysqlbackup.sh a second time' do
run_shell('sleep 1')
run_shell('HOME=/tmp/dontreadrootcredentials /usr/local/sbin/mysqlbackup.sh')
end
it 'has one file per database per run' do
['backup1', 'backup2'].each do |database|
run_shell("ls -l /tmp/backups/mysql_backup_#{database}_*-*.sql.bz2 | wc -l") do |r|
expect(r.stdout).to match(%r{2})
expect(r.exit_code).to be_zero
end
end
end
end
end
end