s4:blackbox password tests - more complex passwords
[samba.git] / source4 / setup / tests / blackbox_newuser.sh
1 #!/bin/sh
2
3 if [ $# -lt 1 ]; then
4 cat <<EOF
5 Usage: blackbox_newuser.sh PREFIX
6 EOF
7 exit 1;
8 fi
9
10 PREFIX="$1"
11 shift 1
12
13 . `dirname $0`/../../../testprogs/blackbox/subunit.sh
14
15
16 testit "simple-dc" $PYTHON ./setup/provision --server-role="dc" --domain=FOO --realm=foo.example.com --domain-sid=S-1-5-21-4177067393-1453636373-93818738 --targetdir=$PREFIX/simple-dc
17 net="./bin/net"
18
19 CONFIG="--configfile=$PREFIX/simple-dc/etc/smb.conf"
20
21 testit "newuser" $net newuser $CONFIG testuser testp@ssw0Rd
22
23 # check the enable account script
24 testit "enableaccount" $net enableaccount $CONFIG testuser
25
26 # check the enable account script
27 testit "setpassword" $net setpassword $CONFIG testuser --newpassword=testp@ssw0Rd2
28
29 # check the setexpiry script
30 testit "noexpiry" $net setexpiry $CONFIG testuser --noexpiry
31 testit "expiry" $net setexpiry $CONFIG testuser --days=7
32
33 exit $failed