modify test to test shortened delegations in shorten and master zone
[oweals/gnunet.git] / src / gns / test_gns_nick_shorten.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 which timeout &> /dev/null && DO_TIMEOUT="timeout 30"
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 rm -rf `gnunet-config -c test_gns_lookup.conf -s PATHS -o GNUNET_HOME -f`
19 TEST_IP="127.0.0.1"
20 TEST_IP="127.0.0.2"
21 TEST_NICK_EGO="ego"
22 TEST_NICK_DELEGATED="alice"
23 TEST_NAME="www.mybestfriendalice.gnu"
24 TEST_NAME_SHORT="www.alice.short.gnu"
25
26 # Start gnunet
27 gnunet-arm -s -c test_gns_lookup.conf
28
29 DELEGATED_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep delegatedego | awk '{print $3}')
30
31 # Create initial identities: short-zone, delegated-zone, testego
32 gnunet-identity -c test_gns_lookup.conf -d
33 gnunet-identity -C short-zone -c test_gns_lookup.conf
34 gnunet-identity -C delegatedego -c test_gns_lookup.conf
35 gnunet-identity -e short-zone -s gns-short -c test_gns_lookup.conf
36 gnunet-identity -C testego -c test_gns_lookup.conf
37
38 # We should set NICKs here
39 gnunet-namestore -z testego -i $TEST_NICK_EGO -c test_gns_lookup.conf
40 gnunet-namestore -z delegatedego -i $TEST_NICK_DELEGATED -c test_gns_lookup.conf
41
42 DELEGATED_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep delegatedego | awk '{print $3}')
43 SHORT=$(gnunet-identity -c test_gns_lookup.conf -d | grep short-zone | awk '{print $3}')
44
45 # Delegate the name "mybestfriendalice" to alice
46 gnunet-namestore -p -z testego -a -n mybestfriendalice -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_lookup.conf
47
48 # Delegate the name "short" to shortenzone
49 gnunet-namestore -p -z testego -a -n short -t PKEY -V $SHORT -e never -c test_gns_lookup.conf
50 # Adding label mail in ego's zone zone 
51 gnunet-namestore -p -z testego  -a -n mail -t A -V $TEST_IP -e never -c test_gns_lookup.conf
52
53 # Adding label www in Alice's delegatedego zone 
54 gnunet-namestore -p -z delegatedego -a -n www -t A -V $TEST_IP -e never -c test_gns_lookup.conf
55
56 # Delete namecache content
57 #gnunet-arm -c test_gns_lookup.conf -k gns
58 gnunet-arm -c test_gns_lookup.conf -k namecache
59 rm -rf `gnunet-config -c test_gns_lookup.conf -s namecache-sqlite -o FILENAME -f`
60
61 # Force start of GNS
62 gnunet-arm -c test_gns_lookup.conf -i gns
63 # need to sleep here, to give PSEU record chance to be copied to DHT
64 sleep 1
65
66 RES_IP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u $TEST_NAME -t A -c test_gns_lookup.conf`
67
68 # need to sleep here, as shortening happens asynchronously...
69 sleep 1
70
71 # DO THAT 
72 PKEY_SHORT_RES=$($DO_TIMEOUT gnunet-gns --raw -c test_gns_lookup.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_lookup.conf -z testego -u alice.short.gnu -t PKEY)
75 echo "Resolving alice's PKEY in master zone: $PKEY_RES"
76
77 #RES_IP_PSEU=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.alice.short.gnu -t A -c test_gns_lookup.conf`
78
79 gnunet-namestore -z testego -d -n mybestfriendalice -t PKEY -V $DELEGATED_PKEY  -e never -c test_gns_lookup.conf
80 gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP  -e never -c test_gns_lookup.conf
81 gnunet-arm -e -c test_gns_lookup.conf
82
83 rm -rf `gnunet-config -c test_gns_lookup.conf -s PATHS -o GNUNET_HOME -f`
84
85 if [ "$DELEGATED_PKEY" == "$PKEY_SHORT_RES" ]
86 then
87   echo "PASS: Resolved delegation for shorten name in shortened zone"
88 else
89   echo "FAIL: Expected PKEY in $DELEGATED_PKEY, received PKEY '$PKEY_SHORT_RES' in shorten zone."
90 fi
91
92 if [ "$DELEGATED_PKEY" == "$PKEY_RES" ]
93 then
94   echo "PASS: Resolved delegation for shorten name in master zone"
95   exit 0
96 else
97   echo "FAIL: Expected PKEY in $DELEGATED_PKEY, received PKEY $PKEY_SHORT_RES in master zone."
98 fi