Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 1 | /** |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 2 | * \file test_init_destroy_client.c |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 3 | * \author Michal Vasko <mvasko@cesnet.cz> |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 4 | * \brief libnetconf2 tests - init/destroy client |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 5 | * |
| 6 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 7 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
Michal Vasko | ad1cc6a | 2016-02-26 15:06:06 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <errno.h> |
| 16 | #include <fcntl.h> |
| 17 | #include <pthread.h> |
| 18 | #include <setjmp.h> |
| 19 | #include <stdarg.h> |
| 20 | #include <stddef.h> |
| 21 | #include <stdint.h> |
| 22 | #include <stdlib.h> |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 23 | #include <string.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 24 | #include <sys/socket.h> |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 25 | #include <sys/stat.h> |
| 26 | #include <sys/types.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 27 | #include <unistd.h> |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 28 | |
| 29 | #include <cmocka.h> |
| 30 | #include <libyang/libyang.h> |
| 31 | |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 32 | #include <session_client.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 33 | #include "tests/config.h" |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 34 | |
| 35 | static int |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 36 | setup_client(void **state) |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 37 | { |
| 38 | (void)state; |
| 39 | |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 40 | nc_client_init(); |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 41 | |
| 42 | return 0; |
| 43 | } |
| 44 | |
| 45 | static int |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 46 | teardown_client(void **state) |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 47 | { |
| 48 | (void)state; |
| 49 | |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 50 | nc_client_destroy(); |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | static void |
| 56 | test_dummy(void **state) |
| 57 | { |
| 58 | (void)state; |
| 59 | } |
| 60 | |
| 61 | int |
| 62 | main(void) |
| 63 | { |
| 64 | const struct CMUnitTest init_destroy[] = { |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 65 | cmocka_unit_test_setup_teardown(test_dummy, setup_client, teardown_client) |
Michal Vasko | 77fad15 | 2016-02-03 15:36:15 +0100 | [diff] [blame] | 66 | }; |
| 67 | |
| 68 | return cmocka_run_group_tests(init_destroy, NULL, NULL); |
| 69 | } |