blob: 0dd8cbcdb768ec3e5cd33df3d5a75b79b5455003 [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>
23#include <unistd.h>
24#include <string.h>
25#include <sys/stat.h>
26#include <sys/types.h>
27#include <sys/socket.h>
28
29#include <cmocka.h>
30#include <libyang/libyang.h>
31
32#include "config.h"
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010033#include <session_client.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}
70