fix rest testcase
[oweals/gnunet.git] / src / gns / test_plugin_rest_gns.sh
1 #!/bin/sh
2 # This file is in the public domain.
3 trap "gnunet-arm -e -c test_gns_lookup.conf" INT
4 LOCATION=$(which gnunet-config)
5 if [ -z $LOCATION ]
6 then
7   LOCATION="gnunet-config"
8 fi
9 $LOCATION --version 1> /dev/null
10 if test $? != 0
11 then
12         echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX"
13         exit 77
14 fi
15
16 rm -rf `gnunet-config -c test_gns_lookup.conf -f -s paths -o GNUNET_TEST_HOME`
17
18 gns_link="http://localhost:7776/gns"
19 wrong_link="http://localhost:7776/gnsandmore"
20
21 curl_get () {
22     #$1 is link
23     #$2 is grep
24     XURL=`which gnurl || which curl`
25     echo "Using $XURL to download $1"
26     cache="$(${XURL} -v "$1" 2>&1 | grep "$2")"
27     #echo "$cache"
28     if [ "" = "$cache" ]
29     then
30         gnunet-identity -D "$TEST_TLD" -c test_gns_lookup.conf > /dev/null 2>&1
31         gnunet-arm -e -c test_gns_lookup.conf
32         echo "HTTP client (curl/gnurl) not found, exiting"
33         exit 77
34     fi
35 }
36 TEST_TLD="testtld"
37
38 gnunet-arm -s -c test_gns_lookup.conf
39 curl_get "$gns_link/www.$TEST_TLD" "error"
40
41 gnunet-identity -C "$TEST_TLD"  -c test_gns_lookup.conf
42 sleep 0.5
43 curl_get "$gns_link/www.$TEST_TLD" "\[\]"
44
45 gnunet-namestore -z "$TEST_TLD" -p -a -n www -e 1d -V 1.1.1.1 -t A -c test_gns_lookup.conf
46
47 curl_get "$gns_link/www.$TEST_TLD" "1.1.1.1"
48
49 gnunet-namestore -z "$TEST_TLD" -p -a -n www -e 1d -V 1::1 -t AAAA -c test_gns_lookup.conf
50
51 curl_get "$gns_link/www.$TEST_TLD" "1::1.*1.1.1.1"
52
53 gnunet-namestore -z "$TEST_TLD" -p -a -n www -e 1d -V 1.1.1.2 -t A -c test_gns_lookup.conf
54
55 curl_get "$gns_link/www.$TEST_TLD" "1.1.1.2.*1::1.*1.1.1.1"
56 curl_get "$gns_link/www.$TEST_TLD?record_type=A" "1.1.1.2.*1.1.1.1"
57 curl_get "$gns_link/www.$TEST_TLD?record_type=AAAA" "1::1"
58 curl_get "$gns_link/www.$TEST_TLD?record_type=WRONG_TYPE" "1.1.1.2.*1::1.*1.1.1.1"
59
60 gnunet-namestore -z "$TEST_TLD" -p -a -n www1 -e 1d -V 1.1.1.1 -t A -c test_gns_lookup.conf
61 curl_get "$gns_link/www1.$TEST_TLD" "1.1.1.1"
62
63 gnunet-namestore -z "$TEST_TLD" -d -n www1 -c test_gns_lookup.conf
64 gnunet-namestore -z "$TEST_TLD" -d -n www -c test_gns_lookup.conf
65
66 gnunet-identity -D "$TEST_TLD" -c test_gns_lookup.conf > /dev/null 2>&1
67
68 curl_get "$gns_link/www1.$TEST_TLD" "error"
69 gnunet-arm -e -c test_gns_lookup.conf
70 exit 0