]> git.meshlink.io Git - meshlink/blob - test/blackbox/run_blackbox_tests/test_cases_channel_close.c
Fix compiler warnings in the test suites.
[meshlink] / test / blackbox / run_blackbox_tests / test_cases_channel_close.c
1 /*
2     test_cases_channel_close.c -- Execution of specific meshlink black box test cases
3     Copyright (C) 2018  Guus Sliepen <guus@meshlink.io>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "execute_tests.h"
21 #include "test_cases_channel_close.h"
22 #include "../common/containers.h"
23 #include "../common/test_step.h"
24 #include "../common/common_handlers.h"
25 #include <stdlib.h>
26 #include <stdarg.h>
27 #include <setjmp.h>
28 #include <cmocka.h>
29 #include <assert.h>
30 #include <string.h>
31
32 static void test_case_mesh_channel_close_01(void **state);
33 static bool test_steps_mesh_channel_close_01(void);
34 static void test_case_mesh_channel_close_02(void **state);
35 static bool test_steps_mesh_channel_close_02(void);
36
37 /* State structure for meshlink_channel_close Test Case #1 */
38 static black_box_state_t test_mesh_channel_close_01_state = {
39         .test_case_name = "test_case_mesh_channel_close_01",
40 };
41
42 /* State structure for meshlink_channel_close Test Case #2 */
43 static black_box_state_t test_mesh_channel_close_02_state = {
44         .test_case_name = "test_case_mesh_channel_close_02",
45 };
46
47 /* Execute meshlink_channel_close Test Case # 1*/
48 static void test_case_mesh_channel_close_01(void **state) {
49         execute_test(test_steps_mesh_channel_close_01, state);
50         return;
51 }
52
53 /* Test Steps for meshlink_channel_close Test Case # 1*/
54 static bool test_steps_mesh_channel_close_01(void) {
55         meshlink_destroy("chan_close_conf.3");
56         meshlink_destroy("chan_close_conf.4");
57
58         // Open two new meshlink instance.
59         meshlink_handle_t *mesh1 = meshlink_open("chan_close_conf.3", "foo", "channels", DEV_CLASS_BACKBONE);
60         assert(mesh1 != NULL);
61
62         meshlink_handle_t *mesh2 = meshlink_open("chan_close_conf.4", "bar", "channels", DEV_CLASS_BACKBONE);
63         assert(mesh2 != NULL);
64
65         if(!mesh2) {
66                 fprintf(stderr, "Could not initialize configuration for bar\n");
67                 return false;
68         }
69
70         char *exp = meshlink_export(mesh1);
71         assert(exp != NULL);
72         assert(meshlink_import(mesh2, exp));
73         free(exp);
74         exp = meshlink_export(mesh2);
75         assert(exp != NULL);
76         assert(meshlink_import(mesh1, exp));
77         free(exp);
78
79         // Start both instances
80         assert(meshlink_start(mesh1));
81         assert(meshlink_start(mesh2));
82         sleep(2);
83
84         // Open a channel from foo to bar.
85
86         meshlink_node_t *bar = meshlink_get_node(mesh1, "bar");
87         assert(bar != NULL);
88         meshlink_channel_t *channel = meshlink_channel_open(mesh1, bar, 7, NULL, NULL, 0);
89         assert(channel != NULL);
90
91         meshlink_channel_close(NULL, channel);
92         assert_int_equal(meshlink_errno, MESHLINK_EINVAL);
93
94
95         // Clean up.
96
97         meshlink_close(mesh2);
98         meshlink_close(mesh1);
99         meshlink_destroy("chan_close_conf.3");
100         meshlink_destroy("chan_close_conf.4");
101         return true;
102 }
103
104 /* Execute meshlink_channel_close Test Case # 2*/
105 static void test_case_mesh_channel_close_02(void **state) {
106         execute_test(test_steps_mesh_channel_close_02, state);
107         return;
108 }
109
110 /* Test Steps for meshlink_channel_close Test Case # 2*/
111 static bool test_steps_mesh_channel_close_02(void) {
112         meshlink_destroy("chan_close_conf.5");
113         // Open two new meshlink instance.
114
115         meshlink_handle_t *mesh = meshlink_open("chan_close_conf.5", "foo", "channels", DEV_CLASS_BACKBONE);
116         assert(mesh != NULL);
117
118         // Start both instances
119         assert(meshlink_start(mesh));
120
121         // Pass NULL as mesh handle
122         meshlink_channel_close(mesh, NULL);
123         assert_int_equal(meshlink_errno, MESHLINK_EINVAL);
124
125         // Clean up.
126
127         meshlink_close(mesh);
128         meshlink_destroy("chan_close_conf.5");
129         return true;
130 }
131
132 int test_meshlink_channel_close(void) {
133         const struct CMUnitTest blackbox_channel_close_tests[] = {
134                 cmocka_unit_test_prestate_setup_teardown(test_case_mesh_channel_close_01, NULL, NULL,
135                                 (void *)&test_mesh_channel_close_01_state),
136                 cmocka_unit_test_prestate_setup_teardown(test_case_mesh_channel_close_02, NULL, NULL,
137                                 (void *)&test_mesh_channel_close_02_state)
138         };
139
140         total_tests += sizeof(blackbox_channel_close_tests) / sizeof(blackbox_channel_close_tests[0]);
141
142         return cmocka_run_group_tests(blackbox_channel_close_tests, NULL, NULL);
143 }