diff options
author | Andreas Schneider <asn@samba.org> | 2017-03-06 09:15:45 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2017-03-10 11:37:21 +0100 |
commit | 42bd003f468ab95b6ac97c774e2cd217d06c05ed (patch) | |
tree | 7c74814978a62cf311d6c5be4f558119328f3d87 /testprogs | |
parent | 9b3ff90dbc5cc1017dfc89831a1081272e6c2356 (diff) | |
download | samba-42bd003f468ab95b6ac97c774e2cd217d06c05ed.tar.gz |
testprogs: Add kinit_trusts tests with smbclient4
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12554
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'testprogs')
-rwxr-xr-x | testprogs/blackbox/test_kinit_trusts_heimdal.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testprogs/blackbox/test_kinit_trusts_heimdal.sh b/testprogs/blackbox/test_kinit_trusts_heimdal.sh index 040bf919203..e67f77361a4 100755 --- a/testprogs/blackbox/test_kinit_trusts_heimdal.sh +++ b/testprogs/blackbox/test_kinit_trusts_heimdal.sh @@ -52,8 +52,16 @@ rm -rf $KRB5CCNAME_PATH echo $TRUST_PASSWORD > $PREFIX/tmppassfile testit "kinit with password" $samba4kinit $enctype --password-file=$PREFIX/tmppassfile --request-pac $TRUST_USERNAME@$TRUST_REALM || failed=`expr $failed + 1` test_smbclient "Test login with user kerberos ccache" 'ls' "$unc" -k yes || failed=`expr $failed + 1` +rm -rf $KRB5CCNAME_PATH + +# Test with smbclient4 +smbclient="$samba4bindir/smbclient4" +testit "kinit with password" $samba4kinit $enctype --password-file=$PREFIX/tmppassfile --request-pac $TRUST_USERNAME@$TRUST_REALM || failed=`expr $failed + 1` +test_smbclient "Test login with user kerberos ccache (smbclient4)" 'ls' "$unc" -k yes || failed=`expr $failed + 1` +rm -rf $KRB5CCNAME_PATH testit "kinit with password (enterprise style)" $samba4kinit $enctype --enterprise --password-file=$PREFIX/tmppassfile --request-pac $TRUST_USERNAME@$TRUST_REALM || failed=`expr $failed + 1` +smbclient="$samba4bindir/smbclient" test_smbclient "Test login with user kerberos ccache" 'ls' "$unc" -k yes || failed=`expr $failed + 1` if test x"${TYPE}" = x"forest" ;then |