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
|
# 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 os
import pathlib
import tempfile
import base_test_case
PROJECT_BINARY_DIR = os.environ["PROJECT_BINARY_DIR"]
PROJECT_SOURCE_DIR = os.environ["PROJECT_SOURCE_DIR"]
class TestTutorial(base_test_case.BaseTestCase):
def setUp(self):
super().setUp()
self.installroot = self.base.get_config().installroot
self.cachedir = self.base.get_config().cachedir
self.baseurl = pathlib.Path(os.path.join(
PROJECT_BINARY_DIR, "test/data/repos-rpm/rpm-repo1/")).as_uri()
def test_create_base(self):
file = ""
with open("tutorial/session/create_base.py", "r") as f:
file += f.read()
exec(file, {'installroot': self.installroot, 'cachedir': self.cachedir})
def test_load_repo(self):
file = ""
with open("tutorial/session/create_base.py", "r") as f:
file += f.read()
with open("tutorial/repo/load_repo.py", "r") as f:
file += f.read()
exec(file, {'installroot': self.installroot,
'cachedir': self.cachedir, 'baseurl': self.baseurl})
def test_load_system_repo(self):
# TODO(nsella) This example does not 'compile' yet
# file = ""
# with open("tutorial/session/create_base.py", "r") as f:
# file += f.read()
# with open("tutorial/repo/load_system_repos.py", "r") as f:
# file += f.read()
# exec(file, { 'installroot': self.installroot, 'baseurl': self.baseurl })
pass
def test_query(self):
file = ""
with open("tutorial/session/create_base.py", "r") as f:
file += f.read()
with open("tutorial/repo/load_repo.py", "r") as f:
file += f.read()
with open("tutorial/query/query.py", "r") as f:
file += f.read()
exec(file, {'installroot': self.installroot,
'cachedir': self.cachedir, 'baseurl': self.baseurl})
def test_transaction(self):
file = ""
with open("tutorial/session/create_base.py", "r") as f:
file += f.read()
with open("tutorial/repo/load_repo.py", "r") as f:
file += f.read()
with open("tutorial/transaction/transaction.py", "r") as f:
file += f.read()
tmp_path = os.getcwd()
exec(file, {'installroot': self.installroot,
'cachedir': self.cachedir, 'baseurl': self.baseurl})
os.chdir(tmp_path)
def test_force_arch(self):
file = ""
with open("tutorial/session/force_arch.py", "r") as f:
file += f.read()
exec(file, {'installroot': self.installroot, 'cachedir': self.cachedir})
|