blob: 30e6830be5b5552252873036ec2db2bd004d18ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
if [ $# -lt 1 ]; then
cat <<EOF
Usage: blackbox_newuser.sh PREFIX
EOF
exit 1;
fi
PREFIX="$1"
shift 1
. `dirname $0`/../../../testprogs/blackbox/subunit.sh
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
net="./bin/net"
CONFIG="--configfile=$PREFIX/simple-dc/etc/smb.conf"
testit "newuser" $net newuser $CONFIG testuser testpass
# check the enable account script
testit "enableaccount" $net enableaccount $CONFIG testuser
# check the enable account script
testit "setpassword" $net setpassword $CONFIG testuser --newpassword=testpass2
# check the setexpiry script
testit "noexpiry" $net setexpiry $CONFIG testuser --noexpiry
testit "expiry" $net setexpiry $CONFIG testuser --days=7
exit $failed
|