-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtests.sh
executable file
·122 lines (101 loc) · 2.83 KB
/
tests.sh
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
#!/bin/bash
# these tests will create a "old" and "new/current" worlds, make backups of then and check if they actually correspond to what they supposed to
# if tests succeed, you'll see the last line "All tests passed"
source server.sh
VERBOSE=1
WORLD_NAME="test_world"
function test_backend() {
BACKUP_BACKEND="$1"
# doing tests inside /tmp/
DIR=$(mktemp -d)
cd "$DIR"
local status=$?
if [ $status -ne 0 ] ; then
echo "Failed to make a temporary directory"
return 1
fi
function cleanup() {
rm -r "$DIR"
}
# TODO: testing remote directories
BACKUP_DIRS=( "$PWD/.bak" )
# make a "world" with some volatile data
function make_world() {
mkdir -p "$DIR/$1/DIM0"
date > "$1/data0"
shuf -e {1..100} | tr '\n' ' ' > "$DIR/$1/DIM0/data1"
}
# make two versions of a world and back up both
make_world "$WORLD_NAME"
local old_world="${WORLD_NAME}.orig0"
cp -r "$DIR/$WORLD_NAME" "$DIR/$old_world"
if ! server_backup ; then
cleanup
exit
fi
# backup time in archive's name is specified up to seconds, so subsequent backups without some delay will have the same name and previous backup be overwritten
if [ $BACKUP_BACKEND = "tar" ]; then
sleep 1
fi
make_world "$WORLD_NAME"
local new_world="${WORLD_NAME}.orig1"
cp -r "$DIR/$WORLD_NAME" "$DIR/$new_world"
if ! server_backup ; then
cleanup
exit
fi
local backups="$(server_ls_backups)"
if [ -z "$backups" ]; then
log_error "Found no backups"
cleanup
exit
fi
# corrupting current (new) world
find "$DIR/$WORLD_NAME" -type f -exec shred {} \;
if same_world "$DIR/$WORLD_NAME" "$DIR/$new_world" ; then
log_error "Failed to corrupt new world"
cleanup
exit
fi
# restore new backup
server_restore "${BACKUP_DIRS[0]}" 0
# must be: new backup == new world
if ! same_world "$DIR/$WORLD_NAME" "$DIR/$new_world" ; then
log_error "${BACKUP_BACKEND}: new backup != new world"
cleanup
exit
fi
# must be: new backup != old world
if same_world "$DIR/$WORLD_NAME" "$DIR/$old_world" ; then
log_error "${BACKUP_BACKEND}: new backup == old world"
cleanup
exit
fi
# restore old backup
if [ $BACKUP_BACKEND = "bup" ]; then
# bup's 0th option is "latest", which links to 1st option, this is not present in tar and borg
server_restore "${BACKUP_DIRS[0]}" 2
else
server_restore "${BACKUP_DIRS[0]}" 1
fi
# must be: old backup == old world
if ! same_world "$DIR/$WORLD_NAME" "$DIR/$old_world" ; then
log_error "${BACKUP_BACKEND}: old backup != old world"
cleanup
exit
fi
# must be: old backup != new world
if same_world "$DIR/$WORLD_NAME" "$DIR/$new_world" ; then
log_error "${BACKUP_BACKEND}: old backup == new world"
cleanup
exit
fi
cleanup
}
printf "\n\n\nTesting tar backend\n"
test_backend "tar"
printf "\n\n\nTesting bup backend\n"
test_backend "bup"
printf "\n\n\nTesting borg backend\n"
test_backend "borg"
printf "\n\n\nAll tests passed\n"