本文整理汇总了Python中pulp_rpm.plugins.distributors.yum.configuration.get_repo_checksum_type函数的典型用法代码示例。如果您正苦于以下问题:Python get_repo_checksum_type函数的具体用法?Python get_repo_checksum_type怎么用?Python get_repo_checksum_type使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了get_repo_checksum_type函数的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_repo_checksum_update_distributor_config_non_yum
def test_get_repo_checksum_update_distributor_config_non_yum(self, m_dist_qs, m_dist_ctrl):
"""
If this isn't a yum distributor the config should not be updated in the database
"""
self.mock_conduit.get_repo_scratchpad.return_value = {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: "sha1"}
self.assertEquals("sha1", configuration.get_repo_checksum_type(self.mock_conduit, self.config))
self.assertFalse(m_dist_ctrl.update.called)
示例2: test_get_repo_checksum_update_distributor_config
def test_get_repo_checksum_update_distributor_config(self, m_dist_qs, m_dist_ctrl):
self.mock_conduit.get_repo_scratchpad.return_value = {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: "sha1"}
m_dist_qs.get_or_404.return_value.distributor_type_id = TYPE_ID_DISTRIBUTOR_YUM
self.assertEquals("sha1", configuration.get_repo_checksum_type(self.mock_conduit, self.config))
m_dist_ctrl.update.assert_called_with(mock.ANY, mock.ANY, config={"checksum_type": "sha1"})
示例3: test_get_repo_checksum_update_distributor_config
def test_get_repo_checksum_update_distributor_config(self, mock_distributor_manager):
self.mock_conduit.get_repo_scratchpad.return_value = \
{SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: 'sha1'}
mock_distributor_manager.return_value.get_distributor.return_value = \
{'distributor_type_id': TYPE_ID_DISTRIBUTOR_YUM}
self.assertEquals('sha1',
configuration.get_repo_checksum_type(self.mock_conduit, self.config))
mock_distributor_manager.return_value.update_distributor_config. \
assert_called_with(ANY, ANY, {'checksum_type': 'sha1'})
示例4: test_get_repo_checksum_default_no_update
def test_get_repo_checksum_default_no_update(self, m_dist_qs, m_dist_ctrl):
"""
Tests that when the default checksum type is used, it does not update the
distributor config. This is because if a repository is created and then
published without syncing, it will force the checksum type to be the
default. When you later sync the repo and it has a checksum type that
isn't the default, it will break.
"""
# Setup
self.mock_conduit.get_repo_scratchpad.return_value = {"foo": "value"}
# Test
self.assertEquals(CONFIG_DEFAULT_CHECKSUM, configuration.get_repo_checksum_type(self.mock_conduit, self.config))
self.assertFalse(m_dist_ctrl.update.called)
示例5: test_get_repo_checksum_distributor_id_not_yum_plugin
def test_get_repo_checksum_distributor_id_not_yum_plugin(self, m_dist_qs, m_dist_ctrl):
self.mock_conduit.get_repo_scratchpad.return_value = None
m_dist_qs.get_or_404.side_effect = MissingResource()
self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
configuration.get_repo_checksum_type(self.mock_conduit, self.config))
示例6: test_get_repo_checksum_conduit_with_no_scratchpad
def test_get_repo_checksum_conduit_with_no_scratchpad(self, m_dist_qs, m_dist_ctrl):
self.mock_conduit.get_repo_scratchpad.return_value = None
self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
configuration.get_repo_checksum_type(self.mock_conduit, self.config))
示例7: test_get_repo_checksum_convert_sha_to_sha1
def test_get_repo_checksum_convert_sha_to_sha1(self, m_dist_qs, m_dist_ctrl):
config_with_checksum = PluginCallConfiguration({}, {CONFIG_KEY_CHECKSUM_TYPE: 'sha'})
self.assertEquals('sha1', configuration.get_repo_checksum_type(self.mock_conduit,
config_with_checksum))
示例8: test_get_repo_checksum_from_default
def test_get_repo_checksum_from_default(self, m_dist_qs, m_dist_ctrl):
self.mock_conduit.get_repo_scratchpad.return_value = {'foo': 'value'}
self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
configuration.get_repo_checksum_type(self.mock_conduit, self.config))
示例9: test_get_repo_checksum_not_in_scratchpad
def test_get_repo_checksum_not_in_scratchpad(self, m_dist_qs, m_dist_ctrl):
# Test with other data in the scratchpad
self.mock_conduit.get_repo_scratchpad.return_value = \
{'foo': 'bar'}
self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
configuration.get_repo_checksum_type(self.mock_conduit, self.config))
示例10: test_get_repo_checksum_from_scratchpad
def test_get_repo_checksum_from_scratchpad(self, m_dist_qs, m_dist_ctrl):
self.mock_conduit.get_repo_scratchpad.return_value = \
{SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: 'sha1'}
self.assertEquals('sha1',
configuration.get_repo_checksum_type(self.mock_conduit, self.config))
示例11: test_get_repo_checksum_from_config
def test_get_repo_checksum_from_config(self, m_dist_qs, m_dist_ctrl):
config_with_checksum = PluginCallConfiguration({}, {CONFIG_KEY_CHECKSUM_TYPE: "sha1"})
self.assertEquals("sha1", configuration.get_repo_checksum_type(self.mock_conduit, config_with_checksum))
示例12: test_get_repo_checksum_from_config
def test_get_repo_checksum_from_config(self):
config_with_checksum = PluginCallConfiguration({}, {CONFIG_KEY_CHECKSUM_TYPE: 'sha1'})
self.assertEquals('sha1', configuration.get_repo_checksum_type(self.mock_conduit,
config_with_checksum))