]> git.meshlink.io Git - meshlink/blobdiff - test/basic.c
Refactor the non-blackbox test suite.
[meshlink] / test / basic.c
index b373581dae76145f621b25bedf1c236caa7d1418..e73766792b481ce3f04de1c23f9e66bbba003300 100644 (file)
@@ -1,62 +1,64 @@
+#include <stdio.h>
 #include <string.h>
+#include <unistd.h>
+#include <errno.h>
+#include <sys/time.h>
+#include <assert.h>
 
 #include "meshlink.h"
+#include "utils.h"
+
+int main() {
+       meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_cb);
 
-int main(int argc, char *argv[]) {
        // Open a new meshlink instance.
 
-       meshlink_handle_t *mesh = meshlink_open("basic_conf", "foo");
-       if(!mesh)
-               return 1;
+       assert(meshlink_destroy("basic_conf"));
+       meshlink_handle_t *mesh = meshlink_open("basic_conf", "foo", "basic", DEV_CLASS_BACKBONE);
+       assert(mesh);
+
+       meshlink_set_log_cb(mesh, MESHLINK_DEBUG, log_cb);
 
        // Check that our own node exists.
 
-       meshlink_node_t *self = meshlink_get_node(mesh, "foo");
-       if(!self)
-               return 1;
-       if(strcmp(self->name, "foo"))
-               return 1;
+       meshlink_node_t *self = meshlink_get_self(mesh);
+       assert(self);
+       assert(!strcmp(self->name, "foo"));
 
        // Start and stop the mesh.
 
-       if(!meshlink_start(mesh))
-               return 1;
+       assert(meshlink_start(mesh));
        meshlink_stop(mesh);
 
        // Make sure we can start and stop the mesh again.
 
-       if(!meshlink_start(mesh))
-               return 1;
+       assert(meshlink_start(mesh));
        meshlink_stop(mesh);
 
        // Close the mesh and open it again, now with a different name parameter.
 
        meshlink_close(mesh);
+       mesh = meshlink_open("basic_conf", "bar", "basic", DEV_CLASS_BACKBONE);
+       assert(mesh);
 
        // Check that the name is ignored now, and that we still are "foo".
 
-       mesh = meshlink_open("basic_conf", "bar");
-       if(!mesh)
-               return 1;
-
-       if(meshlink_get_node(mesh, "bar"))
-               return 1;
-
-       self = meshlink_get_node(mesh, "foo");
-       if(!self)
-               return 1;
-       if(strcmp(self->name, "foo"))
-               return 1;
+       assert(!meshlink_get_node(mesh, "bar"));
+       self = meshlink_get_self(mesh);
+       assert(self);
+       assert(!strcmp(self->name, "foo"));
 
        // Start and stop the mesh.
 
-       if(!meshlink_start(mesh))
-               return 1;
+       assert(meshlink_start(mesh));
        meshlink_stop(mesh);
 
        // That's it.
 
        meshlink_close(mesh);
 
-       return 0;
+       // Destroy the mesh.
+
+       assert(meshlink_destroy("basic_conf"));
+       assert(access("basic_conf", F_OK) == -1 && errno == ENOENT);
 }