本文整理汇总了Python中subscription_manager.repolib.RepoUpdateActionCommand.override_supported方法的典型用法代码示例。如果您正苦于以下问题:Python RepoUpdateActionCommand.override_supported方法的具体用法?Python RepoUpdateActionCommand.override_supported怎么用?Python RepoUpdateActionCommand.override_supported使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类subscription_manager.repolib.RepoUpdateActionCommand
的用法示例。
在下文中一共展示了RepoUpdateActionCommand.override_supported方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_repo_update_forbidden_when_registered
# 需要导入模块: from subscription_manager.repolib import RepoUpdateActionCommand [as 别名]
# 或者: from subscription_manager.repolib.RepoUpdateActionCommand import override_supported [as 别名]
def test_repo_update_forbidden_when_registered(self):
existing_repo = Repo('testrepo')
existing_repo['proxy_username'] = "blah"
incoming_repo = {'proxy_username': 'foo'}
update_action = RepoUpdateActionCommand()
update_action.override_supported = True
self.assertRaises(UnsupportedOperationException, update_action.update_repo, existing_repo, incoming_repo)
示例2: test_update_when_registered_and_existing_repo
# 需要导入模块: from subscription_manager.repolib import RepoUpdateActionCommand [as 别名]
# 或者: from subscription_manager.repolib.RepoUpdateActionCommand import override_supported [as 别名]
def test_update_when_registered_and_existing_repo(self, mock_file):
mock_file = mock_file.return_value
mock_file.section.return_value = Repo('x', [('gpgcheck', 'original'), ('gpgkey', 'some_key')])
def stub_content():
return [Repo('x', [('gpgcheck', 'new'), ('gpgkey', 'new_key')])]
update_action = RepoUpdateActionCommand()
update_action.get_unique_content = stub_content
update_action.override_supported = True
update_report = update_action.perform()
written_repo = mock_file.update.call_args[0][0]
self.assertEquals('new', written_repo['gpgcheck'])
self.assertEquals('new_key', written_repo['gpgkey'])
self.assertEquals(1, update_report.updates())