]> git.proxmox.com Git - mirror_frr.git/blobdiff - pceplib/test/pcep_msg_tools_test.c
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / pceplib / test / pcep_msg_tools_test.c
index 05f8bfb547483833cd72b2c29ebcf458ec97f95e..858650ec8f2dc15a48d6c402e025437675d995bc 100644 (file)
@@ -1,21 +1,9 @@
+// SPDX-License-Identifier: LGPL-2.1-or-later
 /*
  * This file is part of the PCEPlib, a PCEP protocol library.
  *
  * Copyright (C) 2020 Volta Networks https://voltanet.io/
  *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program.  If not, see <https://www.gnu.org/licenses/>.
- *
  * Author : Brady Johnson <brady@voltanet.io>
  *
  */
@@ -174,12 +162,11 @@ static int BASE_TMPFILE_SIZE = sizeof(BASE_TMPFILE);
 
 /* Reads an array of hexbyte strs, and writes them to a temporary file.
  * The caller should close the returned file. */
-int convert_hexstrs_to_binary(char *filename,
-                             const char *hexbyte_strs[],
+int convert_hexstrs_to_binary(char *filename, const char *hexbyte_strs[],
                              uint16_t hexbyte_strs_length)
 {
        mode_t oldumask;
-       oldumask = umask(S_IXUSR|S_IXGRP|S_IWOTH|S_IROTH|S_IXOTH);
+       oldumask = umask(S_IXUSR | S_IXGRP | S_IWOTH | S_IROTH | S_IXOTH);
        /* Set umask before anything for security */
        umask(0027);
 
@@ -216,11 +203,10 @@ void test_pcep_msg_read_pcep_initiate()
 {
        char filename[BASE_TMPFILE_SIZE];
 
-       int fd = convert_hexstrs_to_binary(filename,
-                                          pcep_initiate_hexbyte_strs,
+       int fd = convert_hexstrs_to_binary(filename, pcep_initiate_hexbyte_strs,
                                           pcep_initiate_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);
@@ -321,11 +307,11 @@ void test_pcep_msg_read_pcep_initiate2()
 {
        char filename[BASE_TMPFILE_SIZE];
 
-       int fd = convert_hexstrs_to_binary(filename,
-                                          pcep_initiate2_hexbyte_strs,
-                                          pcep_initiate2_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       int fd =
+               convert_hexstrs_to_binary(filename, pcep_initiate2_hexbyte_strs,
+                                         pcep_initiate2_hexbyte_strs_length);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);
@@ -414,11 +400,10 @@ void test_pcep_msg_read_pcep_open()
 {
        char filename[BASE_TMPFILE_SIZE];
 
-       int fd = convert_hexstrs_to_binary(filename,
-                                          pcep_open_odl_hexbyte_strs,
+       int fd = convert_hexstrs_to_binary(filename, pcep_open_odl_hexbyte_strs,
                                           pcep_open_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);
@@ -463,11 +448,10 @@ void test_pcep_msg_read_pcep_update()
 {
        char filename[BASE_TMPFILE_SIZE];
 
-       int fd = convert_hexstrs_to_binary(filename,
-                                          pcep_update_hexbyte_strs,
+       int fd = convert_hexstrs_to_binary(filename, pcep_update_hexbyte_strs,
                                           pcep_update_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);
@@ -553,8 +537,8 @@ void test_pcep_msg_read_pcep_open_initiate()
        int fd = convert_hexstrs_to_binary(
                filename, pcep_open_initiate_odl_hexbyte_strs,
                pcep_open_initiate_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);
@@ -586,8 +570,8 @@ void test_pcep_msg_read_pcep_open_cisco_pce()
        int fd = convert_hexstrs_to_binary(
                filename, pcep_open_cisco_pce_hexbyte_strs,
                pcep_open_cisco_pce_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);
@@ -653,8 +637,8 @@ void test_pcep_msg_read_pcep_update_cisco_pce()
        int fd = convert_hexstrs_to_binary(
                filename, pcep_update_cisco_pce_hexbyte_strs,
                pcep_update_cisco_pce_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);
@@ -801,8 +785,8 @@ void test_pcep_msg_read_pcep_report_cisco_pcc()
        int fd = convert_hexstrs_to_binary(
                filename, pcep_report_cisco_pcc_hexbyte_strs,
                pcep_report_cisco_pcc_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);
@@ -966,8 +950,8 @@ void test_pcep_msg_read_pcep_initiate_cisco_pcc()
        int fd = convert_hexstrs_to_binary(
                filename, pcep_initiate_cisco_pcc_hexbyte_strs,
                pcep_initiate_cisco_pcc_hexbyte_strs_length);
-       if(fd == -1){
-               CU_ASSERT_TRUE(fd>=0);
+       if (fd == -1) {
+               CU_ASSERT_TRUE(fd >= 0);
                return;
        }
        double_linked_list *msg_list = pcep_msg_read(fd);