Add a test for tinc-up creation from invitations.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 17 Apr 2016 11:56:37 +0000 (13:56 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 17 Apr 2016 11:56:37 +0000 (13:56 +0200)
test/Makefile.am
test/invite-tinc-up.test [new file with mode: 0755]

index 5457b2fcd6b919a253ee71ce1e0d620f8614e98c..df8e2c3b8ef9ddd1edfc9d64828dc6523893b7b7 100644 (file)
@@ -4,6 +4,7 @@ TESTS = \
        executables.test \
        import-export.test \
        invite-join.test \
+       invite-tinc-up.test \
        ns-ping.test \
        ping.test \
        sptps-basic.test \
diff --git a/test/invite-tinc-up.test b/test/invite-tinc-up.test
new file mode 100755 (executable)
index 0000000..bc5d45b
--- /dev/null
@@ -0,0 +1,51 @@
+#!/bin/sh
+
+. ./testlib.sh
+
+# Initialize one node
+
+$tinc $c1 <<EOF
+init foo
+set DeviceType dummy
+set Address localhost
+set Port 32751
+start $r1
+EOF
+
+# Generate an invitation and let another node join the VPN
+
+sleep 1
+
+cat >$d1/invitation-created <<EOF
+#!/bin/sh
+echo Name = \$NODE >\$INVITATION_FILE
+echo Ifconfig = 93.184.216.34/24 >>\$INVITATION_FILE
+echo Route = 2606:2800:220:1::/64 2606:2800:220:1:248:1893:25c8:1946 >>\$INVITATION_FILE
+echo Route = 1.2.3.4 1234:: >>\$INVITATION_FILE
+$tinc $c1 export >>\$INVITATION_FILE
+EOF
+
+chmod u+x $d1/invitation-created
+
+$tinc $c1 invite bar | $tinc $c2 --batch join
+
+# Test equivalence of host config files
+
+cmp $d1/hosts/foo $d2/hosts/foo
+test "`grep ^Ed25519PublicKey $d1/hosts/bar`" = "`grep ^Ed25519PublicKey $d2/hosts/bar`"
+
+# Check if the tinc-up.invitation file is created and contains the right commands
+
+test -f $d2/tinc-up.invitation
+
+fgrep -q "93.184.216.34/24" $d2/tinc-up.invitation
+fgrep -q "2606:2800:220:1::/64" $d2/tinc-up.invitation
+fgrep -q "2606:2800:220:1:248:1893:25c8:1946" $d2/tinc-up.invitation
+fgrep -q "1234::" $d2/tinc-up.invitation && exit 1
+
+# Check that no tinc-up is created and that tinc-up.invitation is not executable
+
+test -x $d2/tinc-up.invitation && exit 1
+test -f $d2/tinc-up && exit 1
+
+$tinc $c1 stop