aboutsummaryrefslogtreecommitdiff
path: root/src/gns/test_gns_revocation.sh
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2013-10-20 13:33:21 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2013-10-20 13:33:21 +0000
commit11cd4959d673c5c58d9a952d25425c3ca4ba4b3e (patch)
treee65c770c76fecfa20ad2d7eb09d302cb2a64cb3e /src/gns/test_gns_revocation.sh
parentda48d9ee19cbc96a3e0df0c870d9453e87cff4e4 (diff)
downloadgnunet-11cd4959d673c5c58d9a952d25425c3ca4ba4b3e.tar.gz
gnunet-11cd4959d673c5c58d9a952d25425c3ca4ba4b3e.zip
-revocation
Diffstat (limited to 'src/gns/test_gns_revocation.sh')
-rwxr-xr-xsrc/gns/test_gns_revocation.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/gns/test_gns_revocation.sh b/src/gns/test_gns_revocation.sh
new file mode 100755
index 000000000..5c2840798
--- /dev/null
+++ b/src/gns/test_gns_revocation.sh
@@ -0,0 +1,32 @@
1#!/bin/bash
2trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3which timeout &> /dev/null && DO_TIMEOUT="timeout 5"
4rm -rf `gnunet-config -c test_gns_lookup.conf -s PATHS -o GNUNET_HOME -f`
5
6TEST_IP="127.0.0.1"
7gnunet-arm -s -c test_gns_lookup.conf
8gnunet-identity -C delegatedego -c test_gns_lookup.conf
9DELEGATED_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep delegatedego | awk '{print $3}')
10gnunet-identity -C testego -c test_gns_lookup.conf
11gnunet-namestore -p -z testego -a -n b -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_lookup.conf
12gnunet-namestore -p -z delegatedego -a -n www -t A -V $TEST_IP -e never -c test_gns_lookup.conf
13RES_IP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.b.gnu -t A -c test_gns_lookup.conf`
14gnunet-revocation -R delegatedego -p -c test_gns_lookup.conf
15RES_IP_REV=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.b.gnu -t A -c test_gns_lookup.conf`
16gnunet-namestore -z testego -d -n b -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_lookup.conf
17gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP -e never -c test_gns_lookup.conf
18gnunet-arm -e -c test_gns_lookup.conf
19
20if [ "$RES_IP" != "$TEST_IP" ]
21then
22 echo "Failed to resolve to proper IP, got $RES_IP."
23 exit 1
24fi
25
26if [ "$RES_IP_REV" == " " ]
27then
28 exit 0
29else
30 echo "Failed to revoke zone, got $RES_IP."
31 exit 1
32fi