aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/test_plaintext_escrow.sh
blob: 6b66de8baf3175669cb58a0d80c5c500dc131f1c (plain) (blame)
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
#!/bin/sh

LOCATION=$(which gnunet-config)
if [ -z $LOCATION ]
then
  LOCATION="gnunet-config"
fi
$LOCATION --version 1> /dev/null
if test $? != 0
then
	echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX"
	exit 77
fi

rm -rf `gnunet-config -c test_escrow.conf -s PATHS -o GNUNET_HOME -f`

which timeout > /dev/null 2>&1 && DO_TIMEOUT="timeout 30"

gnunet-arm -s -c test_escrow.conf
gnunet-identity -C testego -c test_escrow.conf
ANCHOR=$(gnunet-escrow -m plaintext -P testego -c test_escrow.conf)
if test $? != 0
then
	echo "Plaintext escrow failed!"
	gnunet-arm -e -c test_escrow.conf
	exit 1
else
	ANCHOR=$(echo $ANCHOR | awk 'NF>1{print $NF}')
fi
gnunet-escrow -m plaintext -V testego -a $ANCHOR -c test_escrow.conf
if test $? != 0
then
	echo "Plaintext verification failed!"
	gnunet-arm -e -c test_escrow.conf
	exit 1
fi
gnunet-identity -D testego -c test_escrow.conf
gnunet-escrow -m plaintext -G -a $ANCHOR -c test_escrow.conf
if test $? != 0
then
	echo "Plaintext restore failed!"
	gnunet-arm -e -c test_escrow.conf
	exit 1
fi
gnunet-arm -e -c test_escrow.conf

exit 0