]> git.meshlink.io Git - meshlink/blob - test/blackbox/test_case_channel_conn_04/node_sim_peer.c
f2847130fd066daa130ca56c8f5c748496f5fa7a
[meshlink] / test / blackbox / test_case_channel_conn_04 / node_sim_peer.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 "../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 void channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *dat, size_t len);
40 static bool channel_accept(meshlink_handle_t *mesh, meshlink_channel_t *channel, uint16_t port, const void *dat, size_t len);
41
42 static struct sync_flag sigusr = {.mutex  = PTHREAD_MUTEX_INITIALIZER, .cond = PTHREAD_COND_INITIALIZER};
43 static int client_id = -1;
44
45 static void mesh_siguser1_signal_handler(int sig_num) {
46         (void)sig_num;
47
48         set_sync_flag(&sigusr, true);
49
50         return;
51 }
52
53 static bool channel_accept(meshlink_handle_t *mesh, meshlink_channel_t *channel, uint16_t port, const void *dat, size_t len) {
54         (void)dat;
55         (void)len;
56
57         assert(port == CHANNEL_PORT);
58
59         if(!strcmp(channel->node->name, "nut")) {
60                 meshlink_set_channel_receive_cb(mesh, channel, channel_receive_cb);
61                 mesh->priv = channel;
62
63                 return true;
64         }
65
66         return false;
67 }
68
69 /* channel receive callback */
70 static void channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *dat, size_t len) {
71         (void)mesh;
72         (void)channel;
73         (void)dat;
74         (void)len;
75
76         if(len == 0) {
77                 mesh_event_sock_send(client_id, ERR_NETWORK, NULL, 0);
78                 return;
79         }
80
81         if(!strcmp(channel->node->name, "nut") && !memcmp(dat, "test", 5)) {
82                 assert(meshlink_channel_send(mesh, channel, "reply", 5) >= 0);
83         }
84
85         return;
86 }
87
88 int main(int argc, char *argv[]) {
89         (void)argc;
90
91         struct timeval main_loop_wait = { 2, 0 };
92
93         // Import mesh event handler
94
95         if((argv[CMD_LINE_ARG_CLIENTID]) && (argv[CMD_LINE_ARG_IMPORTSTR])) {
96                 client_id = atoi(argv[CMD_LINE_ARG_CLIENTID]);
97                 mesh_event_sock_connect(argv[CMD_LINE_ARG_IMPORTSTR]);
98         }
99
100         // Setup required signals
101
102         setup_signals();
103         signal(SIGUSR1, mesh_siguser1_signal_handler);
104
105         // Run peer node instance
106
107         meshlink_handle_t *mesh = meshlink_open("testconf", argv[CMD_LINE_ARG_NODENAME],
108                                                 "test_channel_conn", atoi(argv[CMD_LINE_ARG_DEVCLASS]));
109         assert(mesh);
110         meshlink_set_log_cb(mesh, MESHLINK_DEBUG, meshlink_callback_logger);
111         meshlink_set_channel_accept_cb(mesh, channel_accept);
112
113         if(argv[CMD_LINE_ARG_INVITEURL]) {
114                 assert(meshlink_join(mesh, argv[CMD_LINE_ARG_INVITEURL]));
115         }
116
117         assert(meshlink_start(mesh));
118
119         assert(wait_sync_flag(&sigusr, 140));
120         meshlink_channel_t *channel = mesh->priv;
121         assert(meshlink_channel_send(mesh, channel, "failure", 7));
122
123         // All test steps executed - wait for signals to stop/start or close the mesh
124
125         while(test_running) {
126                 select(1, NULL, NULL, NULL, &main_loop_wait);
127         }
128
129         meshlink_close(mesh);
130
131         return EXIT_SUCCESS;
132 }