]> git.proxmox.com Git - mirror_frr.git/blob - pceplib/test/pcep_session_logic_states_test.h
Merge pull request #12845 from sri-mohan1/sri-mohan-ldp
[mirror_frr.git] / pceplib / test / pcep_session_logic_states_test.h
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 /*
3 * This file is part of the PCEPlib, a PCEP protocol library.
4 *
5 * Copyright (C) 2020 Volta Networks https://voltanet.io/
6 *
7 * Author : Javier Garcia <javier.garcia@voltanet.io>
8 *
9 */
10
11 /*
12 * Timer definitions to be used internally by the pcep_timers library.
13 */
14
15 #ifndef PCEP_SESSION_LOGIC_STATES_TEST_H
16 #define PCEP_SESSION_LOGIC_STATES_TEST_H
17
18 int pcep_session_logic_states_test_suite_setup(void);
19 int pcep_session_logic_states_test_suite_teardown(void);
20 void pcep_session_logic_states_test_setup(void);
21 void pcep_session_logic_states_test_teardown(void);
22 void test_handle_timer_event_dead_timer(void);
23 void test_handle_timer_event_keep_alive(void);
24 void test_handle_timer_event_open_keep_wait(void);
25 void test_handle_socket_comm_event_null_params(void);
26 void test_handle_socket_comm_event_close(void);
27 void test_handle_socket_comm_event_open(void);
28 void test_handle_socket_comm_event_open_error(void);
29 void test_handle_socket_comm_event_keep_alive(void);
30 void test_handle_socket_comm_event_pcrep(void);
31 void test_handle_socket_comm_event_pcreq(void);
32 void test_handle_socket_comm_event_report(void);
33 void test_handle_socket_comm_event_update(void);
34 void test_handle_socket_comm_event_initiate(void);
35 void test_handle_socket_comm_event_notify(void);
36 void test_handle_socket_comm_event_error(void);
37 void test_handle_socket_comm_event_unknown_msg(void);
38 void test_connection_failure(void);
39
40 #endif /* PCEPTIMERINTERNALS_H_ */