diff options
| author | Oleg Fayans <ofayans@redhat.com> | 2016-09-09 14:17:49 +0200 |
|---|---|---|
| committer | David Kupka <dkupka@redhat.com> | 2016-09-22 15:20:42 +0200 |
| commit | d17d13d77a7c09cbc99c8bb0a3f7af3b72da8aca (patch) | |
| tree | 2bbd137d2b13efbf9528c959f1bc07c685799311 /ipatests/test_integration | |
| parent | 759bbcdfcbeade91c77b201c439c939d6477cd08 (diff) | |
| download | freeipa-d17d13d77a7c09cbc99c8bb0a3f7af3b72da8aca.tar.gz freeipa-d17d13d77a7c09cbc99c8bb0a3f7af3b72da8aca.tar.xz freeipa-d17d13d77a7c09cbc99c8bb0a3f7af3b72da8aca.zip | |
tests: Added necessary getkeytabs calls to fixtures
Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipatests/test_integration')
| -rw-r--r-- | ipatests/test_integration/test_caless.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ipatests/test_integration/test_caless.py b/ipatests/test_integration/test_caless.py index 2044d92e8..bbf1fef41 100644 --- a/ipatests/test_integration/test_caless.py +++ b/ipatests/test_integration/test_caless.py @@ -1194,6 +1194,9 @@ class TestIPACommands(CALessBase): self.master.run_command(['ipa', 'host-add', self.test_hostname, '--force', '--certificate', self.client_pem]) + self.master.run_command(['ipa-getkeytab', '-s', self.master.hostname, + '-p' "host/%s" % self.test_hostname, + '-k', paths.IPA_KEYTAB]) try: yield finally: @@ -1207,6 +1210,10 @@ class TestIPACommands(CALessBase): self.master.run_command(['ipa', 'service-add', self.test_service, '--force', '--certificate', self.client_pem]) + self.master.run_command(['ipa-getkeytab', '-s', + self.master.hostname, + '-p', self.test_service, + '-k', paths.IPA_KEYTAB]) yield def test_service_mod_doesnt_revoke(self): |
