本文整理汇总了Python中barman.recovery_executor.RecoveryExecutor._analyse_temporary_config_files方法的典型用法代码示例。如果您正苦于以下问题:Python RecoveryExecutor._analyse_temporary_config_files方法的具体用法?Python RecoveryExecutor._analyse_temporary_config_files怎么用?Python RecoveryExecutor._analyse_temporary_config_files使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类barman.recovery_executor.RecoveryExecutor
的用法示例。
在下文中一共展示了RecoveryExecutor._analyse_temporary_config_files方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_analyse_temporary_config_files
# 需要导入模块: from barman.recovery_executor import RecoveryExecutor [as 别名]
# 或者: from barman.recovery_executor.RecoveryExecutor import _analyse_temporary_config_files [as 别名]
def test_analyse_temporary_config_files(self, tmpdir):
"""
Test the method that identifies dangerous options into
the configuration files
"""
# Build directory/files structure for testing
tempdir = tmpdir.mkdir("tempdir")
recovery_info = {
"configuration_files": ["postgresql.conf", "postgresql.auto.conf"],
"tempdir": tempdir.strpath,
"temporary_configuration_files": [],
"results": {"changes": [], "warnings": []},
}
postgresql_conf = tempdir.join("postgresql.conf")
postgresql_auto = tempdir.join("postgresql.auto.conf")
postgresql_conf.write(
"archive_command = something\n"
"data_directory = something\n"
"include = something\n"
'include "without braces"'
)
postgresql_auto.write("archive_command = something\n" "data_directory = something")
recovery_info["temporary_configuration_files"].append(postgresql_conf.strpath)
recovery_info["temporary_configuration_files"].append(postgresql_auto.strpath)
# Build a RecoveryExecutor object (using a mock as server and backup
# manager.
backup_manager = testing_helpers.build_backup_manager()
executor = RecoveryExecutor(backup_manager)
# Identify dangerous options into config files for remote recovery
executor._analyse_temporary_config_files(recovery_info)
assert len(recovery_info["results"]["changes"]) == 2
assert len(recovery_info["results"]["warnings"]) == 4
# Clean for a local recovery test
recovery_info["results"]["changes"] = []
recovery_info["results"]["warnings"] = []
# Identify dangerous options for local recovery
executor._analyse_temporary_config_files(recovery_info)
assert len(recovery_info["results"]["changes"]) == 2
assert len(recovery_info["results"]["warnings"]) == 4