]> git.meshlink.io Git - meshlink/blob - test/blackbox/test_case_channel_conn_03/node_sim_peer.c
Ensure NDEBUG is not set in the test suite.
[meshlink] / test / blackbox / test_case_channel_conn_03 / 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
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 "../common/common_handlers.h"
32 #include "../common/test_step.h"
33 #include "../common/mesh_event_handler.h"
34
35 #define CMD_LINE_ARG_NODENAME   1
36 #define CMD_LINE_ARG_DEVCLASS   2
37 #define CMD_LINE_ARG_CLIENTID   3
38 #define CMD_LINE_ARG_IMPORTSTR  4
39 #define CMD_LINE_ARG_INVITEURL  5
40 #define CHANNEL_PORT 1234
41
42 static int client_id = -1;
43
44 static void channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *dat, size_t len);
45
46 static bool channel_accept(meshlink_handle_t *mesh, meshlink_channel_t *channel, uint16_t port, const void *dat, size_t len) {
47         (void)dat;
48         (void)len;
49
50         assert(port == CHANNEL_PORT);
51
52         if(!strcmp(channel->node->name, "nut")) {
53                 meshlink_set_channel_receive_cb(mesh, channel, channel_receive_cb);
54                 mesh->priv = channel;
55
56                 return true;
57         }
58
59         return false;
60 }
61
62 static void channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *dat, size_t len) {
63         if(len == 0) {
64                 assert(mesh_event_sock_send(client_id, ERR_NETWORK, NULL, 0));
65                 return;
66         }
67
68         if(!strcmp(channel->node->name, "nut")) {
69                 if(!memcmp(dat, "test", 5)) {
70                         assert(meshlink_channel_send(mesh, channel, "reply", 5) >= 0);
71                 } else if(!memcmp(dat, "after", 5)) {
72                         assert(mesh_event_sock_send(client_id, CHANNEL_DATA_RECIEVED, NULL, 0));
73                 }
74         }
75
76         return;
77 }
78
79 int main(int argc, char *argv[]) {
80         (void)argc;
81
82         struct timeval main_loop_wait = { 2, 0 };
83
84         // Import mesh event handler
85
86         if((argv[CMD_LINE_ARG_CLIENTID]) && (argv[CMD_LINE_ARG_IMPORTSTR])) {
87                 client_id = atoi(argv[CMD_LINE_ARG_CLIENTID]);
88                 mesh_event_sock_connect(argv[CMD_LINE_ARG_IMPORTSTR]);
89         }
90
91         // Run peer node instance
92
93         setup_signals();
94
95         meshlink_handle_t *mesh = meshlink_open("testconf", argv[CMD_LINE_ARG_NODENAME],
96                                                 "test_channel_conn", atoi(argv[CMD_LINE_ARG_DEVCLASS]));
97         assert(mesh);
98         meshlink_set_log_cb(mesh, MESHLINK_DEBUG, meshlink_callback_logger);
99         meshlink_set_channel_accept_cb(mesh, channel_accept);
100
101         if(argv[CMD_LINE_ARG_INVITEURL]) {
102                 assert(meshlink_join(mesh, argv[CMD_LINE_ARG_INVITEURL]));
103         }
104
105         assert(meshlink_start(mesh));
106
107         // All test steps executed - wait for signals to stop/start or close the mesh
108         while(test_running) {
109                 select(1, NULL, NULL, NULL, &main_loop_wait);
110         }
111
112         meshlink_close(mesh);
113
114         return EXIT_SUCCESS;
115 }