mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
test_integration: backup custodia conf and keys
Add an integration test for issue 7247 (ipa-backup does not backup Custodia keys and files) The test performs backup / uninstall / check custodia files were removed / restore and check that the custodia conf and keys files are restored. related ticket https://pagure.io/freeipa/issue/7247 Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
parent
c8ba9eb0e6
commit
86a78ca244
@ -24,6 +24,7 @@ import os
|
||||
import re
|
||||
import contextlib
|
||||
|
||||
from ipaplatform.paths import paths
|
||||
from ipapython.dn import DN
|
||||
from ipatests.test_integration.base import IntegrationTest
|
||||
from ipatests.pytest_plugins.integration import tasks
|
||||
@ -101,6 +102,13 @@ def check_kinit(host):
|
||||
return result
|
||||
|
||||
|
||||
def check_custodia_files(host):
|
||||
"""regression test for https://pagure.io/freeipa/issue/7247"""
|
||||
assert host.transport.file_exists(paths.IPA_CUSTODIA_KEYS)
|
||||
assert host.transport.file_exists(paths.IPA_CUSTODIA_CONF)
|
||||
return True
|
||||
|
||||
|
||||
CHECKS = [
|
||||
(check_admin_in_ldap, assert_entries_equal),
|
||||
(check_admin_in_cli, assert_results_equal),
|
||||
@ -108,6 +116,7 @@ CHECKS = [
|
||||
(check_certs, assert_results_equal),
|
||||
(check_dns, assert_results_equal),
|
||||
(check_kinit, assert_results_equal),
|
||||
(check_custodia_files, assert_deepequal)
|
||||
]
|
||||
|
||||
|
||||
@ -155,6 +164,10 @@ class TestBackupAndRestore(IntegrationTest):
|
||||
self.master.run_command(['ipa-server-install',
|
||||
'--uninstall',
|
||||
'-U'])
|
||||
assert not self.master.transport.file_exists(
|
||||
paths.IPA_CUSTODIA_KEYS)
|
||||
assert not self.master.transport.file_exists(
|
||||
paths.IPA_CUSTODIA_CONF)
|
||||
|
||||
dirman_password = self.master.config.dirman_password
|
||||
self.master.run_command(['ipa-restore', backup_path],
|
||||
|
Loading…
Reference in New Issue
Block a user