-mx test, mx type not recognized
authorMartin Schanzenbach <mschanzenbach@posteo.de>
Wed, 25 Sep 2013 12:16:42 +0000 (12:16 +0000)
committerMartin Schanzenbach <mschanzenbach@posteo.de>
Wed, 25 Sep 2013 12:16:42 +0000 (12:16 +0000)
src/gns/test_gns_mx_lookup.sh [new file with mode: 0755]

diff --git a/src/gns/test_gns_mx_lookup.sh b/src/gns/test_gns_mx_lookup.sh
new file mode 100755 (executable)
index 0000000..545d21d
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/bash
+trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
+rm -r `gnunet-config -c test_gns_lookup.conf -s PATHS -o SERVICEHOME`
+TEST_MX="mail.gnunet"
+gnunet-arm -s -c test_gns_lookup.conf
+gnunet-identity -C testego -c test_gns_lookup.conf
+gnunet-namestore -p -z testego -a -n gnunet -t MX -V $TEST_MX -e never -c test_gns_lookup.conf
+RES_MX=$(timeout 5 gnunet-gns --raw -z testego -u www.gnu -t MX -c test_gns_lookup.conf)
+gnunet-namestore -z testego -d -n www -t MX -V $TEST_MX -e never -c test_gns_lookup.conf
+gnunet-identity -D testego -c test_gns_lookup.conf
+gnunet-arm -e -c test_gns_lookup.conf
+
+if [ "$RES_MX" == "$TEST_MX" ]
+then
+  exit 0
+else
+  echo "Failed to resolve to proper IP, got $RES_MX."
+  exit 1
+fi