]> git.proxmox.com Git - mirror_frr.git/blob - pceplib/test/pcep_msg_objects_test.h
doc: Add `show ipv6 rpf X:X::X:X` command to docs
[mirror_frr.git] / pceplib / test / pcep_msg_objects_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
24 #ifndef PCEP_MSG_OBJECTS_TEST_H_
25 #define PCEP_MSG_OBJECTS_TEST_H_
26
27 int pcep_objects_test_suite_setup(void);
28 int pcep_objects_test_suite_teardown(void);
29 void pcep_objects_test_setup(void);
30 void pcep_objects_test_teardown(void);
31 void test_pcep_obj_create_open(void);
32 void test_pcep_obj_create_open_with_tlvs(void);
33 void test_pcep_obj_create_rp(void);
34 void test_pcep_obj_create_nopath(void);
35 void test_pcep_obj_create_endpoint_ipv4(void);
36 void test_pcep_obj_create_endpoint_ipv6(void);
37 void test_pcep_obj_create_association_ipv4(void);
38 void test_pcep_obj_create_association_ipv6(void);
39 void test_pcep_obj_create_bandwidth(void);
40 void test_pcep_obj_create_metric(void);
41 void test_pcep_obj_create_lspa(void);
42 void test_pcep_obj_create_svec(void);
43 void test_pcep_obj_create_error(void);
44 void test_pcep_obj_create_close(void);
45 void test_pcep_obj_create_srp(void);
46 void test_pcep_obj_create_lsp(void);
47 void test_pcep_obj_create_vendor_info(void);
48 void test_pcep_obj_create_ero(void);
49 void test_pcep_obj_create_rro(void);
50 void test_pcep_obj_create_iro(void);
51 void test_pcep_obj_create_ro_subobj_ipv4(void);
52 void test_pcep_obj_create_ro_subobj_ipv6(void);
53 void test_pcep_obj_create_ro_subobj_unnum(void);
54 void test_pcep_obj_create_ro_subobj_32label(void);
55 void test_pcep_obj_create_ro_subobj_asn(void);
56 void test_pcep_obj_create_ro_subobj_sr_nonai(void);
57 void test_pcep_obj_create_ro_subobj_sr_ipv4_node(void);
58 void test_pcep_obj_create_ro_subobj_sr_ipv6_node(void);
59 void test_pcep_obj_create_ro_subobj_sr_ipv4_adj(void);
60 void test_pcep_obj_create_ro_subobj_sr_ipv6_adj(void);
61 void test_pcep_obj_create_ro_subobj_sr_unnumbered_ipv4_adj(void);
62 void test_pcep_obj_create_ro_subobj_sr_linklocal_ipv6_adj(void);
63
64 #endif