mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 00:37:00 +08:00
tests: added unit test with KKDCP server parsing
This commit is contained in:
@@ -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
67
tests/kkdcp-parsing.c
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user