summaryrefslogtreecommitdiff
path: root/test-many-generations
blob: 5a43d65f08e6c7ba0637116acd25fbbc1ee3de6e (plain)
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
#!/bin/bash
#
# Obnam test: backup and verify many generations of data.
#
# Copyright 2012-2014  Lars Wirzenius
#
# 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 3 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, see <http://www.gnu.org/licenses/>.

set -x

die()
{
    echo "$@" 1>&2
    exit 1
}

[ "$#" = 4 ] || die "Bad usage, read source!"

N="$1"
repourl="$2"
repopath="$3"
client="$4"
root="$(mktemp -d)"
log="$(mktemp)"
amount="1k"

conf="$(mktemp)"
cat <<EOF > "$conf"
[config]
client-name = $client
quiet = yes
log = $client.log
log-level = debug
trace = obnamlib, larch
repository = $repourl
root = $root
EOF

echo "Configuration:"
cat "$conf"
echo

echo "Making backups"
seq "$N" |
while read gen
do
    genbackupdata --quiet --create="$amount" "$root" --seed="$RANDOM"
    find "$root" -exec touch -d "1970-01-01 00:00:$gen" '{}' ';'
    ./verification-test backup "$repopath" "$root" "$conf" \
        >> "$client-verif.output" 2>&1 || exit 1
done || exit 1

echo "Verifying results"
while true
do
    ./verification-test verify "$repopath" "$root" "$conf"
    ret="$?"
    if [ "$ret" = 0 ]
    then
        break
    elif [ "$ret" != 42 ]
    then
        echo "$client failed verification" 1>&2
        exit 1
    fi
done || exit 1

rm -rf "$conf" "$root" "$log"