X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;ds=sidebyside;f=test%2Fblackbox%2Ftest_case_meta_conn_05%2Fnode_sim_peer.c;fp=test%2Fblackbox%2Ftest_case_meta_conn_05%2Fnode_sim_peer.c;h=a61e89e861bac41c12f6d5ca69e56a7f9e4b784b;hb=dc68da94af8fca91748579c84ef5ed798db7efab;hp=0000000000000000000000000000000000000000;hpb=1a7277c64d74ae5ae18c48ebe09a522ffe7c696b;p=meshlink diff --git a/test/blackbox/test_case_meta_conn_05/node_sim_peer.c b/test/blackbox/test_case_meta_conn_05/node_sim_peer.c new file mode 100644 index 00000000..a61e89e8 --- /dev/null +++ b/test/blackbox/test_case_meta_conn_05/node_sim_peer.c @@ -0,0 +1,67 @@ +/* + node_sim.c -- Implementation of Node Simulation for Meshlink Testing + for meta connection test case 01 - re-connection of + two nodes when relay node goes down + Copyright (C) 2018 Guus Sliepen + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ +#include +#include +#include "../common/common_handlers.h" +#include "../common/test_step.h" +#include "../common/mesh_event_handler.h" + +#define CMD_LINE_ARG_NODENAME 1 +#define CMD_LINE_ARG_DEVCLASS 2 +#define CMD_LINE_ARG_CLIENTID 3 +#define CMD_LINE_ARG_IMPORTSTR 4 +#define CMD_LINE_ARG_INVITEURL 5 + +int main(int argc, char *argv[]) { + struct timeval main_loop_wait = { 5, 0 }; + int client_id = -1; + + if((argv[3]) && (argv[4])) { + client_id = atoi(argv[3]); + mesh_event_sock_connect(argv[4]); + } + + /* Setup required signals */ + setup_signals(); + + /* Execute test steps */ + execute_open(argv[1], argv[2]); + + if(argv[5]) { + execute_join(argv[5]); + } + + execute_start(); + + if(client_id != -1) { + if(!mesh_event_sock_send(client_id, NODE_STARTED, NULL, 0)) { + fprintf(stderr, "Trying to resend mesh event\n"); + sleep(1); + } + } + + /* All test steps executed - wait for signals to stop/start or close the mesh */ + while(test_running) { + select(1, NULL, NULL, NULL, &main_loop_wait); + } + + execute_close(); +}