tests: added unit test with KKDCP server parsing

This commit is contained in:
Nikos Mavrogiannopoulos
2015-05-28 15:53:53 +02:00
parent 374ae17a4d
commit 1e4463749a
2 changed files with 75 additions and 3 deletions

View File

@@ -24,21 +24,26 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/src/ \
-I$(top_builddir)/src/ \
-I$(top_srcdir)/gl/ \
-I$(top_builddir)/gl/
-I$(top_builddir)/gl/ \
-I$(top_srcdir)/ \
-I$(top_builddir)/
kkdcp_parsing_SOURCES = ../src/config-kkdcp.c kkdcp-parsing.c
kkdcp_parsing_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS)
ipv4_prefix_SOURCES = ../src/common.c ../src/common.h ipv4-prefix.c
ipv4_prefix_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS)
ipv6_prefix_SOURCES = ../src/common.c ../src/common.h ipv6-prefix.c
ipv6_prefix_LDADD = ../gl/libgnu.a $(LIBTALLOC_LIBS)
check_PROGRAMS = ipv4-prefix ipv6-prefix
check_PROGRAMS = ipv4-prefix ipv6-prefix kkdcp-parsing
TESTS = test-pass test-pass-cert test-cert test-iroute test-pass-script \
test-multi-cookie full-test test-group-pass test-pass-group-cert \
ocpasswd-test test-pass-group-cert-no-pass unix-test test-pass-opt-cert \
test-cookie-timeout test-cookie-timeout-2 test-explicit-ip radius-test \
test-gssapi kerberos-test pam-test test-ban test-sighup ipv4-prefix \
radius-test-config
radius-test-config kkdcp-parsing
TESTS_ENVIRONMENT = srcdir="$(srcdir)" \
top_builddir="$(top_builddir)"

67
tests/kkdcp-parsing.c Normal file
View File

@@ -0,0 +1,67 @@
/*
* Copyright (C) 2015 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, 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, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include "../src/cfg.h"
int main()
{
#ifndef HAVE_GSSAPI
exit(77);
#else
char p[256];
char *port, *server, *path, *realm;
int socktype;
strcpy(p, "/KdcProxy KERBEROS.REALM udp@127.0.0.1:88");
parse_kkdcp_string(p, &socktype, &port, &server, &path, &realm);
if (socktype != SOCK_DGRAM || strcmp(port, "88") != 0 || strcmp(path, "/KdcProxy") != 0 ||
strcmp(realm, "KERBEROS.REALM") != 0 || strcmp(server, "127.0.0.1") != 0) {
fprintf(stderr, "error in %d: '%s' '%s' %u@'%s':'%s'\n", __LINE__, path, realm, socktype, server, port);
exit(2);
}
strcpy(p, "/KdcProxy KERBEROS.REALM tcp@[::1]:88");
parse_kkdcp_string(p, &socktype, &port, &server, &path, &realm);
if (socktype != SOCK_STREAM || strcmp(port, "88") != 0 || strcmp(path, "/KdcProxy") != 0 ||
strcmp(realm, "KERBEROS.REALM") != 0 || strcmp(server, "::1") != 0) {
fprintf(stderr, "error in %d: '%s' '%s' %u@'%s':'%s'\n", __LINE__, path, realm, socktype, server, port);
exit(2);
}
strcpy(p, "/KdcProxy-xxx KERBEROS.REALM udp@[fc74:cc44:8f86:0252:47d4:54bf:112b:970c]:8899");
parse_kkdcp_string(p, &socktype, &port, &server, &path, &realm);
if (socktype != SOCK_DGRAM || strcmp(port, "8899") != 0 || strcmp(path, "/KdcProxy-xxx") != 0 ||
strcmp(realm, "KERBEROS.REALM") != 0 || strcmp(server, "fc74:cc44:8f86:0252:47d4:54bf:112b:970c") != 0) {
fprintf(stderr, "error in %d: '%s' '%s' %u@'%s':'%s'\n", __LINE__, path, realm, socktype, server, port);
exit(2);
}
return 0;
#endif
}