aboutsummaryrefslogtreecommitdiff
path: root/src/gns/test_gns_zkey_lookup.sh
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2013-10-16 11:17:17 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2013-10-16 11:17:17 +0000
commit5ad45d439b900ea388b93aca8547ad03c53ddc68 (patch)
tree9223d55a7fae48b0ba39f82f4f07664bc2bc9288 /src/gns/test_gns_zkey_lookup.sh
parentd3058d01f5df711d884d94a713ec7120a4eb62d9 (diff)
downloadgnunet-5ad45d439b900ea388b93aca8547ad03c53ddc68.tar.gz
gnunet-5ad45d439b900ea388b93aca8547ad03c53ddc68.zip
-more tests
Diffstat (limited to 'src/gns/test_gns_zkey_lookup.sh')
-rwxr-xr-xsrc/gns/test_gns_zkey_lookup.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/gns/test_gns_zkey_lookup.sh b/src/gns/test_gns_zkey_lookup.sh
new file mode 100755
index 000000000..1a3de520b
--- /dev/null
+++ b/src/gns/test_gns_zkey_lookup.sh
@@ -0,0 +1,24 @@
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 SERVICEHOME`
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.$DELEGATED_PKEY'.zkey' -t A -c test_gns_lookup.conf`
14gnunet-namestore -z testego -d -n b -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_lookup.conf
15gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP -e never -c test_gns_lookup.conf
16gnunet-arm -e -c test_gns_lookup.conf
17
18if [ "$RES_IP" == "$TEST_IP" ]
19then
20 exit 0
21else
22 echo "Failed to resolve to proper IP, got $RES_IP."
23 exit 1
24fi