]> git.meshlink.io Git - meshlink/blob - test/blackbox/test_case_meta_conn_02/node_sim_relay.c
Fix __warn_unused_result__, add more of it and fix the resulting warnings.
[meshlink] / test / blackbox / test_case_meta_conn_02 / node_sim_relay.c
1 /*
2     node_sim.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 "../common/common_handlers.h"
24 #include "../common/test_step.h"
25 #include "../common/mesh_event_handler.h"
26
27 #define CMD_LINE_ARG_NODENAME   1
28 #define CMD_LINE_ARG_DEVCLASS   2
29 #define CMD_LINE_ARG_CLIENTID   3
30 #define CMD_LINE_ARG_IMPORTSTR  4
31 #define CMD_LINE_ARG_INVITEURL  5
32
33 int main(int argc, char *argv[]) {
34         (void)argc;
35
36         struct timeval main_loop_wait = { 5, 0 };
37
38         int client_id = -1;
39
40         if((argv[CMD_LINE_ARG_CLIENTID]) && (argv[CMD_LINE_ARG_IMPORTSTR])) {
41                 client_id = atoi(argv[CMD_LINE_ARG_CLIENTID]);
42                 mesh_event_sock_connect(argv[CMD_LINE_ARG_IMPORTSTR]);
43         }
44
45         /* Setup required signals */
46         setup_signals();
47
48         /* Execute test steps */
49         execute_open(argv[CMD_LINE_ARG_NODENAME], argv[CMD_LINE_ARG_DEVCLASS]);
50         execute_start();
51
52         if(client_id != -1) {
53                 if(!mesh_event_sock_send(client_id, NODE_STARTED, NULL, 0)) {
54                         fprintf(stderr, "Trying to resend mesh event\n");
55                         sleep(1);
56                 }
57         }
58
59         /* All test steps executed - wait for signals to stop/start or close the mesh */
60         while(test_running) {
61                 select(1, NULL, NULL, NULL, &main_loop_wait);
62         }
63
64         execute_close();
65         assert(meshlink_destroy(argv[1]));
66 }