2010-06-24 03:42:40 +04:00
#!/bin/sh
# Blackbox tests for kinit and kerberos integration with smbclient etc
# Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@samba.org>
# Copyright (C) 2006-2008 Andrew Bartlett <abartlet@samba.org>
if [ $# -lt 5 ] ; then
cat <<EOF
2012-05-30 14:16:49 +04:00
Usage: test_kinit.sh SERVER USERNAME PASSWORD REALM DOMAIN PREFIX ENCTYPE SMBCLINET
2010-06-24 03:42:40 +04:00
EOF
exit 1;
fi
SERVER = $1
USERNAME = $2
PASSWORD = $3
REALM = $4
DOMAIN = $5
PREFIX = $6
ENCTYPE = $7
2012-05-30 14:16:49 +04:00
smbclient = $8
shift 8
2010-06-24 03:42:40 +04:00
failed = 0
2011-04-15 06:41:22 +04:00
samba4bindir = " $BINDIR "
2011-02-03 09:30:53 +03:00
samba4srcdir = " $SRCDIR /source4 "
2014-05-12 18:56:29 +04:00
samba4kinit = kinit
if test -x $BINDIR /samba4kinit; then
samba4kinit = $BINDIR /samba4kinit
fi
2012-01-26 02:42:27 +04:00
samba_tool = " $samba4bindir /samba-tool "
2014-05-12 18:56:29 +04:00
samba4kpasswd = kpasswd
if test -x $BINDIR /samba4kpasswd; then
samba4passwd = $BINDIR /samba4kpasswd
fi
2011-06-01 11:22:15 +04:00
enableaccount = " $samba_tool user enable "
2011-02-03 09:30:53 +03:00
machineaccountccache = " $samba4srcdir /scripting/bin/machineaccountccache "
2010-06-24 03:42:40 +04:00
2014-02-21 18:55:22 +04:00
ldbmodify = "ldbmodify"
if [ -x " $samba4bindir /ldbmodify " ] ; then
ldbmodify = " $samba4bindir /ldbmodify "
fi
ldbsearch = "ldbsearch"
if [ -x " $samba4bindir /ldbsearch " ] ; then
ldbsearch = " $samba4bindir /ldbsearch "
fi
2010-06-24 03:42:40 +04:00
. ` dirname $0 ` /subunit.sh
2016-04-24 21:09:05 +03:00
. ` dirname $0 ` /common_test_fns.inc
2010-06-24 03:42:40 +04:00
enctype = " -e $ENCTYPE "
2016-04-24 21:09:05 +03:00
unc = " // $SERVER /tmp "
2010-06-24 03:42:40 +04:00
2016-06-03 19:19:40 +03:00
KRB5CCNAME_PATH = " $PREFIX /tmpccache "
KRB5CCNAME = " FILE: $KRB5CCNAME_PATH "
2010-06-24 03:42:40 +04:00
export KRB5CCNAME
2016-06-03 19:19:40 +03:00
rm -f $KRB5CCNAME_PATH
2010-06-24 03:42:40 +04:00
2016-06-02 20:23:27 +03:00
PKUSER = " --pk-user=FILE: $PREFIX /private/tls/admincert.pem, $PREFIX /private/tls/adminkey.pem "
testit "kinit with pkinit (name specified)" $samba4kinit $enctype --request-pac --renewable $PKUSER $USERNAME @$REALM || failed = ` expr $failed + 1`
testit "kinit with pkinit (enterprise name specified)" $samba4kinit $enctype --request-pac --renewable $PKUSER --enterprise $USERNAME @$REALM || failed = ` expr $failed + 1`
testit "kinit with pkinit (enterprise name in cert)" $samba4kinit $enctype --request-pac --renewable $PKUSER --pk-enterprise || failed = ` expr $failed + 1`
2010-06-24 03:42:40 +04:00
testit "kinit renew ticket" $samba4kinit --request-pac -R
2016-04-24 21:09:05 +03:00
test_smbclient "Test login with kerberos ccache" 'ls' " $unc " -k yes || failed = ` expr $failed + 1`
2010-06-24 03:42:40 +04:00
2016-06-03 19:19:40 +03:00
rm -f $KRB5CCNAME_PATH
2010-06-24 03:42:40 +04:00
exit $failed