]> git.meshlink.io Git - meshlink/blob - test/blackbox/test_case_channel_conn_06/node_sim_nut.c
Ensure NDEBUG is not set in the test suite.
[meshlink] / test / blackbox / test_case_channel_conn_06 / node_sim_nut.c
1 /*
2     node_sim_nut.c -- Implementation of Node Simulation for Meshlink Testing
3                     for meta connection test case 01 - re-connection of
4                     two nodes when relay node goes down
5     Copyright (C) 2018  Guus Sliepen <guus@meshlink.io>
6
7     This program is free software; you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or
10     (at your option) any later version.
11
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License along
18     with this program; if not, write to the Free Software Foundation, Inc.,
19     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22 #ifdef NDEBUG
23 #undef NDEBUG
24 #endif
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <pthread.h>
30 #include <assert.h>
31 #include <signal.h>
32 #include "../common/common_handlers.h"
33 #include "../common/test_step.h"
34 #include "../common/mesh_event_handler.h"
35 #include "../../utils.h"
36
37 #define CMD_LINE_ARG_NODENAME   1
38 #define CMD_LINE_ARG_DEVCLASS   2
39 #define CMD_LINE_ARG_CLIENTID   3
40 #define CMD_LINE_ARG_IMPORTSTR  4
41 #define CMD_LINE_ARG_INVITEURL  5
42 #define CHANNEL_PORT 1234
43
44 static int client_id = -1;
45
46 static struct sync_flag peer_reachable = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER};
47 static struct sync_flag channel_opened = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER};
48 static struct sync_flag channel_closed = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER};
49 static struct sync_flag sigusr_received = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER};
50
51 static void send_event(mesh_event_t event);
52 static void node_status_cb(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable);
53
54 static void mesh_siguser1_signal_handler(int sig_num) {
55         (void)sig_num;
56
57         set_sync_flag(&sigusr_received, true);
58         return;
59 }
60
61 static void send_event(mesh_event_t event) {
62         bool send_ret = false;
63         int attempts;
64
65         for(attempts = 0; attempts < 5; attempts += 1) {
66                 send_ret = mesh_event_sock_send(client_id, event, NULL, 0);
67
68                 if(send_ret) {
69                         break;
70                 }
71         }
72
73         return;
74 }
75
76 static void node_status_cb(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable) {
77         (void)mesh;
78
79
80         if(!strcasecmp(node->name, "peer") && reachable) {
81                 set_sync_flag(&peer_reachable, true);
82         }
83
84         return;
85 }
86
87 static void poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t len) {
88         (void)len;
89         meshlink_set_channel_poll_cb(mesh, channel, NULL);
90         assert(meshlink_channel_send(mesh, channel, "test", 5) >= 0);
91         return;
92 }
93
94 static void channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *dat, size_t len) {
95         (void)mesh;
96
97
98         if(len == 0) {
99                 set_sync_flag(&channel_closed, true);
100                 send_event(ERR_NETWORK);
101                 return;
102         }
103
104         if(!strcmp(channel->node->name, "peer")) {
105                 if(len == 5 && !memcmp(dat, "reply", 5)) {
106                         set_sync_flag(&channel_opened, true);
107                 }
108         }
109
110         return;
111 }
112
113 int main(int argc, char *argv[]) {
114         (void)argc;
115
116         struct timeval main_loop_wait = { 2, 0 };
117
118         // Import mesh event handler
119
120         if((argv[CMD_LINE_ARG_CLIENTID]) && (argv[CMD_LINE_ARG_IMPORTSTR])) {
121                 client_id = atoi(argv[CMD_LINE_ARG_CLIENTID]);
122                 mesh_event_sock_connect(argv[CMD_LINE_ARG_IMPORTSTR]);
123         }
124
125         // Setup required signals
126
127         setup_signals();
128         signal(SIGUSR1, mesh_siguser1_signal_handler);
129
130         // Execute test steps
131
132         meshlink_handle_t *mesh = meshlink_open("testconf", argv[CMD_LINE_ARG_NODENAME],
133                                                 "test_channel_conn", atoi(argv[CMD_LINE_ARG_DEVCLASS]));
134         assert(mesh);
135         meshlink_set_log_cb(mesh, MESHLINK_DEBUG, meshlink_callback_logger);
136         meshlink_set_node_status_cb(mesh, node_status_cb);
137
138         if(argv[CMD_LINE_ARG_INVITEURL]) {
139                 assert(meshlink_join(mesh, argv[CMD_LINE_ARG_INVITEURL]));
140         }
141
142         assert(meshlink_start(mesh));
143
144         // Wait for peer node to join
145
146         assert(wait_sync_flag(&peer_reachable, 30));
147         send_event(NODE_JOINED);
148
149         // Open a channel to peer node
150
151         meshlink_node_t *peer_node = meshlink_get_node(mesh, "peer");
152         assert(peer_node);
153         meshlink_channel_t *channel = meshlink_channel_open(mesh, peer_node, CHANNEL_PORT,
154                                       channel_receive_cb, NULL, 0);
155         meshlink_set_channel_poll_cb(mesh, channel, poll_cb);
156
157         assert(wait_sync_flag(&channel_opened, 10));
158         send_event(CHANNEL_OPENED);
159         assert(wait_sync_flag(&sigusr_received, 10));
160
161         sleep(40);
162         assert(meshlink_channel_send(mesh, channel, "after", 6) >= 0);
163
164
165         assert(wait_sync_flag(&channel_closed, 140));
166
167
168         // All test steps executed - wait for signals to stop/start or close the mesh
169         while(test_running) {
170                 select(1, NULL, NULL, NULL, &main_loop_wait);
171         }
172
173         meshlink_close(mesh);
174 }