]> git.meshlink.io Git - meshlink/blobdiff - test/invite-join.c
Prevent meshlink_join() when the joining node is already part of a mesh.
[meshlink] / test / invite-join.c
index eee5fa96b016e72e716b2652e19f88e27dd879ed..52a922a89a9509695639dd88e90623255e039884 100644 (file)
@@ -2,11 +2,30 @@
 #include <unistd.h>
 #include <stdlib.h>
 #include <string.h>
+#include <sys/time.h>
 
 #include "meshlink.h"
 
 volatile bool baz_reachable = false;
 
+void log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) {
+       static struct timeval tv0;
+       struct timeval tv;
+
+       if(tv0.tv_sec == 0) {
+               gettimeofday(&tv0, NULL);
+       }
+
+       gettimeofday(&tv, NULL);
+       fprintf(stderr, "%u.%.03u ", (unsigned int)(tv.tv_sec - tv0.tv_sec), (unsigned int)tv.tv_usec / 1000);
+
+       if(mesh) {
+               fprintf(stderr, "(%s) ", mesh->name);
+       }
+
+       fprintf(stderr, "[%d] %s\n", level, text);
+}
+
 void status_cb(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable) {
        (void)mesh;
 
@@ -16,7 +35,9 @@ void status_cb(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable) {
 }
 
 int main() {
-       // Open two new meshlink instance.
+       meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_cb);
+
+       // Open thee new meshlink instance.
 
        meshlink_handle_t *mesh1 = meshlink_open("invite_join_conf.1", "foo", "invite-join", DEV_CLASS_BACKBONE);
 
@@ -25,6 +46,8 @@ int main() {
                return 1;
        }
 
+       meshlink_set_log_cb(mesh1, MESHLINK_DEBUG, log_cb);
+
        meshlink_handle_t *mesh2 = meshlink_open("invite_join_conf.2", "bar", "invite-join", DEV_CLASS_BACKBONE);
 
        if(!mesh2) {
@@ -32,6 +55,8 @@ int main() {
                return 1;
        }
 
+       meshlink_set_log_cb(mesh2, MESHLINK_DEBUG, log_cb);
+
        meshlink_handle_t *mesh3 = meshlink_open("invite_join_conf.3", "quux", "invite-join", DEV_CLASS_BACKBONE);
 
        if(!mesh3) {
@@ -39,6 +64,8 @@ int main() {
                return 1;
        }
 
+       meshlink_set_log_cb(mesh3, MESHLINK_DEBUG, log_cb);
+
        // Disable local discovery.
 
        meshlink_enable_discovery(mesh1, false);
@@ -69,6 +96,9 @@ int main() {
                return 1;
        }
 
+       fprintf(stderr, "Invitation URL for baz:  %s\n", baz_url);
+       fprintf(stderr, "Invitation URL for quux: %s\n", quux_url);
+
        // Have the second instance join the first.
 
        if(!meshlink_join(mesh2, baz_url)) {
@@ -76,8 +106,6 @@ int main() {
                return 1;
        }
 
-       free(baz_url);
-
        if(!meshlink_start(mesh2)) {
                fprintf(stderr, "Baz could not start\n");
                return 1;
@@ -110,6 +138,15 @@ int main() {
                return 1;
        }
 
+       // Check that an invitation cannot be used twice
+
+       if(meshlink_join(mesh3, baz_url)) {
+               fprintf(stderr, "Quux could join foo's mesh using an already used invitation\n");
+               return 1;
+       }
+
+       free(baz_url);
+
        // Check that nodes cannot join with expired invitations
 
        meshlink_set_invitation_timeout(mesh1, 0);
@@ -121,10 +158,34 @@ int main() {
 
        free(quux_url);
 
-       // Clean up.
+       // Check that existing nodes cannot join another mesh
+
+       char *corge_url = meshlink_invite(mesh3, NULL, "corge");
+
+       if(!corge_url) {
+               fprintf(stderr, "Quux could not generate an invitation for corge\n");
+               return 1;
+       }
+
+       fprintf(stderr, "Invitation URL for corge: %s\n", corge_url);
+
+       if(!meshlink_start(mesh3)) {
+               fprintf(stderr, "Quux could not start\n");
+               return 1;
+       }
 
        meshlink_stop(mesh2);
-       meshlink_stop(mesh1);
+
+       if(meshlink_join(mesh2, corge_url)) {
+               fprintf(stderr, "Bar could join twice\n");
+               return 1;
+       }
+
+       free(corge_url);
+
+       // Clean up.
+
+       meshlink_close(mesh3);
        meshlink_close(mesh2);
        meshlink_close(mesh1);