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 71 72
|
/*
* Copyright (c) 2002-2013 Balabit
* Copyright (c) 1998-2013 Balázs Scheidler
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; 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.
*
*/
#include "transport-mapper-unix.h"
#include "apphook.h"
#include "stats/stats-registry.h"
#include "transport-mapper-lib.h"
guint SCS_UNIX_STREAM;
guint SCS_UNIX_DGRAM;
Test(transport_mapper_unix, test_transport_mapper_unix_stream_apply_transport_sets_defaults)
{
transport_mapper = transport_mapper_unix_stream_new();
assert_transport_mapper_apply(transport_mapper, NULL);
assert_transport_mapper_transport(transport_mapper, "unix-stream");
assert_transport_mapper_address_family(transport_mapper, AF_UNIX);
assert_transport_mapper_sock_type(transport_mapper, SOCK_STREAM);
assert_transport_mapper_sock_proto(transport_mapper, 0);
assert_transport_mapper_logproto(transport_mapper, "text");
assert_transport_mapper_stats_source(transport_mapper, SCS_UNIX_STREAM);
assert_transport_mapper_transport_name(transport_mapper, "local+unix-stream");
}
Test(transport_mapper_unix, test_transport_mapper_unix_dgram_apply_transport_sets_defaults)
{
transport_mapper = transport_mapper_unix_dgram_new();
assert_transport_mapper_apply(transport_mapper, NULL);
assert_transport_mapper_transport(transport_mapper, "unix-dgram");
assert_transport_mapper_address_family(transport_mapper, AF_UNIX);
assert_transport_mapper_sock_type(transport_mapper, SOCK_DGRAM);
assert_transport_mapper_sock_proto(transport_mapper, 0);
assert_transport_mapper_logproto(transport_mapper, "dgram");
assert_transport_mapper_stats_source(transport_mapper, SCS_UNIX_DGRAM);
assert_transport_mapper_transport_name(transport_mapper, "local+unix-dgram");
}
static void
setup(void)
{
app_startup();
SCS_UNIX_STREAM = stats_register_type("unix-stream");
SCS_UNIX_DGRAM = stats_register_type("unix-dgram");
}
static void
teardown(void)
{
transport_mapper_free(transport_mapper);
app_shutdown();
}
TestSuite(transport_mapper_unix, .init = setup, .fini = teardown);
|