mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 15:40:01 -06:00
ipatests: test ipa-getkeytab server option
Test various usages of the -s/--server option: * -s is defined, use it as the server * no -s, use the host value from /etc/ipa/default.conf * -s is '_srv_', do DNS discovery https://pagure.io/freeipa/issue/8478 Signed-off-by: Rob Crittenden <rcritten@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
parent
fece03d446
commit
7729b1c8ff
@ -1490,6 +1490,64 @@ class TestIPACommand(IntegrationTest):
|
|||||||
|
|
||||||
assert isrgrootx1_nick in result
|
assert isrgrootx1_nick in result
|
||||||
|
|
||||||
|
def test_ipa_getkeytab_server(self):
|
||||||
|
"""
|
||||||
|
Exercise the ipa-getkeytab server options
|
||||||
|
|
||||||
|
This relies on the behavior that without a TGT
|
||||||
|
ipa-getkeytab will quit and not do much of anything.
|
||||||
|
|
||||||
|
A bogus keytab and principal are passed in to satisfy the
|
||||||
|
minimum requirements.
|
||||||
|
"""
|
||||||
|
tasks.kdestroy_all(self.master)
|
||||||
|
|
||||||
|
# Pass in a server name to use
|
||||||
|
result = self.master.run_command(
|
||||||
|
[
|
||||||
|
paths.IPA_GETKEYTAB,
|
||||||
|
"-k",
|
||||||
|
"/tmp/keytab",
|
||||||
|
"-p",
|
||||||
|
"foo",
|
||||||
|
"-s",
|
||||||
|
self.master.hostname,
|
||||||
|
"-v",
|
||||||
|
], raiseonerr=False).stderr_text
|
||||||
|
|
||||||
|
assert 'Using provided server %s' % self.master.hostname in result
|
||||||
|
|
||||||
|
# Don't pass in a name, should use /etc/ipa/default.conf
|
||||||
|
result = self.master.run_command(
|
||||||
|
[
|
||||||
|
paths.IPA_GETKEYTAB,
|
||||||
|
"-k",
|
||||||
|
"/tmp/keytab",
|
||||||
|
"-p",
|
||||||
|
"foo",
|
||||||
|
"-v",
|
||||||
|
], raiseonerr=False).stderr_text
|
||||||
|
|
||||||
|
assert (
|
||||||
|
'Using server from config %s' % self.master.hostname
|
||||||
|
in result
|
||||||
|
)
|
||||||
|
|
||||||
|
# Use DNS SRV lookup
|
||||||
|
result = self.master.run_command(
|
||||||
|
[
|
||||||
|
paths.IPA_GETKEYTAB,
|
||||||
|
"-k",
|
||||||
|
"/tmp/keytab",
|
||||||
|
"-p",
|
||||||
|
"foo",
|
||||||
|
"-s",
|
||||||
|
"_srv_",
|
||||||
|
"-v",
|
||||||
|
], raiseonerr=False).stderr_text
|
||||||
|
|
||||||
|
assert 'Discovered server %s' % self.master.hostname in result
|
||||||
|
|
||||||
|
|
||||||
class TestIPACommandWithoutReplica(IntegrationTest):
|
class TestIPACommandWithoutReplica(IntegrationTest):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user