File: test_comps_group.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 (139 lines) | stat: -rw-r--r-- 6,044 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
// 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_comps_group.hpp"

#include "../shared/private_accessor.hpp"

#include <libdnf5/comps/group/package.hpp>
#include <libdnf5/transaction/comps_group.hpp>
#include <libdnf5/transaction/transaction.hpp>

#include <string>


using namespace libdnf5::transaction;


CPPUNIT_TEST_SUITE_REGISTRATION(TransactionCompsGroupTest);

namespace {

// Allows accessing private methods
create_private_getter_template;
create_getter(new_comps_group, &libdnf5::transaction::Transaction::new_comps_group);
create_getter(start, &libdnf5::transaction::Transaction::start);
create_getter(finish, &libdnf5::transaction::Transaction::finish);
create_getter(new_transaction, &libdnf5::transaction::TransactionHistory::new_transaction);

create_getter(set_group_id, &libdnf5::transaction::CompsGroup::set_group_id);
create_getter(set_name, &libdnf5::transaction::CompsGroup::set_name);
create_getter(set_translated_name, &libdnf5::transaction::CompsGroup::set_translated_name);
create_getter(set_package_types, &libdnf5::transaction::CompsGroup::set_package_types);
create_getter(new_package, &libdnf5::transaction::CompsGroup::new_package);

create_getter(set_name_pkg, &libdnf5::transaction::CompsGroupPackage::set_name);
create_getter(set_installed, &libdnf5::transaction::CompsGroupPackage::set_installed);
create_getter(set_package_type, &libdnf5::transaction::CompsGroupPackage::set_package_type);

create_getter(set_repoid, &libdnf5::transaction::TransactionItem::set_repoid);
create_getter(set_action, &libdnf5::transaction::TransactionItem::set_action);
create_getter(set_reason, &libdnf5::transaction::TransactionItem::set_reason);
create_getter(set_state, &libdnf5::transaction::TransactionItem::set_state);

}  // namespace

static CompsGroup & create_comps_group(Transaction & trans) {
    auto & grp = (trans.*get(new_comps_group{}))();

    (grp.*get(set_group_id{}))("core");
    (grp.*get(set_name{}))("Smallest possible installation");
    (grp.*get(set_translated_name{}))("translated(Smallest possible installation)");
    (grp.*get(set_package_types{}))(libdnf5::comps::PackageType::DEFAULT);

    (grp.*get(set_repoid{}))("repoid");
    (grp.*get(set_action{}))(TransactionItemAction::INSTALL);
    (grp.*get(set_reason{}))(TransactionItemReason::USER);
    (grp.*get(set_state{}))(TransactionItemState::OK);

    auto & pkg1 = (grp.*get(new_package{}))();
    (pkg1.*get(set_name_pkg{}))("bash");
    (pkg1.*get(set_installed{}))(true);
    (pkg1.*get(set_package_type{}))(libdnf5::comps::PackageType::MANDATORY);

    auto & pkg2 = (grp.*get(new_package{}))();
    (pkg2.*get(set_name_pkg{}))("rpm");
    (pkg2.*get(set_installed{}))(false);
    (pkg2.*get(set_package_type{}))(libdnf5::comps::PackageType::OPTIONAL);

    return grp;
}


void TransactionCompsGroupTest::test_save_load() {
    auto base = new_base();

    //// create a new empty transaction
    libdnf5::transaction::TransactionHistory history(base->get_weak_ptr());
    auto trans = (history.*get(new_transaction{}))();

    //// create an group in the transaction
    create_comps_group(trans);

    //// check that there's exactly 1 group
    //CPPUNIT_ASSERT_EQUAL((size_t)1, trans.get_comps_groups().size());

    //// save the transaction with all transaction items to the database
    //(trans.*get(start{}))();
    //(trans.*get(finish{}))(TransactionState::OK);

    //// create a new Base to force reading the transaction from disk
    //auto base2 = new_base();

    //// get the written transaction
    //auto ts_list = base2->get_transaction_history()->list_transactions({trans.get_id()});
    //CPPUNIT_ASSERT_EQUAL((size_t)1, ts_list.size());

    //auto trans2 = ts_list[0];
    //CPPUNIT_ASSERT_EQUAL((size_t)1, trans2.get_comps_groups().size());

    //auto & grp2 = trans2.get_comps_groups().at(0);
    //CPPUNIT_ASSERT_EQUAL(std::string("core"), grp2.get_group_id());
    //CPPUNIT_ASSERT_EQUAL(std::string("Smallest possible installation"), grp2.get_name());
    //CPPUNIT_ASSERT_EQUAL(std::string("translated(Smallest possible installation)"), grp2.get_translated_name());
    //CPPUNIT_ASSERT_EQUAL(libdnf5::comps::PackageType::DEFAULT, grp2.get_package_types());
    //CPPUNIT_ASSERT_EQUAL(std::string("repoid"), grp2.get_repoid());
    //CPPUNIT_ASSERT_EQUAL(TransactionItemAction::INSTALL, grp2.get_action());
    //CPPUNIT_ASSERT_EQUAL(TransactionItemReason::USER, grp2.get_reason());
    //CPPUNIT_ASSERT_EQUAL(TransactionItemState::OK, grp2.get_state());

    //// check if the group has all expected packages in the same order as inserted
    //CPPUNIT_ASSERT_EQUAL((size_t)2, grp2.get_packages().size());

    //auto & grp2_pkg2 = grp2.get_packages().at(0);
    //CPPUNIT_ASSERT_EQUAL(std::string("bash"), grp2_pkg2.get_name());
    //CPPUNIT_ASSERT_EQUAL(true, grp2_pkg2.get_installed());
    //CPPUNIT_ASSERT_EQUAL(libdnf5::comps::PackageType::MANDATORY, grp2_pkg2.get_package_type());

    //auto & grp2_pkg1 = grp2.get_packages().at(1);
    //CPPUNIT_ASSERT_EQUAL(std::string("rpm"), grp2_pkg1.get_name());
    //CPPUNIT_ASSERT_EQUAL(false, grp2_pkg1.get_installed());
    //CPPUNIT_ASSERT_EQUAL(libdnf5::comps::PackageType::OPTIONAL, grp2_pkg1.get_package_type());
}