mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
57 lines
1.7 KiB
C
57 lines
1.7 KiB
C
|
|
||
|
/*
|
||
|
Unix SMB/CIFS implementation.
|
||
|
|
||
|
Validate the krb5 pac generation routines
|
||
|
|
||
|
Copyright (c) 2016 Andreas Schneider <asn@samba.org>
|
||
|
|
||
|
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 3 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 "includes.h"
|
||
|
#include "system/kerberos.h"
|
||
|
#include "torture/smbtorture.h"
|
||
|
#include "torture/winbind/proto.h"
|
||
|
#include "torture/krb5/proto.h"
|
||
|
#include "auth/credentials/credentials.h"
|
||
|
#include "lib/cmdline/popt_common.h"
|
||
|
#include "source4/auth/kerberos/kerberos.h"
|
||
|
#include "source4/auth/kerberos/kerberos_util.h"
|
||
|
#include "lib/util/util_net.h"
|
||
|
|
||
|
static bool test_skip(struct torture_context *tctx)
|
||
|
{
|
||
|
torture_skip(tctx, "Skip kdc tests with MIT Kerberos");
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
NTSTATUS torture_krb5_init(void)
|
||
|
{
|
||
|
struct torture_suite *suite =
|
||
|
torture_suite_create(talloc_autofree_context(), "krb5");
|
||
|
struct torture_suite *kdc_suite = torture_suite_create(suite, "kdc");
|
||
|
suite->description = talloc_strdup(suite, "Kerberos tests");
|
||
|
kdc_suite->description = talloc_strdup(kdc_suite, "Kerberos KDC tests");
|
||
|
|
||
|
torture_suite_add_simple_test(kdc_suite, "skip", test_skip);
|
||
|
|
||
|
torture_suite_add_suite(suite, kdc_suite);
|
||
|
|
||
|
torture_register_suite(suite);
|
||
|
|
||
|
return NT_STATUS_OK;
|
||
|
}
|