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
|
// 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_conf.hpp"
#include "../shared/utils.hpp"
#include <libdnf5/repo/config_repo.hpp>
CPPUNIT_TEST_SUITE_REGISTRATION(ConfTest);
using namespace libdnf5;
void ConfTest::setUp() {
TestCaseFixture::setUp();
base = get_preconfigured_base();
ConfigParser parser;
parser.read(PROJECT_SOURCE_DIR "/test/libdnf5/conf/data/main.conf");
config.load_from_parser(parser, "main", *base->get_vars(), logger);
}
void ConfTest::test_config_main() {
CPPUNIT_ASSERT_EQUAL(7, config.get_debuglevel_option().get_value());
CPPUNIT_ASSERT_EQUAL(std::string("hello"), config.get_persistdir_option().get_value());
CPPUNIT_ASSERT_EQUAL(false, config.get_plugins_option().get_value());
std::string pluginpath = "/foo";
CPPUNIT_ASSERT_EQUAL(pluginpath, config.get_pluginpath_option().get_value());
}
void ConfTest::test_config_repo() {
repo::ConfigRepo config_repo(config, "test-repo");
ConfigParser parser;
parser.read(PROJECT_SOURCE_DIR "/test/libdnf5/conf/data/main.conf");
base->get_config().get_varsdir_option().set(
std::vector<std::string>{PROJECT_SOURCE_DIR "/test/libdnf5/conf/data/vars"});
base->setup();
config_repo.load_from_parser(parser, "repo-1", *base->get_vars(), logger);
std::vector<std::string> baseurl = {"http://example.com/value123", "http://example.com/456"};
CPPUNIT_ASSERT_EQUAL(baseurl, config_repo.get_baseurl_option().get_value());
}
void ConfTest::test_config_pkg_gpgcheck() {
// Ensure both pkg_gpgcheck and gpgcheck point to the same underlying OptionBool object
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
// For ConfigMain
CPPUNIT_ASSERT_EQUAL(&config.get_pkg_gpgcheck_option(), &config.get_gpgcheck_option());
// For ConfigRepo
repo::ConfigRepo config_repo(config, "test-repo");
CPPUNIT_ASSERT_EQUAL(&config_repo.get_pkg_gpgcheck_option(), &config_repo.get_gpgcheck_option());
#pragma GCC diagnostic pop
}
void ConfTest::test_config_load_from_config() {
libdnf5::ConfigMain config;
config.get_assumeyes_option().set(libdnf5::Option::Priority::MAINCONFIG, false);
config.get_debuglevel_option().set(libdnf5::Option::Priority::RUNTIME, 7);
config.get_allow_downgrade_option().set(libdnf5::Option::Priority::RUNTIME, false);
config.get_destdir_option().set(libdnf5::Option::Priority::RUNTIME, "foobar");
libdnf5::ConfigMain config_copy;
config_copy.load_from_config(config);
CPPUNIT_ASSERT_EQUAL(false, config_copy.get_allow_downgrade_option().get_value());
CPPUNIT_ASSERT_EQUAL(std::string{"foobar"}, config_copy.get_destdir_option().get_value());
CPPUNIT_ASSERT_EQUAL(libdnf5::Option::Priority::MAINCONFIG, config.get_assumeyes_option().get_priority());
CPPUNIT_ASSERT_EQUAL(false, config.get_assumeyes_option().get_value());
CPPUNIT_ASSERT_EQUAL(libdnf5::Option::Priority::MAINCONFIG, config_copy.get_assumeyes_option().get_priority());
CPPUNIT_ASSERT_EQUAL(false, config_copy.get_assumeyes_option().get_value());
config_copy.get_assumeyes_option().set(libdnf5::Option::Priority::RUNTIME, true);
CPPUNIT_ASSERT_EQUAL(libdnf5::Option::Priority::MAINCONFIG, config.get_assumeyes_option().get_priority());
CPPUNIT_ASSERT_EQUAL(false, config.get_assumeyes_option().get_value());
CPPUNIT_ASSERT_EQUAL(libdnf5::Option::Priority::RUNTIME, config_copy.get_assumeyes_option().get_priority());
CPPUNIT_ASSERT_EQUAL(true, config_copy.get_assumeyes_option().get_value());
CPPUNIT_ASSERT_EQUAL(static_cast<std::size_t>(0), config_copy.get_excludepkgs_option().get_value().size());
CPPUNIT_ASSERT_EQUAL(static_cast<std::size_t>(0), config.get_excludepkgs_option().get_value().size());
config_copy.get_excludepkgs_option().add_item(libdnf5::Option::Priority::RUNTIME, "abc");
CPPUNIT_ASSERT_EQUAL(static_cast<std::size_t>(1), config_copy.get_excludepkgs_option().get_value().size());
CPPUNIT_ASSERT_EQUAL(static_cast<std::size_t>(0), config.get_excludepkgs_option().get_value().size());
}
|