当前位置: 首页>>代码示例>>Python>>正文


Python YumProfiler.install_units方法代码示例

本文整理汇总了Python中pulp_rpm.plugins.profilers.yum.YumProfiler.install_units方法的典型用法代码示例。如果您正苦于以下问题:Python YumProfiler.install_units方法的具体用法?Python YumProfiler.install_units怎么用?Python YumProfiler.install_units使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pulp_rpm.plugins.profilers.yum.YumProfiler的用法示例。


在下文中一共展示了YumProfiler.install_units方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_install_units

# 需要导入模块: from pulp_rpm.plugins.profilers.yum import YumProfiler [as 别名]
# 或者: from pulp_rpm.plugins.profilers.yum.YumProfiler import install_units [as 别名]
 def test_install_units(self):
     repo_id = "test_repo_id"
     errata_obj = self.get_test_errata_object()
     errata_unit = Unit(TYPE_ID_ERRATA, {"id":errata_obj["id"]}, errata_obj, None)
     existing_units = [errata_unit]
     test_repo = profiler_mocks.get_repo(repo_id)
     conduit = profiler_mocks.get_profiler_conduit(existing_units=existing_units,
                                                   repo_bindings=[test_repo])
     example_errata = {"unit_key":errata_unit.unit_key, "type_id":TYPE_ID_ERRATA}
     prof = YumProfiler()
     translated_units  = prof.install_units(self.test_consumer, [example_errata], None, None,
                                            conduit)
     # check repo_id passed to the conduit get_units()
     self.assertEqual(conduit.get_units.call_args[0][0].id, repo_id)
     # check unit association criteria passed to the conduit get_units()
     self.assertEqual(conduit.get_units.call_args[0][1].type_ids, [TYPE_ID_ERRATA])
     self.assertEqual(conduit.get_units.call_args[0][1].unit_filters, errata_unit.unit_key)
     # validate translated units
     self.assertEqual(len(translated_units), 2)
     expected = []
     for r in prof._get_rpms_from_errata(errata_unit):
         expected_name = "%s-%s:%s-%s.%s" % (r["name"], r["epoch"], r["version"], r["release"],
                                             r["arch"])
         expected.append(expected_name)
     for u in translated_units:
         rpm_name = u["unit_key"]["name"]
         self.assertTrue(rpm_name in expected)
开发者ID:bechtoldt,项目名称:pulp_rpm,代码行数:29,代码来源:test_plugins_profilers_yum.py

示例2: test_install_units_with_rpms

# 需要导入模块: from pulp_rpm.plugins.profilers.yum import YumProfiler [as 别名]
# 或者: from pulp_rpm.plugins.profilers.yum.YumProfiler import install_units [as 别名]
    def test_install_units_with_rpms(self):
        """
        Make sure install_units() can handle being given RPMs.
        """
        rpms = [{"name": "rpm_1", "type_id": TYPE_ID_RPM}, {"name": "rpm_2", "type_id": TYPE_ID_RPM}]
        profiler = YumProfiler()

        translated_units = profiler.install_units("consumer", deepcopy(rpms), None, None, "conduit")

        # The RPMs should be unaltered
        self.assertEqual(translated_units, rpms)
开发者ID:,项目名称:,代码行数:13,代码来源:

示例3: test_install_units_with_rpms

# 需要导入模块: from pulp_rpm.plugins.profilers.yum import YumProfiler [as 别名]
# 或者: from pulp_rpm.plugins.profilers.yum.YumProfiler import install_units [as 别名]
    def test_install_units_with_rpms(self):
        """
        Make sure install_units() can handle being given RPMs.
        """
        rpms = [{'name': 'rpm_1', 'type_id': TYPE_ID_RPM},
                {'name': 'rpm_2', 'type_id': TYPE_ID_RPM}]
        profiler = YumProfiler()

        translated_units = profiler.install_units('consumer', deepcopy(rpms), None, None,
                                                  'conduit')

        # The RPMs should be unaltered
        self.assertEqual(translated_units, rpms)
开发者ID:BrnoPCmaniak,项目名称:pulp_rpm,代码行数:15,代码来源:test_yum.py

示例4: test_install_units

# 需要导入模块: from pulp_rpm.plugins.profilers.yum import YumProfiler [as 别名]
# 或者: from pulp_rpm.plugins.profilers.yum.YumProfiler import install_units [as 别名]
    def test_install_units(self):
        """
        Verify that all available packages in the erratum are installed

        In this test, there are two packages in the erratum, and both are
        available to the consumer. Thus, both should be installed.
        """
        repo_id = "test_repo_id"
        errata_obj = self.get_test_errata_object()
        errata_unit = Unit(TYPE_ID_ERRATA, {"id": errata_obj["id"]}, errata_obj, None)
        existing_units = [errata_unit]
        test_repo = profiler_mocks.get_repo(repo_id)

        # create two RPM units that match what is in the erratum
        rpm_units = []
        rpm_unit_key_1 = self.create_profile_entry("emoticons", 0, "0.1", "2", "x86_64",
                                                   "Test Vendor")
        rpm_units.append(Unit(TYPE_ID_RPM, rpm_unit_key_1, {}, None))

        rpm_unit_key_2 = self.create_profile_entry("patb", 0, "0.1", "2", "x86_64", "Test Vendor")
        rpm_units.append(Unit(TYPE_ID_RPM, rpm_unit_key_2, {}, None))

        existing_units += rpm_units

        conduit = profiler_mocks.get_profiler_conduit(existing_units=existing_units,
                                                      repo_bindings=[test_repo],
                                                      repo_units=rpm_units)

        example_errata = {"unit_key": errata_unit.unit_key, "type_id": TYPE_ID_ERRATA}
        prof = YumProfiler()
        translated_units = prof.install_units(self.test_consumer, [example_errata], None, None,
                                              conduit)
        # check repo_id passed to the conduit get_units()
        self.assertEqual(conduit.get_units.call_args[0][0].id, repo_id)
        # check unit association criteria passed to the conduit get_units()
        self.assertEqual(conduit.get_units.call_args_list[0][0][1].type_ids, [TYPE_ID_ERRATA])
        self.assertEqual(conduit.get_units.call_args_list[0][0][1].unit_filters,
                         errata_unit.unit_key)
        # validate translated units
        self.assertEqual(len(translated_units), 2)
        expected = prof._get_rpms_from_errata(errata_unit)
        for u in translated_units:
            rpm_unit_key = u["unit_key"]
            self.assertTrue(rpm_unit_key in expected)
开发者ID:msutter,项目名称:pulp_rpm,代码行数:46,代码来源:test_yum.py

示例5: test_install_units_unit_not_in_repo

# 需要导入模块: from pulp_rpm.plugins.profilers.yum import YumProfiler [as 别名]
# 或者: from pulp_rpm.plugins.profilers.yum.YumProfiler import install_units [as 别名]
    def test_install_units_unit_not_in_repo(self):
        """
        This tests that if an erratum unit is requested to be installed, we do
        not attempt to install any RPM units that are not available in repos.

        For example, if an erratum contains packages for RHEL6 and RHEL7, we do
        not want to ask a RHEL6 consumer to install RHEL7 packages that are
        unavailable on that host.

        This is a related issue to errata applicability but is slightly
        different since the API caller wants to install a particular erratum, and is
        not trying to determine which errata are applicable.

        Note also that RHEA-2014:9999 has emoticons-0.1 and patb-0.1 in
        different package collections; this is atypical and would likely not be
        seen in the wild. I set it up like this to ensure the package list from
        the erratum was being flattened during comparisons.

        More detail is available in https://pulp.plan.io/issues/770
        """
        repo_id = "test_repo_id"

        # this erratum has four RPMs but only two are available
        errata_obj = self.get_test_errata_object(eid='RHEA-2014:9999')
        errata_unit = Unit(TYPE_ID_ERRATA, {"id": errata_obj["id"]}, errata_obj, None)
        existing_units = [errata_unit]
        test_repo = profiler_mocks.get_repo(repo_id)

        # create two RPM units that match what is in the erratum. There are
        # higher versioned RPMs in the erratum that are not available; these
        # should not be installed.

        rpm_units = []
        rpm_unit_key_1 = self.create_profile_entry("emoticons", 0, "0.1", "2", "x86_64",
                                                   "Test Vendor")
        rpm_units.append(Unit(TYPE_ID_RPM, rpm_unit_key_1, {}, None))

        rpm_unit_key_2 = self.create_profile_entry("patb", 0, "0.1", "2", "x86_64", "Test Vendor")
        rpm_units.append(Unit(TYPE_ID_RPM, rpm_unit_key_2, {}, None))

        existing_units += rpm_units

        conduit = profiler_mocks.get_profiler_conduit(existing_units=existing_units,
                                                      repo_bindings=[test_repo],
                                                      repo_units=rpm_units)

        def mocked_get_units(repo_id, criteria=None):
            """
            Override the default get_units in profiler_mocks.

            This method is specific to this particular unit test. The default
            get_units() in profiler_mocks only checks the criteria's type_id and not any
            other fields.

            :param repo_id: repo ID (unused)
            :type  repo_id: not used
            :param criteria: unit association criteria
            :type  criteria: pulp.server.db.model.criteria.UnitAssociationCriteria

            """
            if TYPE_ID_ERRATA in criteria.type_ids:
                return [errata_unit]
            elif criteria['unit_filters']['name'] == 'emoticons' and \
                    criteria['unit_filters']['version'] == '0.1':
                    return [rpm_units[0]]
            elif criteria['unit_filters']['name'] == 'patb' and \
                    criteria['unit_filters']['version'] == '0.1':
                    return [rpm_units[1]]
            else:
                return []

        conduit.get_units.side_effect = mocked_get_units

        example_errata = {"unit_key": errata_unit.unit_key, "type_id": TYPE_ID_ERRATA}
        prof = YumProfiler()
        translated_units = prof.install_units(self.test_consumer, [example_errata], None, None,
                                              conduit)
        # check repo_id passed to the conduit get_units()
        self.assertEqual(conduit.get_units.call_args_list[0][0][0].id, repo_id)
        # validate translated units
        self.assertEqual(len(translated_units), 2)
        self.assertEqual(translated_units[0]['unit_key']['filename'], 'patb-0.1-2.x86_64.rpm')
        self.assertEqual(translated_units[1]['unit_key']['filename'], 'emoticons-0.1-2.x86_64.rpm')
        expected = prof._get_rpms_from_errata(errata_unit)
        for u in translated_units:
            rpm_unit_key = u["unit_key"]
            self.assertTrue(rpm_unit_key in expected)
开发者ID:msutter,项目名称:pulp_rpm,代码行数:89,代码来源:test_yum.py

示例6: test_install_units_with_superseding_versions

# 需要导入模块: from pulp_rpm.plugins.profilers.yum import YumProfiler [as 别名]
# 或者: from pulp_rpm.plugins.profilers.yum.YumProfiler import install_units [as 别名]
    def test_install_units_with_superseding_versions(self):
        """
        Verify that errata installing multiple versions of a package installs the latest package

        In this test, there are three errata to install. Two provide the same package, but one
        errata has a higher version. The third errata installs two unrelated packages.

        Only the most recent package versions should be installed.
        """
        profiler = YumProfiler()

        # "older" errata is associated with lower version rpm
        errata_obj_old = self.get_test_errata_object(eid='grinder_test_2')
        errata_old = Unit(TYPE_ID_ERRATA, {"errata_id": errata_obj_old["id"]}, errata_obj_old, None)
        rpm_key_old = self.create_profile_entry(
            "grinder_test_package", 0, "2.0", "1.fc14", "noarch", "Test Vendor")

        # "newer" errata is associated with higher version rpm
        errata_obj_new = self.get_test_errata_object(eid='grinder_test_3')
        errata_new = Unit(TYPE_ID_ERRATA, {"errata_id": errata_obj_new["id"]}, errata_obj_new, None)
        rpm_key_new = self.create_profile_entry(
            "grinder_test_package", 0, "3.0", "1.fc14", "noarch", "Test Vendor")

        # "unrelated" errata is a different package, a control
        errata_obj_unr = self.get_test_errata_object(eid='RHEA-2010:9999')
        errata_unr = Unit(TYPE_ID_ERRATA, {"errata_id": errata_obj_unr["id"]}, errata_obj_unr, None)
        rpm_key_unr_1 = self.create_profile_entry(
            "emoticons", 0, "0.1", "2", "x86_64", "Test Vendor")
        rpm_key_unr_2 = self.create_profile_entry(
            "patb", 0, "0.1", "2", "x86_64", "Test Vendor")

        # units list for the conduit
        rpm_keys = [rpm_key_old, rpm_key_new, rpm_key_unr_1, rpm_key_unr_2]
        rpm_units = [Unit(TYPE_ID_RPM, rpm_key, {}, None) for rpm_key in rpm_keys]
        existing_units = [errata_old, errata_new, errata_unr] + rpm_units

        # Set the profile to indicate that the errata apply by including fake unit keys of
        # installed packages with lower versions that need to be upgraded
        rpm_keys_installed = [
            self.create_profile_entry(
                "grinder_test_package", 0, "1.0", "1.fc14", "noarch", "Test Vendor"),
            self.create_profile_entry(
                "emoticons", 0, "0.0", "1", "x86_64", "Test Vendor"),
            self.create_profile_entry(
                "patb", 0, "0.0", "2", "x86_64", "Test Vendor")
        ]
        profiles = {TYPE_ID_RPM: rpm_keys_installed}

        # put together all the args for install_units and call it
        consumer = Consumer(self.consumer_id, profiles)
        errata = [
            {"unit_key": errata_old.unit_key, "type_id": TYPE_ID_ERRATA},
            {"unit_key": errata_new.unit_key, "type_id": TYPE_ID_ERRATA},
            {"unit_key": errata_unr.unit_key, "type_id": TYPE_ID_ERRATA},
        ]
        test_repo = profiler_mocks.get_repo("test_repo_id")
        conduit = profiler_mocks.get_profiler_conduit(existing_units=existing_units,
                                                      repo_bindings=[test_repo],
                                                      repo_units=rpm_units)
        translated_units = profiler.install_units(consumer, errata, None, None, conduit)

        # validate translated units:
        # - the unrelated rpms should still be present
        # - the rpm from the "newer" errata should still be present
        # - the rpm from the "older" errata should have been removed
        # - the total number of units present is 3
        translated_filenames = [u['unit_key']['filename'] for u in translated_units]
        self.assertTrue('emoticons-0.1-2.x86_64.rpm' in translated_filenames)
        self.assertTrue('patb-0.1-2.x86_64.rpm' in translated_filenames)
        self.assertTrue('grinder_test_package-3.0-1.fc14.noarch.rpm' in translated_filenames)
        self.assertTrue('grinder_test_package-2.0-1.fc14.noarch.rpm' not in translated_filenames)
        self.assertEqual(len(translated_units), 3)
开发者ID:bkearney,项目名称:pulp_rpm,代码行数:74,代码来源:test_yum.py


注:本文中的pulp_rpm.plugins.profilers.yum.YumProfiler.install_units方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。