]> git.meshlink.io Git - meshlink/blob - test/trio.c
2cb14bd301af273c37c9948a6efc58cd80be96c8
[meshlink] / test / trio.c
1 #define _GNU_SOURCE
2
3 #include <stdio.h>
4 #include <string.h>
5 #include <unistd.h>
6 #include <errno.h>
7 #include <assert.h>
8 #include <sys/time.h>
9
10 #include "meshlink.h"
11 #include "devtools.h"
12 #include "utils.h"
13
14 static void log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) {
15         (void)mesh;
16
17         static struct timeval tv0;
18         struct timeval tv;
19
20         if(tv0.tv_sec == 0) {
21                 gettimeofday(&tv0, NULL);
22         }
23
24         gettimeofday(&tv, NULL);
25         fprintf(stderr, "%u.%.03u ", (unsigned int)(tv.tv_sec - tv0.tv_sec), (unsigned int)tv.tv_usec / 1000);
26
27         if(mesh) {
28                 fprintf(stderr, "(%s) ", mesh->name);
29         }
30
31         fprintf(stderr, "[%d] %s\n", level, text);
32 }
33
34 static bool received = false;
35
36 static void receive_cb(meshlink_handle_t *mesh, meshlink_node_t *source, const void *data, size_t len) {
37         (void)mesh;
38         (void)source;
39
40         fprintf(stderr, "RECEIVED SOMETHING\n");
41
42         if(len == 5 && !memcmp(data, "Hello", 5)) {
43                 received = true;
44         }
45 }
46
47 int main() {
48         // Create three instances.
49
50         const char *name[3] = {"foo", "bar", "baz"};
51         meshlink_handle_t *mesh[3];
52         char *data[3];
53
54         for(int i = 0; i < 3; i++) {
55                 char *path;
56                 asprintf(&path, "trio_conf.%d", i);
57                 assert(path);
58
59                 mesh[i] = meshlink_open(path, name[i], "trio", DEV_CLASS_BACKBONE);
60                 assert(mesh[i]);
61
62                 data[i] = meshlink_export(mesh[i]);
63                 assert(data[i]);
64         }
65
66         // first node knows the two other nodes
67
68         for(int i = 1; i < 3; i++) {
69                 assert(meshlink_import(mesh[i], data[0]));
70                 assert(meshlink_import(mesh[0], data[i]));
71
72                 assert(meshlink_get_node(mesh[i], name[0]));
73                 assert(meshlink_get_node(mesh[0], name[i]));
74         }
75
76         // second and third node should not know each other yet
77
78         assert(!meshlink_get_node(mesh[1], name[2]));
79         assert(!meshlink_get_node(mesh[2], name[1]));
80
81         // start the nodes
82
83         for(int i = 0; i < 3; i++) {
84                 meshlink_start(mesh[i]);
85         }
86
87         // the nodes should now learn about each other
88
89         assert_after(meshlink_get_node(mesh[1], name[2]), 5);
90         assert_after(meshlink_get_node(mesh[2], name[1]), 5);
91
92         // Send a packet, expect it is received
93
94         meshlink_set_receive_cb(mesh[1], receive_cb);
95         assert_after((meshlink_send(mesh[2], meshlink_get_node(mesh[2], name[1]), "Hello", 5), received), 15);
96
97         // Check that the second and third node have autoconnected to each other
98
99         devtool_edge_t *edges = NULL;
100         size_t nedges = 0;
101         assert_after((edges = devtool_get_all_edges(mesh[1], edges, &nedges), nedges == 3), 15);
102
103         // Stop the first node
104
105         meshlink_stop(mesh[0]);
106         sleep(1);
107
108         // Communication should still be possible
109
110         assert_after((meshlink_send(mesh[2], meshlink_get_node(mesh[2], name[1]), "Hello", 5), received), 15);
111
112         // Stop the other nodes
113
114         for(int i = 1; i < 3; i++) {
115                 meshlink_stop(mesh[i]);
116         }
117
118         sleep(1);
119
120         // Start just the other two nodes
121
122         meshlink_set_log_cb(mesh[1], MESHLINK_DEBUG, log_cb);
123
124         for(int i = 1; i < 3; i++) {
125                 meshlink_start(mesh[i]);
126         }
127
128         assert(meshlink_get_node(mesh[1], name[2]));
129         assert(meshlink_get_node(mesh[2], name[1]));
130
131         // Communication should still be possible
132
133         received = false;
134         assert_after((meshlink_send(mesh[2], meshlink_get_node(mesh[2], name[1]), "Hello", 5), received), 25);
135
136         // Clean up.
137
138         for(int i = 0; i < 3; i++) {
139                 meshlink_close(mesh[i]);
140         }
141 }