File: test_rpm_package.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 (114 lines) | stat: -rw-r--r-- 4,619 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
// 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_rpm_package.hpp"

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

#include <libdnf5/common/sack/query_cmp.hpp>
#include <libdnf5/transaction/rpm_package.hpp>
#include <libdnf5/transaction/transaction.hpp>

#include <string>


using namespace libdnf5::transaction;


CPPUNIT_TEST_SUITE_REGISTRATION(TransactionRpmPackageTest);

namespace {

// Allows accessing private methods
create_private_getter_template;
create_getter(new_package, &libdnf5::transaction::Transaction::new_package);
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_name, &libdnf5::transaction::Package::set_name);
create_getter(set_epoch, &libdnf5::transaction::Package::set_epoch);
create_getter(set_version, &libdnf5::transaction::Package::set_version);
create_getter(set_release, &libdnf5::transaction::Package::set_release);
create_getter(set_arch, &libdnf5::transaction::Package::set_arch);
create_getter(set_repoid, &libdnf5::transaction::Package::set_repoid);
create_getter(set_action, &libdnf5::transaction::Package::set_action);
create_getter(set_reason, &libdnf5::transaction::Package::set_reason);
create_getter(set_state, &libdnf5::transaction::Package::set_state);

}  //namespace

void TransactionRpmPackageTest::test_save_load() {
    constexpr std::size_t num = 10;

    auto base = new_base();

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

    // create packages in the transaction
    for (std::size_t i = 0; i < num; i++) {
        auto & pkg = (trans.*get(new_package{}))();
        (pkg.*get(set_name{}))("name_" + std::to_string(i));
        (pkg.*get(set_epoch{}))("1");
        (pkg.*get(set_version{}))("2");
        (pkg.*get(set_release{}))("3");
        (pkg.*get(set_arch{}))("x86_64");
        (pkg.*get(set_repoid{}))("repoid");
        (pkg.*get(set_action{}))(TransactionItemAction::INSTALL);
        (pkg.*get(set_reason{}))(TransactionItemReason::USER);
        (pkg.*get(set_state{}))(TransactionItemState::OK);
    }

    // check that there's exactly 10 packages
    CPPUNIT_ASSERT_EQUAL(num, trans.get_packages().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
    libdnf5::transaction::TransactionHistory history2(base2->get_weak_ptr());
    auto ts_list = history2.list_transactions({trans.get_id()});
    CPPUNIT_ASSERT_EQUAL((size_t)1, ts_list.size());

    auto trans2 = ts_list[0];

    // check that there's exactly 10 packages
    CPPUNIT_ASSERT_EQUAL(num, trans2.get_packages().size());

    std::size_t pkg2_num = 0;
    for (auto & pkg2 : trans2.get_packages()) {
        CPPUNIT_ASSERT_EQUAL(std::string("name_") + std::to_string(pkg2_num), pkg2.get_name());
        CPPUNIT_ASSERT_EQUAL(std::string("1"), pkg2.get_epoch());
        CPPUNIT_ASSERT_EQUAL(std::string("2"), pkg2.get_version());
        CPPUNIT_ASSERT_EQUAL(std::string("3"), pkg2.get_release());
        CPPUNIT_ASSERT_EQUAL(std::string("x86_64"), pkg2.get_arch());
        CPPUNIT_ASSERT_EQUAL(std::string("repoid"), pkg2.get_repoid());
        CPPUNIT_ASSERT_EQUAL(TransactionItemAction::INSTALL, pkg2.get_action());
        CPPUNIT_ASSERT_EQUAL(TransactionItemReason::USER, pkg2.get_reason());
        CPPUNIT_ASSERT_EQUAL(TransactionItemState::OK, pkg2.get_state());
        pkg2_num++;
    }
}