blob: 6b354a8652ec25c5096ff9f48e6ebe8f34f5eae0 [file] [log] [blame]
Michal Vasko77fad152016-02-03 15:36:15 +01001/**
Michal Vaskoa7b8ca52016-03-01 12:09:29 +01002 * \file test_init_destroy_client.c
Michal Vasko77fad152016-02-03 15:36:15 +01003 * \author Michal Vasko <mvasko@cesnet.cz>
Michal Vaskoa7b8ca52016-03-01 12:09:29 +01004 * \brief libnetconf2 tests - init/destroy client
Michal Vasko77fad152016-02-03 15:36:15 +01005 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +01008 * 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 Vaskoad1cc6a2016-02-26 15:06:06 +010011 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010012 * https://opensource.org/licenses/BSD-3-Clause
Michal Vasko77fad152016-02-03 15:36:15 +010013 */
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 Vasko77fad152016-02-03 15:36:15 +010023#include <string.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020024#include <sys/socket.h>
Michal Vasko77fad152016-02-03 15:36:15 +010025#include <sys/stat.h>
26#include <sys/types.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020027#include <unistd.h>
Michal Vasko77fad152016-02-03 15:36:15 +010028
29#include <cmocka.h>
30#include <libyang/libyang.h>
31
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010032#include <session_client.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020033#include "tests/config.h"
Michal Vasko77fad152016-02-03 15:36:15 +010034
35static int
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010036setup_client(void **state)
Michal Vasko77fad152016-02-03 15:36:15 +010037{
38 (void)state;
39
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010040 nc_client_init();
Michal Vasko77fad152016-02-03 15:36:15 +010041
42 return 0;
43}
44
45static int
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010046teardown_client(void **state)
Michal Vasko77fad152016-02-03 15:36:15 +010047{
48 (void)state;
49
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010050 nc_client_destroy();
Michal Vasko77fad152016-02-03 15:36:15 +010051
52 return 0;
53}
54
55static void
56test_dummy(void **state)
57{
58 (void)state;
59}
60
61int
62main(void)
63{
64 const struct CMUnitTest init_destroy[] = {
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010065 cmocka_unit_test_setup_teardown(test_dummy, setup_client, teardown_client)
Michal Vasko77fad152016-02-03 15:36:15 +010066 };
67
68 return cmocka_run_group_tests(init_destroy, NULL, NULL);
69}