本文整理匯總了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'])