-keep reading from client to support multiple GNS requests in parallel
[oweals/gnunet.git] / src / gns / test_gns_lookup.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 rm -r `gnunet-config -c test_gns_lookup.conf -s PATHS -o SERVICEHOME`
4 TEST_IP="127.0.0.1"
5 gnunet-arm -s -c test_gns_lookup.conf
6 gnunet-identity -C testego -c test_gns_lookup.conf
7 gnunet-namestore -p -z testego -a -n www -t A -V $TEST_IP -e never -c test_gns_lookup.conf
8 RES_IP=$(timeout 5 gnunet-gns --raw -z testego -u www.gnu -t A -c test_gns_lookup.conf)
9 gnunet-namestore -z testego -d -n www -t A -V $TEST_IP -e never -c test_gns_lookup.conf
10 gnunet-identity -D testego -c test_gns_lookup.conf
11 gnunet-arm -e -c test_gns_lookup.conf
12
13 if [ "$RES_IP" == "$TEST_IP" ]
14 then
15   exit 0
16 else
17   echo "Failed to resolve to proper IP, got $RES_IP."
18   exit 1
19 fi