-fix MX testcase to use well-formed MX record string
[oweals/gnunet.git] / src / gns / test_gns_mx_lookup.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 rm -fr `gnunet-config -c test_gns_lookup.conf -s PATHS -o SERVICEHOME`
4
5 TEST_MX="5,mail.gnu"
6 gnunet-arm -s -c test_gns_lookup.conf
7 gnunet-identity -C testego -c test_gns_lookup.conf
8 gnunet-namestore -p -z testego -a -n www -t MX -V "$TEST_MX" -e never -c test_gns_lookup.conf
9
10 RES_MX=$(timeout 5 gnunet-gns --raw -z testego -u www.gnu -t MX -c test_gns_lookup.conf)
11 gnunet-namestore -z testego -d -n www -t MX -V "$TEST_MX" -e never -c test_gns_lookup.conf
12 gnunet-identity -D testego -c test_gns_lookup.conf
13 gnunet-arm -e -c test_gns_lookup.conf
14
15 if [ "$RES_MX" == "$TEST_MX" ]
16 then
17   exit 0
18 else
19   echo "FAIL: did not get proper IP, got $RES_MX."
20   exit 1
21 fi