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