]> git.meshlink.io Git - meshlink/blob - test/basic.c
Never automatically try to bind to ports >= 32768.
[meshlink] / test / basic.c
1 #ifdef NDEBUG
2 #undef NDEBUG
3 #endif
4
5 #include <stdio.h>
6 #include <string.h>
7 #include <unistd.h>
8 #include <errno.h>
9 #include <sys/time.h>
10 #include <assert.h>
11 #include <dirent.h>
12
13 #include "meshlink.h"
14 #include "utils.h"
15
16 int main() {
17         meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_cb);
18
19         // Open a new meshlink instance.
20
21         assert(meshlink_destroy("basic_conf"));
22         meshlink_handle_t *mesh = meshlink_open("basic_conf", "foo", "basic", DEV_CLASS_BACKBONE);
23         assert(mesh);
24
25         // Check that we can't open a second instance of the same node.
26
27         meshlink_handle_t *mesh2 = meshlink_open("basic_conf", "foo", "basic", DEV_CLASS_BACKBONE);
28         assert(!mesh2);
29
30         // Check that we cannot destroy an instance that is in use.
31
32         assert(!meshlink_destroy("basic_conf"));
33
34         // Check that our own node exists.
35
36         meshlink_node_t *self = meshlink_get_self(mesh);
37         assert(self);
38         assert(!strcmp(self->name, "foo"));
39
40         // Start and stop the mesh.
41
42         assert(meshlink_start(mesh));
43         meshlink_stop(mesh);
44
45         // Make sure we can start and stop the mesh again.
46
47         assert(meshlink_start(mesh));
48         assert(meshlink_start(mesh));
49         meshlink_stop(mesh);
50         meshlink_stop(mesh);
51
52         // Close the mesh and open it again, now with a different name parameter.
53
54         meshlink_close(mesh);
55         mesh = meshlink_open("basic_conf", "bar", "basic", DEV_CLASS_BACKBONE);
56         assert(mesh);
57
58         // Check that the name is ignored now, and that we still are "foo".
59
60         assert(!meshlink_get_node(mesh, "bar"));
61         self = meshlink_get_self(mesh);
62         assert(self);
63         assert(!strcmp(self->name, "foo"));
64
65         // Start and stop the mesh.
66
67         assert(meshlink_start(mesh));
68         meshlink_stop(mesh);
69         meshlink_close(mesh);
70
71         // Check that messing with the config directory will create a new instance.
72
73         assert(unlink("basic_conf/current/meshlink.conf") == 0);
74         mesh = meshlink_open("basic_conf", "bar", "basic", DEV_CLASS_BACKBONE);
75         assert(mesh);
76         assert(!meshlink_get_node(mesh, "foo"));
77         self = meshlink_get_self(mesh);
78         assert(self);
79         assert(!strcmp(self->name, "bar"));
80         assert(access("basic_conf/new", X_OK) == -1 && errno == ENOENT);
81         meshlink_close(mesh);
82
83         assert(rename("basic_conf/current", "basic_conf/new") == 0);
84         mesh = meshlink_open("basic_conf", "baz", "basic", DEV_CLASS_BACKBONE);
85         assert(mesh);
86         assert(!meshlink_get_node(mesh, "bar"));
87         self = meshlink_get_self(mesh);
88         assert(self);
89         assert(!strcmp(self->name, "baz"));
90         assert(access("basic_conf/new", X_OK) == -1 && errno == ENOENT);
91         meshlink_close(mesh);
92
93         // Destroy the mesh.
94
95         assert(meshlink_destroy("basic_conf"));
96
97         // Check that the configuration directory is completely empty.
98
99         DIR *dir = opendir("basic_conf");
100         assert(dir);
101         struct dirent *ent;
102
103         while((ent = readdir(dir))) {
104                 assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, ".."));
105         }
106
107         closedir(dir);
108
109         // Check that we can destroy it again.
110
111         assert(meshlink_destroy("basic_conf"));
112 }