]> git.meshlink.io Git - meshlink/blob - test/blackbox/test_case_channel_conn_08/node_sim_nut.c
Add the blackbox channel connection tests.
[meshlink] / test / blackbox / test_case_channel_conn_08 / 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 #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 "../common/common_handlers.h"
28 #include "../common/test_step.h"
29 #include "../common/mesh_event_handler.h"
30 #include "../../utils.h"
31
32 #define CMD_LINE_ARG_NODENAME   1
33 #define CMD_LINE_ARG_DEVCLASS   2
34 #define CMD_LINE_ARG_CLIENTID   3
35 #define CMD_LINE_ARG_IMPORTSTR  4
36 #define CMD_LINE_ARG_INVITEURL  5
37 #define CHANNEL_PORT 1234
38
39 static int client_id = -1;
40
41 static struct sync_flag peer_reachable = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER};
42 static struct sync_flag channel_opened = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER};
43 static struct sync_flag channel_closed = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER};
44
45 static void send_event(mesh_event_t event);
46 static void node_status_cb(meshlink_handle_t *mesh, meshlink_node_t *node,
47                            bool reachable);
48
49 static void send_event(mesh_event_t event) {
50         int attempts;
51
52         for(attempts = 0; attempts < 5; attempts += 1) {
53                 if(mesh_event_sock_send(client_id, event, NULL, 0)) {
54                         break;
55                 }
56         }
57
58         assert(attempts < 5);
59
60         return;
61 }
62
63 static void node_status_cb(meshlink_handle_t *mesh, meshlink_node_t *node,
64                            bool reachable) {
65         if(!strcasecmp(node->name, "peer")) {
66                 if(reachable) {
67                         set_sync_flag(&peer_reachable, true);
68                 } else {
69                         peer_reachable.flag = false;
70                 }
71         }
72
73         return;
74 }
75
76 static void poll_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t len) {
77         (void)len;
78         meshlink_set_channel_poll_cb(mesh, channel, NULL);
79         assert(meshlink_channel_send(mesh, channel, "test", 5) >= 0);
80         return;
81 }
82
83 /* channel receive callback */
84 static void channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *dat, size_t len) {
85         if(len == 0) {
86                 //send_event(ERR_NETWORK);
87                 return;
88         }
89
90         if(!strcmp(channel->node->name, "peer")) {
91                 if(!memcmp(dat, "reply", 5)) {
92                         set_sync_flag(&channel_opened, true);
93                 } else if(!memcmp(dat, "failure", 7)) {
94                         assert(false);
95                 }
96         }
97
98         return;
99 }
100
101 int main(int argc, char *argv[]) {
102         struct timeval main_loop_wait = { 5, 0 };
103         int i;
104
105         // Import mesh event handler
106
107         if((argv[CMD_LINE_ARG_CLIENTID]) && (argv[CMD_LINE_ARG_IMPORTSTR])) {
108                 client_id = atoi(argv[CMD_LINE_ARG_CLIENTID]);
109                 mesh_event_sock_connect(argv[CMD_LINE_ARG_IMPORTSTR]);
110         }
111
112         setup_signals();
113
114         // Execute test steps
115
116         meshlink_handle_t *mesh = meshlink_open("testconf", argv[CMD_LINE_ARG_NODENAME],
117                                                 "test_channel_conn", atoi(argv[CMD_LINE_ARG_DEVCLASS]));
118         assert(mesh);
119         meshlink_set_log_cb(mesh, MESHLINK_DEBUG, meshlink_callback_logger);
120         meshlink_set_node_status_cb(mesh, node_status_cb);
121
122         if(argv[CMD_LINE_ARG_INVITEURL]) {
123                 assert(meshlink_join(mesh, argv[CMD_LINE_ARG_INVITEURL]));
124         }
125
126         assert(meshlink_start(mesh));
127
128         // Wait for peer node to join
129
130         assert(wait_sync_flag(&peer_reachable, 10));
131         send_event(NODE_JOINED);
132
133         // Open a channel to peer node
134
135         meshlink_node_t *peer_node = meshlink_get_node(mesh, "peer");
136         assert(peer_node);
137         meshlink_channel_t *channel = meshlink_channel_open(mesh, peer_node, CHANNEL_PORT,
138                                       channel_receive_cb, NULL, 0);
139         meshlink_set_channel_poll_cb(mesh, channel, poll_cb);
140
141         assert(wait_sync_flag(&channel_opened, 10));
142         send_event(CHANNEL_OPENED);
143
144         // Restarting the node instance
145
146         meshlink_stop(mesh);
147         meshlink_start(mesh);
148
149         assert(wait_sync_flag(&peer_reachable, 60));
150         send_event(NODE_RESTARTED);
151
152         // All test steps executed - wait for signals to stop/start or close the mesh
153
154         while(test_running) {
155                 select(1, NULL, NULL, NULL, &main_loop_wait);
156         }
157
158         meshlink_close(mesh);
159 }