mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
test: improve kinit kerberos tests
For enterprise and windows style kinit, a UPN is now configured. There are now additional smbclient calls and added cache removals to make the tests more robust. Change-Id: I7c58ae4c9f303ca74a52878aa5dce2cc5f7d6742 Pair-programmed-with: Andrew Bartlett <abartlet@samba.org> Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
parent
57a03c6947
commit
64f5984273
@ -71,16 +71,25 @@ enctype="-e $ENCTYPE"
|
|||||||
PWSETCONFIG="-H ldap://$SERVER -U$USERNAME%$PASSWORD"
|
PWSETCONFIG="-H ldap://$SERVER -U$USERNAME%$PASSWORD"
|
||||||
export PWSETCONFIG
|
export PWSETCONFIG
|
||||||
|
|
||||||
KRB5CCNAME="$PREFIX/tmpccache"
|
KRB5CCNAME_PATH="$PREFIX/tmpccache"
|
||||||
|
KRB5CCNAME="FILE:$KRB5CCNAME_PATH"
|
||||||
|
ADMIN_KRB5CCNAME="FILE:$KRB5CCNAME_PATH"
|
||||||
export KRB5CCNAME
|
export KRB5CCNAME
|
||||||
|
rm -rf $KRB5CCNAME_PATH
|
||||||
|
|
||||||
testit "reset password policies beside of minimum password age of 0 days" $VALGRIND $samba_tool domain passwordsettings $PWSETCONFIG set --complexity=default --history-length=default --min-pwd-length=default --min-pwd-age=0 --max-pwd-age=default || failed=`expr $failed + 1`
|
testit "reset password policies beside of minimum password age of 0 days" $VALGRIND $samba_tool domain passwordsettings $PWSETCONFIG set --complexity=default --history-length=default --min-pwd-length=default --min-pwd-age=0 --max-pwd-age=default || failed=`expr $failed + 1`
|
||||||
|
|
||||||
echo $PASSWORD > $PREFIX/tmppassfile
|
echo $PASSWORD > $PREFIX/tmppassfile
|
||||||
#testit "kinit with keytab" $samba4kinit $enctype --keytab=$PREFIX/dc/private/secrets.keytab $SERVER\$@$REALM || failed=`expr $failed + 1`
|
#testit "kinit with keytab" $samba4kinit $enctype --keytab=$PREFIX/dc/private/secrets.keytab $SERVER\$@$REALM || failed=`expr $failed + 1`
|
||||||
testit "kinit with password" $samba4kinit $enctype --password-file=$PREFIX/tmppassfile --request-pac $USERNAME@$REALM || failed=`expr $failed + 1`
|
testit "kinit with password" $samba4kinit $enctype --password-file=$PREFIX/tmppassfile --request-pac $USERNAME@$REALM || failed=`expr $failed + 1`
|
||||||
|
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
testit "kinit with password (enterprise style)" $samba4kinit $enctype --enterprise --password-file=$PREFIX/tmppassfile --request-pac $USERNAME@$REALM || failed=`expr $failed + 1`
|
testit "kinit with password (enterprise style)" $samba4kinit $enctype --enterprise --password-file=$PREFIX/tmppassfile --request-pac $USERNAME@$REALM || failed=`expr $failed + 1`
|
||||||
|
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
testit "kinit with password (windows style)" $samba4kinit $enctype --renewable --windows --password-file=$PREFIX/tmppassfile --request-pac $USERNAME@$REALM || failed=`expr $failed + 1`
|
testit "kinit with password (windows style)" $samba4kinit $enctype --renewable --windows --password-file=$PREFIX/tmppassfile --request-pac $USERNAME@$REALM || failed=`expr $failed + 1`
|
||||||
|
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
testit "kinit renew ticket" $samba4kinit $enctype --request-pac -R
|
testit "kinit renew ticket" $samba4kinit $enctype --request-pac -R
|
||||||
|
|
||||||
test_smbclient "Test login with kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
test_smbclient "Test login with kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
@ -99,17 +108,21 @@ dn: cn=nettestuser,cn=users,$BASEDN
|
|||||||
changetype: modify
|
changetype: modify
|
||||||
add: servicePrincipalName
|
add: servicePrincipalName
|
||||||
servicePrincipalName: host/nettestuser
|
servicePrincipalName: host/nettestuser
|
||||||
|
replace: userPrincipalName
|
||||||
|
userPrincipalName: nettest@$REALM
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
testit "modify servicePrincipalName" $VALGRIND $ldbmodify -H ldap://$SERVER $PREFIX/tmpldbmodify -k yes $@ || failed=`expr $failed + 1`
|
testit "modify servicePrincipalName and userPrincpalName" $VALGRIND $ldbmodify -H ldap://$SERVER $PREFIX/tmpldbmodify -k yes $@ || failed=`expr $failed + 1`
|
||||||
|
|
||||||
testit "set user password with kerberos ccache" $VALGRIND $samba_tool user setpassword nettestuser --newpassword=$USERPASS $CONFIGURATION -k yes $@ || failed=`expr $failed + 1`
|
testit "set user password with kerberos ccache" $VALGRIND $samba_tool user setpassword nettestuser --newpassword=$USERPASS $CONFIGURATION -k yes $@ || failed=`expr $failed + 1`
|
||||||
|
|
||||||
testit "enable user with kerberos cache" $VALGRIND $enableaccount nettestuser -H ldap://$SERVER -k yes $@ || failed=`expr $failed + 1`
|
testit "enable user with kerberos cache" $VALGRIND $enableaccount nettestuser -H ldap://$SERVER -k yes $@ || failed=`expr $failed + 1`
|
||||||
|
|
||||||
KRB5CCNAME="$PREFIX/tmpuserccache"
|
KRB5CCNAME_PATH="$PREFIX/tmpuserccache"
|
||||||
|
KRB5CCNAME="FILE:$KRB5CCNAME_PATH"
|
||||||
export KRB5CCNAME
|
export KRB5CCNAME
|
||||||
|
|
||||||
|
rm -f $KRB5CCNAME_PATH
|
||||||
testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
||||||
|
|
||||||
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
@ -118,11 +131,25 @@ NEWUSERPASS=testPaSS@34%
|
|||||||
testit "change user password with 'samba-tool user password' (rpc)" $VALGRIND $samba_tool user password -W$DOMAIN -Unettestuser%$USERPASS $CONFIGURATION -k no --newpassword=$NEWUSERPASS $@ || failed=`expr $failed + 1`
|
testit "change user password with 'samba-tool user password' (rpc)" $VALGRIND $samba_tool user password -W$DOMAIN -Unettestuser%$USERPASS $CONFIGURATION -k no --newpassword=$NEWUSERPASS $@ || failed=`expr $failed + 1`
|
||||||
|
|
||||||
echo $NEWUSERPASS > $PREFIX/tmpuserpassfile
|
echo $NEWUSERPASS > $PREFIX/tmpuserpassfile
|
||||||
|
rm -f $KRB5CCNAME_PATH
|
||||||
testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
||||||
|
|
||||||
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
|
|
||||||
|
rm -f $KRB5CCNAME_PATH
|
||||||
|
testit "kinit with password (NT-Principal style) using UPN" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettest@$REALM || failed=`expr $failed + 1`
|
||||||
|
test_smbclient "Test login with user kerberos ccache from enterprise UPN" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
|
rm -f $KRB5CCNAME_PATH
|
||||||
|
testit "kinit with password (enterprise style) using UPN" $samba4kinit $enctype --enterprise --password-file=$PREFIX/tmpuserpassfile --request-pac nettest@$REALM || failed=`expr $failed + 1`
|
||||||
|
test_smbclient "Test login with user kerberos ccache from enterprise UPN" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
|
rm -f $KRB5CCNAME_PATH
|
||||||
|
testit "kinit with password (windows style) using UPN" $samba4kinit $enctype --renewable --windows --password-file=$PREFIX/tmpuserpassfile --request-pac nettest@$REALM || failed=`expr $failed + 1`
|
||||||
|
test_smbclient "Test login with user kerberos ccache from windows UPN" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
|
|
||||||
USERPASS=$NEWUSERPASS
|
USERPASS=$NEWUSERPASS
|
||||||
NEWUSERPASS=testPaSS@56%
|
NEWUSERPASS=testPaSS@56%
|
||||||
echo $NEWUSERPASS > $PREFIX/tmpuserpassfile
|
echo $NEWUSERPASS > $PREFIX/tmpuserpassfile
|
||||||
@ -139,6 +166,7 @@ EOF
|
|||||||
|
|
||||||
testit "change user password with kpasswd" $texpect $PREFIX/tmpkpasswdscript $samba4kpasswd nettestuser@$REALM || failed=`expr $failed + 1`
|
testit "change user password with kpasswd" $texpect $PREFIX/tmpkpasswdscript $samba4kpasswd nettestuser@$REALM || failed=`expr $failed + 1`
|
||||||
|
|
||||||
|
rm -f $KRB5CCNAME_PATH
|
||||||
testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
||||||
|
|
||||||
NEWUSERPASS=testPaSS@78%
|
NEWUSERPASS=testPaSS@78%
|
||||||
@ -154,8 +182,9 @@ send ${NEWUSERPASS}\n
|
|||||||
expect Success
|
expect Success
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
testit "set user password with kpasswd" $texpect $PREFIX/tmpkpasswdscript $samba4kpasswd --cache=$PREFIX/tmpccache nettestuser@$REALM || failed=`expr $failed + 1`
|
testit "set user password with kpasswd" $texpect $PREFIX/tmpkpasswdscript $samba4kpasswd --cache=$ADMIN_KRB5CCNAME nettestuser@$REALM || failed=`expr $failed + 1`
|
||||||
|
|
||||||
|
rm -f $KRB5CCNAME_PATH
|
||||||
testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
||||||
|
|
||||||
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
@ -210,16 +239,19 @@ testit "kinit with user password" $samba4kinit $enctype --password-file=$PREFIX/
|
|||||||
|
|
||||||
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
KRB5CCNAME="$PREFIX/tmpccache"
|
KRB5CCNAME_PATH="$PREFIX/tmpccache"
|
||||||
|
KRB5CCNAME="FILE:$KRB5CCNAME_PATH"
|
||||||
export KRB5CCNAME
|
export KRB5CCNAME
|
||||||
|
|
||||||
|
rm -rf $KRB5CCNAME_PATH
|
||||||
|
|
||||||
lowerrealm=$(echo $REALM | tr '[A-Z]' '[a-z]')
|
lowerrealm=$(echo $REALM | tr '[A-Z]' '[a-z]')
|
||||||
test_smbclient "Test login with user kerberos lowercase realm" 'ls' -k yes -Unettestuser@$lowerrealm%$NEWUSERPASS || failed=`expr $failed + 1`
|
test_smbclient "Test login with user kerberos lowercase realm" 'ls' -k yes -Unettestuser@$lowerrealm%$NEWUSERPASS || failed=`expr $failed + 1`
|
||||||
test_smbclient "Test login with user kerberos lowercase realm 2" 'ls' -k yes -Unettestuser@$REALM%$NEWUSERPASS --realm=$lowerrealm || failed=`expr $failed + 1`
|
test_smbclient "Test login with user kerberos lowercase realm 2" 'ls' -k yes -Unettestuser@$REALM%$NEWUSERPASS --realm=$lowerrealm || failed=`expr $failed + 1`
|
||||||
|
|
||||||
testit "del user with kerberos ccache" $VALGRIND $samba_tool user delete nettestuser $CONFIGURATION -k yes $@ || failed=`expr $failed + 1`
|
testit "del user with kerberos ccache" $VALGRIND $samba_tool user delete nettestuser $CONFIGURATION -k yes $@ || failed=`expr $failed + 1`
|
||||||
|
|
||||||
rm -f $KRB5CCNAME
|
rm -f $KRB5CCNAME_PATH
|
||||||
testit "kinit with machineaccountccache script" $machineaccountccache $CONFIGURATION $KRB5CCNAME || failed=`expr $failed + 1`
|
testit "kinit with machineaccountccache script" $machineaccountccache $CONFIGURATION $KRB5CCNAME || failed=`expr $failed + 1`
|
||||||
test_smbclient "Test machine account login with kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
test_smbclient "Test machine account login with kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user