]> git.proxmox.com Git - mirror_frr.git/blob - pceplib/test/pcep_msg_tlvs_test.h
a961d7e47392da44799eeb844144612a601665b7
[mirror_frr.git] / pceplib / test / pcep_msg_tlvs_test.h
1 /*
2 * This file is part of the PCEPlib, a PCEP protocol library.
3 *
4 * Copyright (C) 2020 Volta Networks https://voltanet.io/
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 *
19 * Author : Javier Garcia <javier.garcia@voltanet.io>
20 *
21 */
22
23 #ifndef PCEP_MSG_TLVS_TEST_H_
24 #define PCEP_MSG_TLVS_TEST_H_
25
26 int pcep_tlvs_test_suite_setup(void);
27 int pcep_tlvs_test_suite_teardown(void);
28 void pcep_tlvs_test_setup(void);
29 void pcep_tlvs_test_teardown(void);
30 void test_pcep_tlv_create_stateful_pce_capability(void);
31 void test_pcep_tlv_create_speaker_entity_id(void);
32 void test_pcep_tlv_create_lsp_db_version(void);
33 void test_pcep_tlv_create_path_setup_type(void);
34 void test_pcep_tlv_create_path_setup_type_capability(void);
35 void test_pcep_tlv_create_sr_pce_capability(void);
36 void test_pcep_tlv_create_symbolic_path_name(void);
37 void test_pcep_tlv_create_ipv4_lsp_identifiers(void);
38 void test_pcep_tlv_create_ipv6_lsp_identifiers(void);
39 void test_pcep_tlv_create_lsp_error_code(void);
40 void test_pcep_tlv_create_rsvp_ipv4_error_spec(void);
41 void test_pcep_tlv_create_rsvp_ipv6_error_spec(void);
42 void test_pcep_tlv_create_srpag_pol_id_ipv4(void);
43 void test_pcep_tlv_create_srpag_pol_id_ipv6(void);
44 void test_pcep_tlv_create_srpag_pol_name(void);
45 void test_pcep_tlv_create_srpag_cp_id(void);
46 void test_pcep_tlv_create_srpag_cp_pref(void);
47 void test_pcep_tlv_create_nopath_vector(void);
48 void test_pcep_tlv_create_arbitrary(void);
49
50
51 #endif