-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathtest_backintime.py
186 lines (148 loc) · 6.83 KB
/
test_backintime.py
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
# Back In Time
# Copyright (C) 2016 Taylor Raack
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation,Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import os
import re
import subprocess
import sys
from test import generic
import json
import config
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
class TestBackInTime(generic.TestCase):
"""main tests for backintime"""
def setUp(self):
super(TestBackInTime, self).setUp()
def test_quiet_mode(self):
output = subprocess.getoutput("python3 backintime.py --quiet")
self.assertEqual("", output)
def test_local_snapshot_is_successful(self):
"""end to end test - from BIT initialization through snapshot
From BIT initialization all the way through successful snapshot on a
local mount. test one of the highest level interfaces a user could
work with - the command line ensures that argument parsing,
functionality, and output all work as expected is NOT intended to
replace individual method tests, which are incredibly useful as well
"""
# ensure that we see full diffs of assert output if there are any
self.maxDiff = None
# create pristine source directory with single file
subprocess.getoutput("chmod -R a+rwx /tmp/test && rm -rf /tmp/test")
os.mkdir('/tmp/test')
with open('/tmp/test/testfile', 'w') as f:
f.write('some data')
# create pristine snapshot directory
subprocess.getoutput(
"chmod -R a+rwx /tmp/snapshots && rm -rf /tmp/snapshots")
os.mkdir('/tmp/snapshots')
# remove restored directory
subprocess.getoutput("rm -rf /tmp/restored")
# install proper destination filesystem structure and verify output
proc = subprocess.Popen(["./backintime",
"--config",
"test/config",
"--share-path",
self.sharePath,
"check-config",
# do not overwrite users crontab
"--no-crontab"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
output, error = proc.communicate()
msg = 'Returncode: {}\nstderr: {}\nstdout: {}' \
.format(proc.returncode, error.decode(), output.decode())
self.assertEqual(proc.returncode, 0, msg)
self.assertRegex(output.decode(), re.compile(r'''
Back In Time
Version: \d+.\d+.\d+.*
Back In Time comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; type `backintime --license' for details.
(INFO: Update to config version \d+
)?
\+--------------------------------\+
| Check/prepair snapshot path |
\+--------------------------------\+
Check/prepair snapshot path: done
\+--------------------------------\+
| Check config |
\+--------------------------------\+
Check config: done
Config .*test/config profile 'Main profile' is fine.''', re.MULTILINE))
# execute backup and verify output
proc = subprocess.Popen(["./backintime",
"--config", "test/config",
"--share-path", self.sharePath,
"backup"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
output, error = proc.communicate()
msg = 'Returncode: {}\nstderr: {}\nstdout: {}' \
.format(proc.returncode, error.decode(), output.decode())
self.assertEqual(proc.returncode, 0, msg)
self.assertRegex(output.decode(), re.compile(r'''
Back In Time
Version: \d+.\d+.\d+.*
Back In Time comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; type `backintime --license' for details.
INFO: Lock
INFO: Take a new snapshot. Profile: 1 Main profile
INFO: Call rsync to take the snapshot
INFO: Save config file
INFO: Save permissions
INFO: Create info file
INFO: Unlock''', re.MULTILINE))
# get snapshot id
subprocess.check_output(["./backintime",
"--config",
"test/config",
"snapshots-list"])
# execute restore and verify output
proc = subprocess.Popen(["./backintime",
"--config",
"test/config",
"--share-path",
self.sharePath,
"restore",
"/tmp/test/testfile",
"/tmp/restored",
"0"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
output, error = proc.communicate()
msg = 'Returncode: {}\nstderr: {}\nstdout: {}' \
.format(proc.returncode, error.decode(), output.decode())
self.assertEqual(proc.returncode, 0, msg)
self.assertRegex(output.decode(), re.compile(r'''
Back In Time
Version: \d+.\d+.\d+.*
Back In Time comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; type `backintime --license' for details.
INFO: Restore: /tmp/test/testfile to: /tmp/restored.*''', re.MULTILINE))
# verify that files restored are the same as those backed up
subprocess.check_output(["diff",
"-r",
"/tmp/test",
"/tmp/restored"])
def test_diagnostics_arg(self):
# Workaround: Without this line the next "subprocess.getoutput()" call fails on TravisCI for unknown reasons!
subprocess.check_output(["./backintime", "--diagnostics"])
output = subprocess.getoutput("./backintime --diagnostics")
diagnostics = json.loads(output)
self.assertEqual(diagnostics["app_name"], config.Config.APP_NAME)
self.assertEqual(diagnostics["app_version"], config.Config.VERSION)