new test with PKEY shortening check and lookup in shorten zone
[oweals/gnunet.git] / src / gns / test_gns_nick_shorten.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_gns_nick_shorten.conf" SIGINT
3 which timeout &> /dev/null && DO_TIMEOUT="timeout 5"
4
5 # This test tests shortening functionality based on NICK records:
6
7 # zone "delegatedego": Alice's zone
8 # zone "testego": Local zone with delegation to alice
9
10 LOCATION=$(which gnunet-config)
11 if [ -z $LOCATION ]
12 then
13         echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX" 
14         exit 1
15 fi
16
17 # Deleting home directory from previous runs
18 TEST_CONFIG="test_gns_nick_shorten.conf "
19 rm -rf `gnunet-config -c test_gns_nick_shorten.conf -s PATHS -o GNUNET_HOME -f`
20 TEST_IP="127.0.0.1"
21 TEST_IP="127.0.0.2"
22 TEST_NICK_EGO="ego"
23 TEST_NICK_DELEGATED="alice"
24 TEST_NAME="www.mybestfriendalice.gnu"
25 TEST_NAME_SHORT="www.alice.short.gnu"
26
27 # export GNUNET_FORCE_LOG="namestore;;;;DEBUG/gns;;;;DEBUG/;;;;WARNING"
28
29 # Start gnunet
30 echo "Starting arm with configuration $TEST_CONFIG"
31 gnunet-arm -s -c $TEST_CONFIG
32
33 # Create initial identities: short-zone, delegated-zone, testego
34 echo "Creating identities"
35 gnunet-identity -d -c $TEST_CONFIG
36 gnunet-identity -C short-zone -c $TEST_CONFIG
37 gnunet-identity -C delegatedego -c $TEST_CONFIG
38 gnunet-identity -e short-zone -s gns-short -c $TEST_CONFIG
39 gnunet-identity -C testego -c $TEST_CONFIG
40
41 echo "Adding nick names for identities"
42 gnunet-namestore -z testego -i $TEST_NICK_EGO -c $TEST_CONFIG
43 gnunet-namestore -z delegatedego -i $TEST_NICK_DELEGATED -c $TEST_CONFIG
44
45 # Adding label www in Alice's delegatedego zone 
46 echo "Adding www record with IP $TEST_IP"
47 gnunet-namestore -p -z delegatedego -a -n www -t A -V $TEST_IP -e never -c test_gns_nick_shorten.conf
48
49 # Retrieve PKEYs for delegation
50 DELEGATED_PKEY=$(gnunet-identity -d -c $TEST_CONFIG| grep delegatedego | awk '{print $3}')
51 echo "Alice's PKEY is $DELEGATED_PKEY"
52
53 SHORTEN_PKEY=$(gnunet-identity -c test_gns_nick_shorten.conf -d | grep short-zone | awk '{print $3}')
54 echo "Shorten PKEY is $SHORTEN_PKEY"
55
56 # Delegate the name "short" to shortenzone
57 gnunet-namestore -p -z testego -a -n short -t PKEY -V $SHORTEN_PKEY -e never -c test_gns_nick_shorten.conf
58
59 # Delegate the name "mybestfriendalice" to alice
60 gnunet-namestore -p -z testego -a -n mybestfriendalice -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_nick_shorten.conf
61
62 # Perform lookup to shorten
63 echo "Start gns..."
64 gnunet-arm -c test_gns_nick_shorten.conf -i gns
65
66
67 RES_IP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u $TEST_NAME -t A -c test_gns_nick_shorten.conf`
68
69 sleep 1
70
71 echo "Lookup shortened names"
72 PKEY_SHORT_RES=$($DO_TIMEOUT gnunet-gns --raw -c test_gns_nick_shorten.conf -z short-zone -u alice.gnu -t PKEY)
73 echo "Resolving alice's PKEY in shorten zone: $PKEY_SHORT_RES"
74 PKEY_RES=$($DO_TIMEOUT gnunet-gns --raw -c test_gns_nick_shorten.conf -z testego -u alice.short.gnu -t PKEY)
75 echo "Resolving alice's PKEY in master zone: $PKEY_RES"
76
77 RES=0
78 if [ "$DELEGATED_PKEY" == "$PKEY_SHORT_RES" ]
79 then
80   echo "PASS: Resolved delegation for shorten name in shortened zone"
81 else
82   echo "FAIL: Expected PKEY in $DELEGATED_PKEY, received PKEY '$PKEY_SHORT_RES' in shorten zone."
83   RES=1
84 fi
85
86 if [ "$DELEGATED_PKEY" == "$PKEY_RES" ]
87 then
88   echo "PASS: Resolved delegation for shorten name in master zone"
89 else
90   echo "FAIL: Expected PKEY in $DELEGATED_PKEY, received PKEY $PKEY_SHORT_RES in master zone."
91   RES=1
92 fi  
93
94 if [ $RES -eq 0 ]
95 then
96         RES_IP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u $TEST_NAME_SHORT -t A -c test_gns_nick_shorten.conf` 
97         if [ "$RES_IP" == "$TEST_IP" ]  
98         then
99                 echo "PASS: Received $TEST_IP for $TEST_NAME_SHORT"
100         else
101                 echo "FAIL: Expected IP in $TEST_IP, received IP '$RES_IP' for $TEST_SHORT_NAME."
102                 RES=1
103         fi
104 fi
105
106
107 # Clean up
108 echo "Clean up..."
109 gnunet-namestore -z testego -d -n mybestfriendalice -t PKEY -V $DELEGATED_PKEY  -e never -c test_gns_nick_shorten.conf
110 gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP  -e never -c test_gns_nick_shorten.conf
111 gnunet-identity -D -z testego -c $TEST_CONFIG
112 gnunet-identity -D -z delegatedego -c $TEST_CONFIG
113 gnunet-identity -D -z short-zone -c $TEST_CONFIG
114
115 gnunet-arm -e -c test_gns_nick_shorten.conf
116 rm -rf `gnunet-config -c test_gns_nick_shorten.conf -s PATHS -o GNUNET_HOME -f`
117
118 exit $RES
119