aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/test_gns_escrow.sh
blob: 5af2c806d34ffe14cf7dd743f6d52c2198db7f8a (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
48
#!/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 gns -P testego -u secret -c test_escrow.conf)
if test $? != 0
then
	echo "GNS escrow failed!"
	gnunet-arm -e -c test_escrow.conf
	exit 1
else
	ANCHOR=$(echo $ANCHOR | awk 'NF>1{print $NF}')
	echo "using anchor $ANCHOR"
fi
gnunet-escrow -m gns -V testego -a $ANCHOR -c test_escrow.conf
if test $? != 0
then
	echo "GNS verification failed!"
	gnunet-arm -e -c test_escrow.conf
	exit 1
fi
gnunet-identity -D testego -c test_escrow.conf
gnunet-escrow -m gns -G -a $ANCHOR -c test_escrow.conf
if test $? != 0
then
	echo "GNS restore failed!"
	gnunet-arm -e -c test_escrow.conf
	exit 1
fi
gnunet-arm -e -c test_escrow.conf

exit 0