s4:heimdal Allow KRB5_NT_ENTERPRISE names in all DB lookups
[metze/samba/wip.git] / testprogs / blackbox / test_kinit.sh
1 #!/bin/sh
2 # Blackbox tests for kinit and kerberos integration with smbclient etc
3 # Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@samba.org>
4 # Copyright (C) 2006-2008 Andrew Bartlett <abartlet@samba.org>
5
6 if [ $# -lt 5 ]; then
7 cat <<EOF
8 Usage: test_kinit.sh SERVER USERNAME PASSWORD REALM DOMAIN PREFIX
9 EOF
10 exit 1;
11 fi
12
13 SERVER=$1
14 USERNAME=$2
15 PASSWORD=$3
16 REALM=$4
17 DOMAIN=$5
18 PREFIX=$6
19 shift 6
20 failed=0
21
22 samba4bindir="$BUILDDIR/bin"
23 smbclient="$samba4bindir/smbclient$EXEEXT"
24 samba4kinit="$samba4bindir/samba4kinit$EXEEXT"
25 net="$samba4bindir/net$EXEEXT"
26 rkpty="$samba4bindir/rkpty$EXEEXT"
27 samba4kpasswd="$samba4bindir/samba4kpasswd$EXEEXT"
28 enableaccount="$PYTHON `dirname $0`/../../source4/setup/enableaccount"
29
30 . `dirname $0`/subunit.sh
31
32 test_smbclient() {
33         name="$1"
34         cmd="$2"
35         shift
36         shift
37         echo "test: $name"
38         $VALGRIND $smbclient $CONFIGURATION //$SERVER/tmp -c "$cmd" -W "$DOMAIN" $@
39         status=$?
40         if [ x$status = x0 ]; then
41                 echo "success: $name"
42         else
43                 echo "failure: $name"
44         fi
45         return $status
46 }
47
48 KRB5CCNAME="$PREFIX/tmpccache"
49 export KRB5CCNAME
50
51 echo $PASSWORD > ./tmppassfile
52 #testit "kinit with keytab" $samba4kinit --keytab=$PREFIX/dc/private/secrets.keytab $SERVER\$@$REALM   || failed=`expr $failed + 1`
53 testit "kinit with password" $samba4kinit --password-file=./tmppassfile --request-pac $USERNAME@$REALM   || failed=`expr $failed + 1`
54 testit "kinit with password (enterprise style)" $samba4kinit --enterprise --password-file=./tmppassfile --request-pac $USERNAME@$REALM   || failed=`expr $failed + 1`
55 testit "kinit with password (windows style)" $samba4kinit --windows --password-file=./tmppassfile --request-pac $USERNAME@$REALM   || failed=`expr $failed + 1`
56 testit "kinit with pkinit" $samba4kinit --request-pac --renewable --pk-user=FILE:$PREFIX/dc/private/tls/admincert.pem,$PREFIX/dc/private/tls/adminkey.pem $USERNAME@$REALM || failed=`expr $failed + 1`
57 testit "kinit renew ticket" $samba4kinit --request-pac -R
58
59 test_smbclient "Test login with kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
60
61 testit "domain join with kerberos ccache" $VALGRIND $net join $DOMAIN $CONFIGURATION  -W "$DOMAIN" -k yes $@ || failed=`expr $failed + 1`
62 testit "check time with kerberos ccache" $VALGRIND $net time $SERVER $CONFIGURATION  -W "$DOMAIN" -k yes $@ || failed=`expr $failed + 1`
63
64 testit "add user with kerberos ccache" $VALGRIND $net user add nettestuser $CONFIGURATION  -k yes $@ || failed=`expr $failed + 1`
65 USERPASS=testPass@12%
66 echo $USERPASS > ./tmpuserpassfile
67
68 testit "set user password with kerberos ccache" $VALGRIND $net password set $DOMAIN\\nettestuser $USERPASS $CONFIGURATION  -k yes $@ || failed=`expr $failed + 1`
69
70 testit "enable user with kerberos cache" $VALGRIND $enableaccount nettestuser -H ldap://$SERVER -k yes $@ || failed=`expr $failed + 1`
71
72 KRB5CCNAME="$PREFIX/tmpuserccache"
73 export KRB5CCNAME
74
75 testit "kinit with user password" $samba4kinit --password-file=./tmpuserpassfile --request-pac nettestuser@$REALM   || failed=`expr $failed + 1`
76
77 test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
78
79 NEWUSERPASS=testPaSS@34%
80 testit "change user password with 'net password change' (rpc)" $VALGRIND $net password change -W$DOMAIN -U$DOMAIN\\nettestuser%$USERPASS $CONFIGURATION  -k no $NEWUSERPASS $@ || failed=`expr $failed + 1`
81
82 echo $NEWUSERPASS > ./tmpuserpassfile
83 testit "kinit with user password" $samba4kinit --password-file=./tmpuserpassfile --request-pac nettestuser@$REALM   || failed=`expr $failed + 1`
84
85 test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
86
87
88 USERPASS=$NEWUSERPASS
89 NEWUSERPASS=testPaSS@56%
90 echo $NEWUSERPASS > ./tmpuserpassfile
91
92 cat > ./tmpkpasswdscript <<EOF
93 expect Password
94 password ${USERPASS}\n
95 expect New password
96 send ${NEWUSERPASS}\n
97 expect New password
98 send ${NEWUSERPASS}\n
99 expect Success
100 EOF
101
102 testit "change user password with kpasswd" $rkpty ./tmpkpasswdscript $samba4kpasswd nettestuser@$REALM || failed=`expr $failed + 1`
103
104 testit "kinit with user password" $samba4kinit --password-file=./tmpuserpassfile --request-pac nettestuser@$REALM   || failed=`expr $failed + 1`
105
106 NEWUSERPASS=testPaSS@78%
107 echo $NEWUSERPASS > ./tmpuserpassfile
108
109 test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
110
111 cat > ./tmpkpasswdscript <<EOF
112 expect New password
113 send ${NEWUSERPASS}\n
114 expect New password
115 send ${NEWUSERPASS}\n
116 expect Success
117 EOF
118
119 testit "set user password with kpasswd" $rkpty ./tmpkpasswdscript $samba4kpasswd --cache=$PREFIX/tmpccache nettestuser@$REALM || failed=`expr $failed + 1`
120
121 testit "kinit with user password" $samba4kinit --password-file=./tmpuserpassfile --request-pac nettestuser@$REALM   || failed=`expr $failed + 1`
122
123 test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
124
125 KRB5CCNAME="$PREFIX/tmpccache"
126 export KRB5CCNAME
127
128 testit "del user with kerberos ccache" $VALGRIND $net user delete nettestuser $CONFIGURATION -k yes $@ || failed=`expr $failed + 1`
129
130 rm -f tmpccfile tmppassfile tmpuserpassfile tmpuserccache tmpkpasswdscript
131 exit $failed