changes to config and test due to test directory
[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
64 # need to sleep here, to give PSEU record chance to be copied to DHT
65 sleep 1
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 RES_IP_PSEU=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.alice.short.gnu -t A -c test_gns_lookup.conf`
71 gnunet-namestore -z testego -d -n mybestfriendalice -t PKEY -V $DELEGATED_PKEY  -e never -c test_gns_lookup.conf
72
73 gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP  -e never -c test_gns_lookup.conf
74 gnunet-arm -e -c test_gns_lookup.conf
75
76 rm -rf `gnunet-config -c test_gns_lookup.conf -s PATHS -o GNUNET_HOME -f`
77
78 if [ "$RES_IP" == "$TEST_IP" ]
79 then
80   echo "PASS: Resolved $TEST_NAME properly to $RES_IP."
81 else
82   echo "FAIL: Could not resolve $TEST_NAME to proper IP, got $RES_IP."
83   exit 1
84 fi
85
86 if [ "$RES_IP_PSEU" == "$TEST_IP" ]
87 then
88   echo "PASS: Resolved $TEST_NAME_SHORT properly to $RES_IP."
89   exit 0
90 else
91   echo "FAIL: Could not resolve $TEST_NAME_SHORT to proper IP, got $RES_IP_PSEU."
92   exit 1
93 fi