1
0
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:
Andrew Bartlett 0001-01-01 00:00:00 +00:00
parent 45bf995bf6
commit 56a881b2b4
6 changed files with 65 additions and 58 deletions

View 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

View 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

View 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

View File

@ -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

View File

@ -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

View File

@ -1 +1 @@
TEST_ALL="basicsmb"
TEST_ALL="basicsmb-sharelist basicsmb-listfilesauth basicsmb-listfilesnpw"