File: test_group_query.cpp

package info (click to toggle)
dnf5 5.4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,960 kB
  • sloc: cpp: 94,312; python: 3,370; xml: 1,073; ruby: 600; sql: 250; ansic: 232; sh: 104; perl: 62; makefile: 30
file content (191 lines) | stat: -rw-r--r-- 7,670 bytes parent folder | download
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// 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/>.


#include "test_group_query.hpp"

#include "../shared/utils.hpp"

#include <libdnf5/comps/group/query.hpp>


CPPUNIT_TEST_SUITE_REGISTRATION(CompsGroupQueryTest);


using namespace libdnf5::comps;


void CompsGroupQueryTest::setUp() {
    BaseTestCase::setUp();
    add_repo_repomd("repomd-comps-core", false);
    add_repo_repomd("repomd-comps-core-empty", false);
    add_repo_repomd("repomd-comps-core-different-translations", false);
    add_repo_repomd("repomd-comps-critical-path-standard", false);
    add_repo_repomd("repomd-comps-standard");
}


void CompsGroupQueryTest::test_query_all() {
    GroupQuery q_groups(base);
    std::vector<Group> expected = {get_group("core"), get_group("critical-path-standard"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));
}


void CompsGroupQueryTest::test_query_filter_groupid() {
    // Filter groups with id equal to "standard"
    GroupQuery q_groups(base);
    q_groups.filter_groupid("standard");
    std::vector<Group> expected = {get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with id containing "standard"
    q_groups = GroupQuery(base);
    q_groups.filter_groupid("standard", libdnf5::sack::QueryCmp::CONTAINS);
    expected = {get_group("critical-path-standard"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with id matching glob "*standard"
    q_groups = GroupQuery(base);
    q_groups.filter_groupid("*standard", libdnf5::sack::QueryCmp::GLOB);
    expected = {get_group("critical-path-standard"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with id matching glob "standard*"
    q_groups = GroupQuery(base);
    q_groups.filter_groupid("standard*", libdnf5::sack::QueryCmp::GLOB);
    expected = {get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with id equal to "standard" or "core"
    q_groups = GroupQuery(base);
    q_groups.filter_groupid(std::vector<std::string>({"standard", "core"}));
    expected = {get_group("core"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));
}


void CompsGroupQueryTest::test_query_filter_name() {
    // Filter groups with name equal to "Standard"
    GroupQuery q_groups(base);
    q_groups.filter_name("Standard");
    std::vector<Group> expected = {get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with name containing "Standard"
    q_groups = GroupQuery(base);
    q_groups.filter_name("Standard", libdnf5::sack::QueryCmp::CONTAINS);
    expected = {get_group("critical-path-standard"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with name matching glob "*Standard*"
    q_groups = GroupQuery(base);
    q_groups.filter_name("*Standard*", libdnf5::sack::QueryCmp::GLOB);
    expected = {get_group("critical-path-standard"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with name equal to "Standard" or "Core"
    q_groups = GroupQuery(base);
    q_groups.filter_name(std::vector<std::string>({"Standard", "Core"}));
    expected = {get_group("core"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));
}


void CompsGroupQueryTest::test_query_filter_uservisible() {
    // Filter groups with uservisible=true
    GroupQuery q_groups(base);
    q_groups.filter_uservisible(true);
    std::vector<Group> expected = {get_group("core"), get_group("critical-path-standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with uservisible=false
    q_groups = GroupQuery(base);
    q_groups.filter_uservisible(false);
    expected = {get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));
}


void CompsGroupQueryTest::test_query_filter_default() {
    // Filter groups with default=true
    GroupQuery q_groups(base);
    q_groups.filter_default(true);
    std::vector<Group> expected = {get_group("critical-path-standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Filter groups with default=false
    q_groups = GroupQuery(base);
    q_groups.filter_default(false);
    expected = {get_group("core"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));
}


void CompsGroupQueryTest::test_query_filter_package_name() {
    // Filter groups which contain given packages
    GroupQuery q_groups(base);
    q_groups.filter_package_name(std::vector<std::string>({"chrony"}));
    std::vector<Group> expected = {get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    q_groups = GroupQuery(base);
    q_groups.filter_package_name(std::vector<std::string>({"chrony", "fprintd*"}), libdnf5::sack::QueryCmp::IGLOB);
    expected = {get_group("critical-path-standard"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));
}


void CompsGroupQueryTest::test_query_excludes() {
    auto sack = base.get_comps_sack();

    // Set user excludes to group "standard" -> user excludes are groups: "standard"
    GroupQuery q_excludes1(base);
    q_excludes1.filter_groupid("standard");
    sack->set_user_group_excludes(q_excludes1);
    GroupQuery q_groups(base);
    std::vector<Group> expected = {get_group("core"), get_group("critical-path-standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Add group "core" to user excludes -> user excludes are groups: "standard", "core"
    GroupQuery q_excludes2(base);
    q_excludes2.filter_groupid("core");
    sack->add_user_group_excludes(q_excludes2);
    q_groups = GroupQuery(base);
    expected = {get_group("critical-path-standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Remove group "standard" from user excludes -> user excludes are groups: "core"
    sack->remove_user_group_excludes(q_excludes1);
    q_groups = GroupQuery(base);
    expected = {get_group("critical-path-standard"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Set user excludes to group "standard" -> user excludes are groups: "standard"
    sack->set_user_group_excludes(q_excludes1);
    q_groups = GroupQuery(base);
    expected = {get_group("core"), get_group("critical-path-standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));

    // Clear user excludes -> user excludes are empty
    sack->clear_user_group_excludes();
    q_groups = GroupQuery(base);
    expected = {get_group("core"), get_group("critical-path-standard"), get_group("standard")};
    CPPUNIT_ASSERT_EQUAL(expected, to_vector(q_groups));
}