OpenVPN
assert_macro_test.c
Go to the documentation of this file.
1 /*
2  * Copyright 2008 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include <stdarg.h>
17 #include <stddef.h>
18 #include <setjmp.h>
19 #include <cmocka.h>
20 
21 #include "assert_macro.h"
22 
23 /* This test will fail since the string returned by get_status_code_string(0)
24  * doesn't match "Connection timed out". */
25 static void get_status_code_string_test(void **state) {
26  (void) state; /* unused */
27 
28  assert_string_equal(get_status_code_string(0), "Address not found");
29  assert_string_equal(get_status_code_string(1), "Connection timed out");
30 }
31 
32 /* This test will fail since the status code of "Connection timed out" isn't 1 */
33 static void string_to_status_code_test(void **state) {
34  (void) state; /* unused */
35 
36  assert_int_equal(string_to_status_code("Address not found"), 0);
37  assert_int_equal(string_to_status_code("Connection timed out"), 1);
38 }
39 
40 int main(void) {
41  const struct CMUnitTest tests[] = {
44  };
45  return cmocka_run_group_tests(tests, NULL, NULL);
46 }
const char * get_status_code_string(const unsigned int status_code)
Definition: assert_macro.c:26
#define cmocka_unit_test(f)
Initializes a CMUnitTest structure.
Definition: cmocka.h:1653
#define assert_string_equal(a, b)
Definition: cmocka.h:1214
static void get_status_code_string_test(void **state)
#define cmocka_run_group_tests(group_tests, group_setup, group_teardown)
Definition: cmocka.h:1749
int main(void)
static void string_to_status_code_test(void **state)
unsigned int string_to_status_code(const char *const status_code_string)
Definition: assert_macro.c:30
#define assert_int_equal(a, b)
Definition: cmocka.h:1174