/usr/include/syslog-ng/libtest/proto_lib.h is in syslog-ng-dev 3.13.2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | /*
* Copyright (c) 2012 Balabit
* Copyright (c) 2012 Balázs Scheidler
*
* 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.1 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#ifndef PROTO_LIB_H_INCLUDED
#define PROTO_LIB_H_INCLUDED
#include "testutils.h"
#include "logproto/logproto-server.h"
extern LogProtoServerOptions proto_server_options;
#define PROTO_TESTCASE(x, ...) do { log_proto_testcase_begin(#x, #__VA_ARGS__); x(__VA_ARGS__); log_proto_testcase_end(); } while(0)
#define log_proto_testcase_begin(func, args) \
do \
{ \
testcase_begin("%s(%s)", func, args); \
log_proto_server_options_defaults(&proto_server_options); \
} \
while (0)
#define log_proto_testcase_end() \
do \
{ \
log_proto_server_options_destroy(&proto_server_options); \
testcase_end(); \
} \
while (0)
void assert_proto_server_status(LogProtoServer *proto, LogProtoStatus status, LogProtoStatus expected_status);
void assert_proto_server_fetch(LogProtoServer *proto, const gchar *expected_msg, gssize expected_msg_len);
void assert_proto_server_fetch_single_read(LogProtoServer *proto, const gchar *expected_msg, gssize expected_msg_len);
void assert_proto_server_fetch_failure(LogProtoServer *proto, LogProtoStatus expected_status, const gchar *error_message);
void assert_proto_server_fetch_ignored_eof(LogProtoServer *proto);
LogProtoServer *construct_server_proto_plugin(const gchar *name, LogTransport *transport);
void init_proto_tests(void);
void deinit_proto_tests(void);
static inline LogProtoServerOptions *
get_inited_proto_server_options(void)
{
log_proto_server_options_init(&proto_server_options, configuration);
return &proto_server_options;
}
#endif
|