]> git.meshlink.io Git - meshlink/blob - test/blackbox/test_cases_submesh02/node_sim_app1node1.c
Ensure NDEBUG is not set in the test suite.
[meshlink] / test / blackbox / test_cases_submesh02 / node_sim_app1node1.c
1 /*
2     node_sim_peer.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 <time.h>
33 #include "../common/common_handlers.h"
34 #include "../common/test_step.h"
35 #include "../common/mesh_event_handler.h"
36 #include "../../utils.h"
37
38 #define CMD_LINE_ARG_NODENAME   1
39 #define CMD_LINE_ARG_DEVCLASS   2
40 #define CMD_LINE_ARG_CLIENTID   3
41 #define CMD_LINE_ARG_IMPORTSTR  4
42 #define CMD_LINE_ARG_INVITEURL  5
43 #define CHANNEL_PORT 1234
44
45 static void channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *dat, size_t len);
46 static bool channel_accept(meshlink_handle_t *mesh, meshlink_channel_t *channel, uint16_t port, const void *dat, size_t len);
47
48 static int client_id = -1;
49 static meshlink_handle_t *mesh = NULL;
50
51 static struct sync_flag peer_reachable = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER, .flag = false};
52 static struct sync_flag start_test = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER, .flag = false};
53 static struct sync_flag channel_opened = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER, .flag = false};
54 static struct sync_flag channel_data_recieved = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER, .flag = false};
55
56 static void send_event(mesh_event_t event) {
57         int attempts;
58
59         for(attempts = 0; attempts < 5; attempts += 1) {
60                 if(mesh_event_sock_send(client_id, event, NULL, 0)) {
61                         break;
62                 }
63         }
64
65         assert(attempts < 5);
66
67         return;
68 }
69
70 static bool channel_accept(meshlink_handle_t *mesh, meshlink_channel_t *channel, uint16_t port, const void *dat, size_t len) {
71         (void)dat;
72         (void)len;
73
74         assert(port == CHANNEL_PORT);
75
76         fprintf(stderr, "\tapp1node1 got channel request from %s\n", channel->node->name);
77
78         if(!strcmp(channel->node->name, "corenode1")) {
79                 fprintf(stderr, "\tapp1node1 accepting channel request from %s at %lu\n", channel->node->name, time(NULL));
80                 meshlink_set_channel_receive_cb(mesh, channel, channel_receive_cb);
81                 mesh->priv = channel;
82
83                 return true;
84         } else if(!strcmp(channel->node->name, "app1node2")) {
85                 fprintf(stderr, "\tapp1node1 accepting channel request from %s at %lu\n", channel->node->name, time(NULL));
86                 meshlink_set_channel_receive_cb(mesh, channel, channel_receive_cb);
87                 mesh->priv = channel;
88
89                 return true;
90         }
91
92         fprintf(stderr, "\tapp1node1 rejecting channel request from %s at %lu\n", channel->node->name, time(NULL));
93         return false;
94 }
95
96 /* channel receive callback */
97 static void channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *dat, size_t len) {
98         char data[100] = {0};
99         char *message = "Channel Message";
100
101         if(len == 0) {
102                 fprintf(stderr, "\tapp1node1 got error from %s at %lu\n", channel->node->name, time(NULL));
103                 send_event(ERR_NETWORK);
104                 return;
105         }
106
107         memcpy(data, dat, len);
108
109         fprintf(stderr, "\tapp1node1 got message from %s as %s\n", channel->node->name, data);
110
111         if(!strcmp(channel->node->name, "corenode1")) {
112                 if(!memcmp(dat, "Channel Message", len)) {
113                         set_sync_flag(&channel_data_recieved, true);
114                 } else if(!memcmp(dat, "failure", 7)) {
115                         assert(false);
116                 }
117         } else if(!strcmp(channel->node->name, "app1node2")) {
118                 if(!memcmp(dat, "Channel Message", len)) {
119                         assert(meshlink_channel_send(mesh, channel, message, strlen(message)) >= 0);
120                 } else if(!memcmp(dat, "failure", 7)) {
121                         assert(false);
122                 }
123         }
124
125         return;
126 }
127
128 static void poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t len) {
129         char *message = "Channel Message";
130         char *node = (char *)channel->node->name;
131         (void)len;
132         meshlink_set_channel_poll_cb(mesh, channel, NULL);
133         fprintf(stderr, "\tapp1node1's Channel request has been accepted by %s at : %lu\n", node, time(NULL));
134
135         if(0 == strcmp("corenode1", node)) {
136                 set_sync_flag(&channel_opened, true);
137         }
138
139         assert(meshlink_channel_send(mesh, channel, message, strlen(message)) >= 0);
140         return;
141 }
142
143
144 static void node_status_cb(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable) {
145         (void)mesh;
146
147         if(!strcasecmp(node->name, "corenode1")) {
148                 if(reachable) {
149                         fprintf(stderr, "\tNode corenode1 became reachable\n");
150                         set_sync_flag(&peer_reachable, true);
151                 }
152         }
153
154         return;
155 }
156
157 void mesh_start_test_handler(int signum) {
158         (void)signum;
159
160         fprintf(stderr, "Starting test in app1node1\n");
161         set_sync_flag(&start_test, true);
162 }
163
164 int main(int argc, char *argv[]) {
165         (void)argc;
166
167         struct timeval main_loop_wait = { 2, 0 };
168         meshlink_channel_t *channel = NULL;
169         meshlink_node_t *core_node = NULL;
170
171         fprintf(stderr, "\tMesh node 'app1node1' starting up........\n");
172
173         // Import mesh event handler
174
175         if((argv[CMD_LINE_ARG_CLIENTID]) && (argv[CMD_LINE_ARG_IMPORTSTR])) {
176                 client_id = atoi(argv[CMD_LINE_ARG_CLIENTID]);
177                 mesh_event_sock_connect(argv[CMD_LINE_ARG_IMPORTSTR]);
178         }
179
180         // Setup required signals
181
182         setup_signals();
183         signal(SIGIO, mesh_start_test_handler);
184
185         // Run peer node instance
186
187         mesh = meshlink_open("app1node1conf", argv[CMD_LINE_ARG_NODENAME],
188                              "test_channel_conn", atoi(argv[CMD_LINE_ARG_DEVCLASS]));
189         assert(mesh);
190         meshlink_set_log_cb(mesh, MESHLINK_DEBUG, meshlink_callback_logger);
191         meshlink_set_channel_accept_cb(mesh, channel_accept);
192         meshlink_set_node_status_cb(mesh, node_status_cb);
193
194         if(argv[CMD_LINE_ARG_INVITEURL]) {
195                 assert(meshlink_join(mesh, argv[CMD_LINE_ARG_INVITEURL]));
196         }
197
198         assert(meshlink_start(mesh));
199
200         send_event(NODE_STARTED);
201
202         // Wait for peer node to join
203
204         assert(wait_sync_flag(&peer_reachable, 15));
205         send_event(NODE_JOINED);
206
207         while(false == wait_sync_flag(&start_test, 10));
208
209         // Open a channel to peer node
210         core_node = meshlink_get_node(mesh, "corenode1");
211         assert(core_node);
212         fprintf(stderr, "\tapp1node1 Sending Channel request to corenode1 at : %lu\n", time(NULL));
213         channel = meshlink_channel_open(mesh, core_node, CHANNEL_PORT,
214                                         channel_receive_cb, NULL, 0);
215         meshlink_set_channel_poll_cb(mesh, channel, poll_cb);
216         assert(wait_sync_flag(&channel_opened, 15));
217         send_event(CHANNEL_OPENED);
218
219         assert(wait_sync_flag(&channel_data_recieved, 30));
220         send_event(CHANNEL_DATA_RECIEVED);
221
222         // All test steps executed - wait for signals to stop/start or close the mesh
223
224         while(test_running) {
225                 select(1, NULL, NULL, NULL, &main_loop_wait);
226         }
227
228         meshlink_close(mesh);
229
230         return EXIT_SUCCESS;
231 }