mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Updates to the build farm tests:
- Get valid/invalid users working - Test preexec, preexec close Andrew Bartlett
This commit is contained in:
parent
a59f731256
commit
36441899e6
@ -6,3 +6,5 @@ security="invalidusers"
|
||||
|
||||
(test_listfilesauth_should_deny $security) || exit 1
|
||||
|
||||
security="validusers"
|
||||
(test_listfilesauth $security) || exit 1
|
||||
|
28
testsuite/build_farm/basicsmb-preexec.test
Normal file
28
testsuite/build_farm/basicsmb-preexec.test
Normal file
@ -0,0 +1,28 @@
|
||||
. basicsmb.fns
|
||||
|
||||
password=samba
|
||||
(test_smb_conf_setup && test_smbpasswd $password ) || exit 1
|
||||
|
||||
rm -f $prefix/testdir/preexec_touch
|
||||
|
||||
mode=PREEXEC
|
||||
(test_listfilesauth $mode) || exit 1
|
||||
|
||||
if [ -f $prefix/testdir/preexec_touch ]; then
|
||||
rm -f $prefix/testdir/preexec_touch
|
||||
else
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
mode=PREEXEC_close
|
||||
(test_listfilesauth $mode) || exit 1
|
||||
|
||||
if [ -f $prefix/testdir/preexec_touch ]; then
|
||||
rm -f $prefix/testdir/preexec_touch
|
||||
else
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
mode=PREEXEC_cl_fail
|
||||
(test_listfilesauth_should_deny $mode) || exit 1
|
||||
|
@ -21,14 +21,18 @@
|
||||
# directory when testing. Some of them take a -c parameter, but tpot
|
||||
# says it's not done consistently.
|
||||
|
||||
template_smb_conf_setup() {
|
||||
cat basicsmb.smb.conf$1.template | \
|
||||
template_setup() {
|
||||
cat $1.template | \
|
||||
sed "s|PREFIX|$prefix|g" | \
|
||||
sed "s|BUILD_FARM|$test_root|g" | \
|
||||
sed "s|WHOAMI|$whoami|g" | \
|
||||
sed "s|LOGLEVEL|$loglevel|g" \
|
||||
> $prefix/lib/smb.conf$1
|
||||
echo "template_smb_conf_setup: Created $prefix/lib/smb.conf$1"
|
||||
> $prefix/$2
|
||||
echo "template_setup: Created $prefix/$2"
|
||||
}
|
||||
|
||||
template_smb_conf_setup() {
|
||||
template_setup "basicsmb.smb.conf$1" "lib/smb.conf$1"
|
||||
}
|
||||
|
||||
test_smb_conf_setup() {
|
||||
@ -50,7 +54,13 @@ test_smb_conf_setup() {
|
||||
|
||||
template_smb_conf_setup
|
||||
template_smb_conf_setup .hostsequiv
|
||||
template_smb_conf_setup .validusers
|
||||
template_smb_conf_setup .invalidusers
|
||||
template_smb_conf_setup .preexec
|
||||
template_smb_conf_setup .preexec_close
|
||||
template_smb_conf_setup .preexec_cl_fail
|
||||
|
||||
template_setup preexec lib/preexec
|
||||
|
||||
echo "127.0.0.1 localhost">$prefix/lib/lmhosts
|
||||
echo "127.0.0.2 BUILDFARM">>$prefix/lib/lmhosts
|
||||
@ -59,6 +69,12 @@ test_smb_conf_setup() {
|
||||
echo "127.0.0.5 SERVER">>$prefix/lib/lmhosts
|
||||
echo "127.0.0.6 DOMAIN">>$prefix/lib/lmhosts
|
||||
echo "127.0.0.7 HOSTSEQUIV">>$prefix/lib/lmhosts
|
||||
echo "127.0.0.7 VALIDUSERS">>$prefix/lib/lmhosts
|
||||
echo "127.0.0.7 INVALIDUSERS">>$prefix/lib/lmhosts
|
||||
echo "127.0.0.7 PREEXEC">>$prefix/lib/lmhosts
|
||||
echo "127.0.0.7 PREEXEC_CLOSE">>$prefix/lib/lmhosts
|
||||
echo "127.0.0.7 PREEXEC_CL_FAIL">>$prefix/lib/lmhosts
|
||||
|
||||
|
||||
echo "127.0.0.1" > $prefix/lib/hosts.equiv
|
||||
|
||||
|
1
testsuite/build_farm/basicsmb.smb.conf.preexec.template
Normal file
1
testsuite/build_farm/basicsmb.smb.conf.preexec.template
Normal file
@ -0,0 +1 @@
|
||||
preexec = /bin/sh PREFIX/lib/preexec
|
@ -0,0 +1,2 @@
|
||||
preexec close = yes
|
||||
preexec = /bin/sh PREFIX/lib/preexec_does_not_exist
|
@ -0,0 +1,2 @@
|
||||
preexec close = yes
|
||||
preexec = /bin/sh PREFIX/lib/preexec
|
@ -0,0 +1 @@
|
||||
valid users = WHOAMI
|
2
testsuite/build_farm/preexec.template
Normal file
2
testsuite/build_farm/preexec.template
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
echo "Test worked" > PREFIX/testdir/preexec_touch
|
@ -3,6 +3,7 @@ basicsmb-sharesec basicsmb-usersec \
|
||||
basicsmb-serversec basicsmb-domainsec basicsmb-domainsec-nt4 \
|
||||
basicsmb-shareguest basicsmb-hostsequiv basicsmb-invalidusers \
|
||||
basicsmb-hostsdeny basicsmb-remote-pass-change \
|
||||
basicsmb-preexec \
|
||||
torture-FDPASS torture-LOCK1 torture-LOCK2 \
|
||||
torture-LOCK3 torture-LOCK4 torture-LOCK5 \
|
||||
torture-UNLINK torture-BROWSE torture-ATTR \
|
||||
|
Loading…
Reference in New Issue
Block a user