本文整理匯總了Python中robottelo.cli.contenthost.ContentHost.package_upgrade_all方法的典型用法代碼示例。如果您正苦於以下問題:Python ContentHost.package_upgrade_all方法的具體用法?Python ContentHost.package_upgrade_all怎麽用?Python ContentHost.package_upgrade_all使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類robottelo.cli.contenthost.ContentHost
的用法示例。
在下文中一共展示了ContentHost.package_upgrade_all方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_positive_upgrade_packages_all
# 需要導入模塊: from robottelo.cli.contenthost import ContentHost [as 別名]
# 或者: from robottelo.cli.contenthost.ContentHost import package_upgrade_all [as 別名]
def test_positive_upgrade_packages_all(self):
"""Upgrade all the content host packages remotely
@Feature: Content Host - Package
@Assert: Packages (at least 1 with newer version available) were
successfully upgraded
"""
self.client.run("yum install -y {0}".format(FAKE_1_CUSTOM_PACKAGE))
ContentHost.package_upgrade_all(
{u"content-host": self.client.hostname, u"organization-id": KatelloAgentTestCase.org["id"]}
)
result = self.client.run("rpm -q {0}".format(FAKE_2_CUSTOM_PACKAGE))
self.assertEqual(result.return_code, 0)
示例2: test_contenthost_package_upgrade_all
# 需要導入模塊: from robottelo.cli.contenthost import ContentHost [as 別名]
# 或者: from robottelo.cli.contenthost.ContentHost import package_upgrade_all [as 別名]
def test_contenthost_package_upgrade_all(self):
"""@Test: Upgrade all the content host packages remotely
@Feature: Content Host - Package
@Assert: Packages (at least 1 with newer version available) were
successfully upgraded
"""
self.vm.run('yum install -y {}'.format(FAKE_1_CUSTOM_PACKAGE))
result = ContentHost.package_upgrade_all({
u'organization-id': TestCHKatelloAgent.org['id'],
u'content-host': self.vm.hostname,
})
self.assertEqual(result.return_code, 0)
result = self.vm.run('rpm -q {}'.format(FAKE_2_CUSTOM_PACKAGE))
self.assertEqual(result.return_code, 0)