77865a09ec55c0d884a577f2ee3e5e5205f855d1
[gd/samba-autobuild/.git] / testprogs / blackbox / test_pdbtest.sh
1 #!/bin/sh
2 # Blackbox tests for pdbtest
3 # Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@samba.org>
4 # Copyright (C) 2006-2012 Andrew Bartlett <abartlet@samba.org>
5
6 if [ $# -lt 2 ]; then
7 cat <<EOF
8 Usage: test_pdbtest.sh SERVER PREFIX SMBCLIENT SMB_CONF
9 EOF
10 exit 1;
11 fi
12
13 SERVER=$1
14 PREFIX=$2
15 smbclient=$3
16 SMB_CONF=$4
17 shift 4
18 failed=0
19
20 samba4bindir="$BINDIR"
21 pdbtest="$samba4bindir/pdbtest"
22 pdbedit="$samba4bindir/pdbedit"
23 net="$samba4bindir/net"
24 smbpasswd="$samba4bindir/smbpasswd"
25 rkpty="$samba4bindir/rkpty"
26
27 . `dirname $0`/subunit.sh
28
29 test_smbclient() {
30         name="$1"
31         cmd="$2"
32         shift
33         shift
34         echo "test: $name"
35         $VALGRIND $smbclient $CONFIGURATION //$SERVER/tmp -c "$cmd" $@
36         status=$?
37         if [ x$status = x0 ]; then
38                 echo "success: $name"
39         else
40                 echo "failure: $name"
41         fi
42         return $status
43 }
44
45 UID_WRAPPER_ROOT=1
46 export UID_WRAPPER_ROOT
47
48 testit "pdbtest" $VALGRIND $BINDIR/pdbtest -u pdbtest || failed=`expr $failed + 1`
49
50 NEWUSERPASS=testPaSS@01%
51
52 echo "set password with pdbedit"
53 cat > ./tmpsmbpasswdscript <<EOF
54 expect new password:
55 send ${NEWUSERPASS}\n
56 expect retype new password:
57 send ${NEWUSERPASS}\n
58 EOF
59
60 testit "create user with pdbedit" $rkpty ./tmpsmbpasswdscript $VALGRIND $pdbedit -a pdbtest --account-desc="pdbedit-test-user" $@ || failed=`expr $failed + 1`
61 USERPASS=$NEWUSERPASS
62
63 test_smbclient "Test login with user (ntlm)" 'ls' -k no -Updbtest%$NEWUSERPASS $@ || failed=`expr $failed + 1`
64
65 testit "modify user"  $VALGRIND $pdbedit --modify pdbtest --drive="D:" $@ || failed=`expr $failed + 1`
66
67 test_smbclient "Test login with user (ntlm)" 'ls' -k no -Updbtest%$NEWUSERPASS $@|| failed=`expr $failed + 1`
68
69 NEWUSERPASS=testPaSS@02%
70
71 echo "set password with smbpasswd"
72 cat > ./tmpsmbpasswdscript <<EOF
73 expect New SMB password:
74 send ${NEWUSERPASS}\n
75 expect Retype new SMB password:
76 send ${NEWUSERPASS}\n
77 EOF
78
79 testit "set user password with smbpasswd" $rkpty ./tmpsmbpasswdscript $smbpasswd -L pdbtest -c $SMB_CONF || failed=`expr $failed + 1`
80 USERPASS=$NEWUSERPASS
81
82 test_smbclient "Test login with user (ntlm)" 'ls' -k no -Updbtest%$NEWUSERPASS $@|| failed=`expr $failed + 1`
83
84 testit "modify user - disabled"  $VALGRIND $net sam set disabled pdbtest yes $@ || failed=`expr $failed + 1`
85
86 testit_expect_failure  "Test login with disabled suer" $VALGRIND $smbclient //$SERVER/tmp -c 'ls' -k no -Updbtest@%$USERPASS && failed=`expr $failed + 1`
87
88 testit "modify user - enabled"  $VALGRIND $net sam set disabled pdbtest no $@ || failed=`expr $failed + 1`
89
90 test_smbclient "Test login with re-enabled user (ntlm)" 'ls' -k no -Updbtest%$NEWUSERPASS || failed=`expr $failed + 1`
91
92 testit "modify user - must change password now"  $VALGRIND $net sam set pwdmustchangenow pdbtest yes $@ || failed=`expr $failed + 1`
93
94 testit_expect_failure  "Test login with expired password" $VALGRIND $smbclient //$SERVER/tmp -c 'ls' -k no -Updbtest@%$USERPASS && failed=`expr $failed + 1`
95
96 testit "modify user - disable password expiry"  $VALGRIND $net sam set pwnoexp pdbtest yes $@ || failed=`expr $failed + 1`
97
98 test_smbclient "Test login with no expiry (ntlm)" 'ls' -k no -Updbtest%$NEWUSERPASS || failed=`expr $failed + 1`
99
100 testit "del user"  $VALGRIND $pdbedit -x pdbtest $@ || failed=`expr $failed + 1`
101
102 rm ./tmpsmbpasswdscript
103
104 exit $failed