]> git.meshlink.io Git - meshlink/blob - test/basic.c
Use a separate lockfile to lock the configuration directory.
[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         meshlink_stop(mesh);
49
50         // Close the mesh and open it again, now with a different name parameter.
51
52         meshlink_close(mesh);
53         mesh = meshlink_open("basic_conf", "bar", "basic", DEV_CLASS_BACKBONE);
54         assert(mesh);
55
56         // Check that the name is ignored now, and that we still are "foo".
57
58         assert(!meshlink_get_node(mesh, "bar"));
59         self = meshlink_get_self(mesh);
60         assert(self);
61         assert(!strcmp(self->name, "foo"));
62
63         // Start and stop the mesh.
64
65         assert(meshlink_start(mesh));
66         meshlink_stop(mesh);
67         meshlink_close(mesh);
68
69         // Destroy the mesh.
70
71         assert(meshlink_destroy("basic_conf"));
72
73         // Check that the configuration directory is completely empty.
74
75         DIR *dir = opendir("basic_conf");
76         assert(dir);
77         struct dirent *ent;
78
79         while((ent = readdir(dir))) {
80                 assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, ".."));
81         }
82
83         closedir(dir);
84 }