mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
Changed some of the tests around, made failures for parts actualy count
Andrew Bartlett
This commit is contained in:
parent
45bf995bf6
commit
56a881b2b4
22
testsuite/build_farm/basicsmb-listfilesauth.test
Normal file
22
testsuite/build_farm/basicsmb-listfilesauth.test
Normal file
@ -0,0 +1,22 @@
|
||||
. basicsmb.fns
|
||||
|
||||
test_listfilesauth() {
|
||||
echo $prefix/bin/smbclient //localhost/samba -U$whoami%$password -c 'ls'
|
||||
$prefix/bin/smbclient //localhost/samba -U$whoami%$password -c 'ls'
|
||||
status=$?
|
||||
if [ $status = 0 ]; then
|
||||
echo "listed files OK"
|
||||
else
|
||||
echo "listing files with smbd failed with status $status"
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
password=samba
|
||||
|
||||
(test_smb_conf_setup && test_smbpasswd) || exit 1
|
||||
|
||||
test_listfilesauth || exit 1
|
||||
|
||||
|
22
testsuite/build_farm/basicsmb-listfilesnpw.test
Normal file
22
testsuite/build_farm/basicsmb-listfilesnpw.test
Normal file
@ -0,0 +1,22 @@
|
||||
. basicsmb.fns
|
||||
|
||||
test_listfilesnpw() {
|
||||
echo $prefix/bin/smbclient //localhost/samba -U$whoami% -c 'ls'
|
||||
$prefix/bin/smbclient //localhost/samba -U$whoami% -c 'ls'
|
||||
status=$?
|
||||
if [ $status = 0 ]; then
|
||||
echo "smbd listed files in user level security with NO PASSWORD!"
|
||||
return 1
|
||||
else
|
||||
echo "listing files with smbd failed with status $status (correct)"
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
password=samba
|
||||
|
||||
(test_smb_conf_setup && test_smbpasswd) || exit 1
|
||||
|
||||
test_listfilesnpw || exit 1
|
||||
|
||||
|
19
testsuite/build_farm/basicsmb-sharelist.test
Normal file
19
testsuite/build_farm/basicsmb-sharelist.test
Normal file
@ -0,0 +1,19 @@
|
||||
. basicsmb.fns
|
||||
test_sharelist() {
|
||||
echo $prefix/bin/smbclient -U$whoami% -L localhost
|
||||
$prefix/bin/smbclient -U$whoami% -L localhost
|
||||
status=$?
|
||||
if [ $status = 0 ]; then
|
||||
echo "smbd listed shares OK"
|
||||
else
|
||||
echo "listing shares with smbd failed with status $status"
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
(test_smb_conf_setup) || exit 1
|
||||
|
||||
test_sharelist || exit 1
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
log level = 3
|
||||
encrypt passwords = yes
|
||||
server string = Samba %v Build Farm Tests
|
||||
name resolve order = lmhosts
|
||||
|
||||
[test]
|
||||
path = PREFIX/testdir
|
||||
|
@ -1,57 +0,0 @@
|
||||
test_smb_conf_setup() {
|
||||
cat basicsmb.smb.conf.template | sed "s|PREFIX|$prefix|g" | sed "s|BUILD_FARM|$pwd|g" > $prefix/lib/smb.conf
|
||||
echo "Setting up smb.conf:"
|
||||
cat $prefix/lib/smb.conf
|
||||
|
||||
}
|
||||
|
||||
test_smbpasswd() {
|
||||
( echo $password ; echo $password; ) | $prefix/bin/smbpasswd -L -s -a $whoami
|
||||
status=$?
|
||||
if [ $status = 0 ]; then
|
||||
echo "smbpasswd correctly set inital password ($password)"
|
||||
else
|
||||
echo "smbpasswd failed to set inital password ($password)!"
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
test_sharelist() {
|
||||
if $prefix/bin/smbclient -U$whoami% -L $host; then
|
||||
echo "smbd listed shares OK"
|
||||
else
|
||||
echo "listing shares with smbd failed with $?"
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
test_listfiles() {
|
||||
if $prefix/bin/smbclient //$host/samba -U$whoami% -c 'ls'; then
|
||||
echo "listed files OK"
|
||||
else
|
||||
echo "listing files with smbd failed with $?"
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
test_listfilesauth() {
|
||||
if $prefix/bin/smbclient //$host/samba_2_2 -U$whoami%$password -c 'ls'; then
|
||||
echo "listed files OK"
|
||||
else
|
||||
echo "listing files with smbd failed with $?"
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
(test_smb_conf_setup && test_smbpasswd) || exit 1
|
||||
|
||||
test_sharelist
|
||||
test_listfiles
|
||||
test_listfilesauth
|
||||
|
||||
|
@ -1 +1 @@
|
||||
TEST_ALL="basicsmb"
|
||||
TEST_ALL="basicsmb-sharelist basicsmb-listfilesauth basicsmb-listfilesnpw"
|
||||
|
Loading…
Reference in New Issue
Block a user