test more combination of context building

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19040 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-11-15 08:45:51 +00:00
parent 774e93dac2
commit 0f08e9941a

View File

@@ -129,9 +129,30 @@ ${context} --no-dns-canon --name-type=krb5-principal-name host/lucid || \
{ exitcode=1 ; echo test failed; }
echo "test context building"
echo "mutual"
${context} --mutual --name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo test failed; }
for mech in krb5 spnego ; do
echo "${mech} no-mutual"
${context} --mech-type=${mech} \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo test failed; }
echo "${mech} mutual"
${context} --mech-type=${mech} \
--mutual \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo test failed; }
echo "${mech}: delegate"
${context} --mech-type=${mech} \
--delegate \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo test failed; }
echo "${mech}: mutual delegate"
${context} --mech-type=${mech} \
--mutual --delegate \
--name-type=hostbased-service host@lucid.test.h5l.se || \
{ exitcode=1 ; echo test failed; }
done
#echo "dce-style"
#${context} --dce-style --name-type=hostbased-service host@lucid.test.h5l.se || \