本文整理汇总了Python中config_rpm_maker.hostrpmbuilder.HostRpmBuilder.build方法的典型用法代码示例。如果您正苦于以下问题:Python HostRpmBuilder.build方法的具体用法?Python HostRpmBuilder.build怎么用?Python HostRpmBuilder.build使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类config_rpm_maker.hostrpmbuilder.HostRpmBuilder
的用法示例。
在下文中一共展示了HostRpmBuilder.build方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_should_remove_logger_handlers
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_remove_logger_handlers(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._remove_logger_handlers.assert_called_with()
示例2: test_should_move_variables_out_of_rpm_dir
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_move_variables_out_of_rpm_dir(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._move_variables_out_of_rpm_dir.assert_called_with()
示例3: test_should_clean_up_after_successful_build
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_clean_up_after_successful_build(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._clean_up.assert_called_with()
示例4: test_should_write_revision_file_for_config_viewer
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_write_revision_file_for_config_viewer(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._write_revision_file_for_config_viewer.assert_called_with()
示例5: test_should_build_rpm_using_rpmbuild
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_build_rpm_using_rpmbuild(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._build_rpm_using_rpmbuild.assert_called_with()
示例6: test_should_save_network_variables
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_save_network_variables(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._save_network_variables.assert_called_with()
示例7: test_should_save_file_list
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_save_file_list(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._save_file_list.assert_called_with()
示例8: test_should_export_spec_file
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_export_spec_file(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._export_spec_file.assert_called_with()
示例9: test_should_filter_tokens_in_config_viewer
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_filter_tokens_in_config_viewer(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._filter_tokens_in_config_viewer.assert_called_with()
示例10: test_should_create_variables_directory_if_it_does_not_exist
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_create_variables_directory_if_it_does_not_exist(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
mock_mkdir.assert_any_call('/path/to/variables-directory')
示例11: test_should_save_segment_variables
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_save_segment_variables(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._save_segment_variables.assert_called_with(
do_not_write_host_segment_variable=False)
示例12: test_should_not_build_rpm_using_rpmbuild
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_not_build_rpm_using_rpmbuild(self, mock_exists, mock_mkdir, mock_get):
mock_get.return_value = True
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
mock_get.assert_any_call()
self.assertEqual(0, len(self.mock_host_rpm_builder._build_rpm_using_rpmbuild.call_args_list))
示例13: test_should_write_patch_info_into_variables_and_configviewer
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_write_patch_info_into_variables_and_configviewer(self, mock_exists, mock_mkdir):
mock_exists.return_value = False
self.mock_host_rpm_builder._generate_patch_info.return_value = "patchinfo1\npatchinfo2\npatchinfo3\n"
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._write_file.assert_any_call('/path/to/variables-directory/VARIABLES', 'patchinfo1\npatchinfo2\npatchinfo3\n')
self.mock_host_rpm_builder._write_file.assert_any_call('config_viewer_host_dir/devweb01.variables', 'patchinfo1\npatchinfo2\npatchinfo3\n')
示例14: test_should_write_rpm_name_and_protection_variable_for_host_rpm
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_write_rpm_name_and_protection_variable_for_host_rpm(self, _, mock_exists, mock_mkdir):
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._write_file.assert_any_call('/path/to/variables-directory/RPM_NAME',
'devweb01')
self.mock_host_rpm_builder._write_file.assert_any_call('/path/to/variables-directory/INSTALL_PROTECTION_DEPENDENCY',
'[email protected]@@[email protected]@@')
示例15: test_should_save_log_entries_to_variable
# 需要导入模块: from config_rpm_maker.hostrpmbuilder import HostRpmBuilder [as 别名]
# 或者: from config_rpm_maker.hostrpmbuilder.HostRpmBuilder import build [as 别名]
def test_should_save_log_entries_to_variable(self, mock_exists, mock_mkdir, mock_overlay_order):
config_rpm_maker.hostrpmbuilder.OVERLAY_ORDER = ['segment1', 'segment2', 'segment3']
mock_exists.return_value = False
HostRpmBuilder.build(self.mock_host_rpm_builder)
self.mock_host_rpm_builder._save_log_entries_to_variable.assert_called_with(['segment1-svn-paths', 'segment2-svn-paths', 'segment3-svn-paths'])