]> git.meshlink.io Git - meshlink/blob - test/blackbox/run_blackbox_tests/test_cases_get_port.c
Fix __warn_unused_result__, add more of it and fix the resulting warnings.
[meshlink] / test / blackbox / run_blackbox_tests / test_cases_get_port.c
1 /*
2     test_cases_get_port.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 #ifdef NDEBUG
21 #undef NDEBUG
22 #endif
23
24 #include "execute_tests.h"
25 #include "test_cases_get_port.h"
26 #include "../common/containers.h"
27 #include "../common/test_step.h"
28 #include "../common/common_handlers.h"
29 #include <stdlib.h>
30 #include <stdarg.h>
31 #include <setjmp.h>
32 #include <cmocka.h>
33 #include <assert.h>
34 #include <string.h>
35
36 static void test_case_mesh_get_port_01(void **state);
37 static bool test_steps_mesh_get_port_01(void);
38 static void test_case_mesh_get_port_02(void **state);
39 static bool test_steps_mesh_get_port_02(void);
40
41 /* State structure for meshlink_get_port Test Case #1 */
42 static black_box_state_t test_mesh_get_port_01_state = {
43         .test_case_name = "test_case_mesh_get_port_01",
44 };
45
46 /* State structure for meshlink_get_port Test Case #2 */
47 static black_box_state_t test_mesh_get_port_02_state = {
48         .test_case_name = "test_case_mesh_get_port_02",
49 };
50
51 /* Execute meshlink_get_port Test Case # 1 */
52 static void test_case_mesh_get_port_01(void **state) {
53         execute_test(test_steps_mesh_get_port_01, state);
54 }
55
56 /* Test Steps for meshlink_get_port Test Case # 1
57
58     Test Steps:
59     1. Open node instance
60     2. Run the node instance
61     3. Obtain port of that mesh using meshlink_get_port API
62
63     Expected Result:
64     API returns valid port number.
65 */
66 static bool test_steps_mesh_get_port_01(void) {
67         meshlink_handle_t *mesh = meshlink_open("port_conf", "foo", "chat", DEV_CLASS_STATIONARY);
68         assert(mesh);
69         assert(meshlink_start(mesh));
70
71         int port = meshlink_get_port(mesh);
72         assert_int_not_equal(port, -1);
73
74         meshlink_close(mesh);
75         assert(meshlink_destroy("port_conf"));
76         return true;
77 }
78
79 /* Execute meshlink_get_port Test Case # 2 */
80 static void test_case_mesh_get_port_02(void **state) {
81         execute_test(test_steps_mesh_get_port_02, state);
82 }
83
84 /* Test Steps for meshlink_get_port Test Case # 2 - Invalid case
85
86     Test Steps:
87     1. Pass NULL as mesh handle argument to meshlink_get_port API
88
89     Expected Result:
90     Reports error successfully by returning -1
91 */
92 static bool test_steps_mesh_get_port_02(void) {
93         int port = meshlink_get_port(NULL);
94         assert_int_equal(port, -1);
95
96         return true;
97 }
98
99 int test_meshlink_get_port(void) {
100         const struct CMUnitTest blackbox_get_port_tests[] = {
101                 cmocka_unit_test_prestate_setup_teardown(test_case_mesh_get_port_01, NULL, NULL,
102                                 (void *)&test_mesh_get_port_01_state),
103                 cmocka_unit_test_prestate_setup_teardown(test_case_mesh_get_port_02, NULL, NULL,
104                                 (void *)&test_mesh_get_port_02_state)
105         };
106
107         total_tests += sizeof(blackbox_get_port_tests) / sizeof(blackbox_get_port_tests[0]);
108
109         return cmocka_run_group_tests(blackbox_get_port_tests, NULL, NULL);
110 }