當前位置: 首頁>>代碼示例>>Python>>正文


Python ContentHost.package_upgrade_all方法代碼示例

本文整理匯總了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)
開發者ID:adammhaile,項目名稱:robottelo,代碼行數:17,代碼來源:test_contenthost.py

示例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)
開發者ID:ares,項目名稱:robottelo,代碼行數:19,代碼來源:test_contenthost.py


注:本文中的robottelo.cli.contenthost.ContentHost.package_upgrade_all方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。