1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# Copyright Contributors to the DNF5 project.
# Copyright Contributors to the libdnf project.
# SPDX-License-Identifier: GPL-2.0-or-later
#
# This file is part of libdnf: https://github.com/rpm-software-management/libdnf/
#
# Libdnf is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Libdnf is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with libdnf. If not, see <https://www.gnu.org/licenses/>.
import unittest
import libdnf5
import base_test_case
class TestGroup(base_test_case.BaseTestCase):
def test_group(self):
self.add_repo_repomd("repomd-comps-core")
q_core = libdnf5.comps.GroupQuery(self.base)
core = q_core.get()
def test_group_query_without_setup(self):
# Create a new Base object
base = libdnf5.base.Base()
# Try to create a group query without running base.setup()
with self.assertRaisesRegex(libdnf5.exception.UserAssertionError,
'base_impl.hpp:[0-9]+: libdnf5::solv::CompsPool& libdnf5::Base::Impl::get_comps_pool\\(\\):'
' API Assertion \'comps_pool\' failed:'
' Base instance was not fully initialized by Base::setup\\(\\)'):
libdnf5.comps.GroupQuery(base)
def test_group_get_packages(self):
self.add_repo_repomd("repomd-comps-core")
query = libdnf5.comps.GroupQuery(self.base)
core_group = next(iter(query))
self.assertEqual(5, len(core_group.get_packages()))
def test_group_when_query_out_of_scope(self):
self.add_repo_repomd("repomd-comps-core")
def get_group(base):
query = libdnf5.comps.GroupQuery(base)
return next(iter(query))
self.assertEqual(5, len(get_group(self.base).get_packages()))
def test_iterating_over_inline_query(self):
self.add_repo_repomd("repomd-comps-core", False)
self.add_repo_repomd("repomd-comps-standard")
ids = []
for grp in sorted(libdnf5.comps.GroupQuery(self.base), key=lambda x: int(x.get_order_int())):
ids.append(grp.get_groupid())
self.assertEqual(['core', 'standard'], ids)
|