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 (name specified)" $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 with pkinit (enterprise name specified)" $samba4kinit --request-pac --renewable --pk-user=FILE:$PREFIX/dc/private/tls/admincert.pem,$PREFIX/dc/private/tls/adminkey.pem --enterprise $USERNAME@$REALM || failed=`expr $failed + 1`
|
---|
58 | testit "kinit with pkinit (enterprise name in cert)" $samba4kinit --request-pac --renewable --pk-user=FILE:$PREFIX/dc/private/tls/admincertupn.pem,$PREFIX/dc/private/tls/adminkey.pem --pk-enterprise || failed=`expr $failed + 1`
|
---|
59 | testit "kinit renew ticket" $samba4kinit --request-pac -R
|
---|
60 |
|
---|
61 | test_smbclient "Test login with kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
---|
62 |
|
---|
63 | testit "domain join with kerberos ccache" $VALGRIND $net join $DOMAIN $CONFIGURATION -W "$DOMAIN" -k yes $@ || failed=`expr $failed + 1`
|
---|
64 | testit "check time with kerberos ccache" $VALGRIND $net time $SERVER $CONFIGURATION -W "$DOMAIN" -k yes $@ || failed=`expr $failed + 1`
|
---|
65 |
|
---|
66 | testit "add user with kerberos ccache" $VALGRIND $net user add nettestuser $CONFIGURATION -k yes $@ || failed=`expr $failed + 1`
|
---|
67 | USERPASS=testPass@12%
|
---|
68 | echo $USERPASS > ./tmpuserpassfile
|
---|
69 |
|
---|
70 | testit "set user password with kerberos ccache" $VALGRIND $net password set $DOMAIN\\nettestuser $USERPASS $CONFIGURATION -k yes $@ || failed=`expr $failed + 1`
|
---|
71 |
|
---|
72 | testit "enable user with kerberos cache" $VALGRIND $enableaccount nettestuser -H ldap://$SERVER -k yes $@ || failed=`expr $failed + 1`
|
---|
73 |
|
---|
74 | KRB5CCNAME="$PREFIX/tmpuserccache"
|
---|
75 | export KRB5CCNAME
|
---|
76 |
|
---|
77 | testit "kinit with user password" $samba4kinit --password-file=./tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
---|
78 |
|
---|
79 | test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
---|
80 |
|
---|
81 | NEWUSERPASS=testPaSS@34%
|
---|
82 | 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`
|
---|
83 |
|
---|
84 | echo $NEWUSERPASS > ./tmpuserpassfile
|
---|
85 | testit "kinit with user password" $samba4kinit --password-file=./tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
---|
86 |
|
---|
87 | test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
---|
88 |
|
---|
89 |
|
---|
90 | USERPASS=$NEWUSERPASS
|
---|
91 | NEWUSERPASS=testPaSS@56%
|
---|
92 | echo $NEWUSERPASS > ./tmpuserpassfile
|
---|
93 |
|
---|
94 | cat > ./tmpkpasswdscript <<EOF
|
---|
95 | expect Password
|
---|
96 | password ${USERPASS}\n
|
---|
97 | expect New password
|
---|
98 | send ${NEWUSERPASS}\n
|
---|
99 | expect New password
|
---|
100 | send ${NEWUSERPASS}\n
|
---|
101 | expect Success
|
---|
102 | EOF
|
---|
103 |
|
---|
104 | testit "change user password with kpasswd" $rkpty ./tmpkpasswdscript $samba4kpasswd nettestuser@$REALM || failed=`expr $failed + 1`
|
---|
105 |
|
---|
106 | testit "kinit with user password" $samba4kinit --password-file=./tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
---|
107 |
|
---|
108 | NEWUSERPASS=testPaSS@78%
|
---|
109 | echo $NEWUSERPASS > ./tmpuserpassfile
|
---|
110 |
|
---|
111 | test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
---|
112 |
|
---|
113 | cat > ./tmpkpasswdscript <<EOF
|
---|
114 | expect New password
|
---|
115 | send ${NEWUSERPASS}\n
|
---|
116 | expect New password
|
---|
117 | send ${NEWUSERPASS}\n
|
---|
118 | expect Success
|
---|
119 | EOF
|
---|
120 |
|
---|
121 | testit "set user password with kpasswd" $rkpty ./tmpkpasswdscript $samba4kpasswd --cache=$PREFIX/tmpccache nettestuser@$REALM || failed=`expr $failed + 1`
|
---|
122 |
|
---|
123 | testit "kinit with user password" $samba4kinit --password-file=./tmpuserpassfile --request-pac nettestuser@$REALM || failed=`expr $failed + 1`
|
---|
124 |
|
---|
125 | test_smbclient "Test login with user kerberos ccache" 'ls' -k yes || failed=`expr $failed + 1`
|
---|
126 |
|
---|
127 | KRB5CCNAME="$PREFIX/tmpccache"
|
---|
128 | export KRB5CCNAME
|
---|
129 |
|
---|
130 | testit "del user with kerberos ccache" $VALGRIND $net user delete nettestuser $CONFIGURATION -k yes $@ || failed=`expr $failed + 1`
|
---|
131 |
|
---|
132 | rm -f tmpccfile tmppassfile tmpuserpassfile tmpuserccache tmpkpasswdscript
|
---|
133 | exit $failed
|
---|