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
|
#!/bin/bash
# This file is in the public domain.
set -eu
# Exit, with status code "skip" (no 'real' failure)
function exit_skip() {
echo " SKIP: $1"
exit 77
}
# Exit, with error message (hard failure)
function exit_fail() {
echo " ERROR: $1"
exit 1
}
# Cleanup to run whenever we exit
function cleanup()
{
for n in `jobs -p`
do
kill $n 2> /dev/null || true
done
rm -f $TFILE $SFILE
wait
}
SFILE=`mktemp test_reducer_stateXXXXXX`
TFILE=`mktemp test_reducer_stateXXXXXX`
# Install cleanup handler (except for kill -9)
trap cleanup EXIT
# Check we can actually run
echo -n "Testing for jq"
jq -h > /dev/null || exit_skip "jq required"
echo " FOUND"
echo -n "Testing for anastasis-reducer ..."
anastasis-reducer -h > /dev/null || exit_skip "anastasis-reducer required"
echo " FOUND"
echo -n "Test add authentication ..."
# First method
anastasis-reducer -a \
'{"authentication_method": {
"type": "question",
"instructions": "What is your name?",
"challenge": "91GPWWR"
} }' \
add_authentication resources/03-backup.json $TFILE
STATE=`jq -r -e .backup_state < $TFILE`
if test "$STATE" != "AUTHENTICATIONS_EDITING"
then
exit_fail "Expected new state to be 'AUTHENTICATIONS_EDITING', got '$STATE'"
fi
ARRAY_LENGTH=`jq -r -e '.authentication_methods | length' < $TFILE`
if test $ARRAY_LENGTH != 1
then
exit_fail "Expected array length to be 1, got '$ARRAY_LENGTH'"
fi
echo -n "."
# Second method
anastasis-reducer -a \
'{"authentication_method": {
"type": "question",
"instructions": "How old are you?",
"challenge": "64S36"
}}' \
add_authentication $TFILE $SFILE
STATE=`jq -r -e .backup_state < $SFILE`
if test "$STATE" != "AUTHENTICATIONS_EDITING"
then
exit_fail "Expected new state to be 'AUTHENTICATIONS_EDITING', got '$STATE'"
fi
ARRAY_LENGTH=`jq -r -e '.authentication_methods | length' < $SFILE`
if test $ARRAY_LENGTH != 2
then
exit_fail "Expected array length to be 2, got '$ARRAY_LENGTH'"
fi
echo -n "."
# Third method
anastasis-reducer -a \
'{"authentication_method": {
"type": "question",
"instructions": "Where do you live?",
"challenge": "9NGQ4WR"
}}' \
add_authentication $SFILE $TFILE
STATE=`jq -r -e .backup_state < $TFILE`
if test "$STATE" != "AUTHENTICATIONS_EDITING"
then
exit_fail "Expected new state to be 'AUTHENTICATIONS_EDITING', got '$STATE'"
fi
ARRAY_LENGTH=`jq -r -e '.authentication_methods | length' < $TFILE`
if test $ARRAY_LENGTH != 3
then
exit_fail "Expected array length to be 3, got '$ARRAY_LENGTH'"
fi
echo " OK"
echo -n "Test delete authentication ..."
anastasis-reducer -a \
'{"authentication_method": 2 }' \
delete_authentication $TFILE $SFILE
STATE=`jq -r -e .backup_state < $SFILE`
if test "$STATE" != "AUTHENTICATIONS_EDITING"
then
exit_fail "Expected new state to be 'AUTHENTICATIONS_EDITING', got '$STATE'"
fi
ARRAY_LENGTH=`jq -r -e '.authentication_methods | length' < $SFILE`
if test $ARRAY_LENGTH != 2
then
exit_fail "Expected array length to be 2, got '$ARRAY_LENGTH'"
fi
echo " OK"
exit 0
|