mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-19 18:45:09 +03:00
* The APKINDEX parser used to return a dictionary with one package for a given package name. This works for the installed packages database, because there can only be one provider for a package. But when parsing packages from binary repositories, we need to support multiple providers for one package. It is now possible to get a dictionary with either multiple providers, or just a single provider for each package. * Dependency parsing logic has been adjusted, to support multiple providers. For multiple providers, the one with the same package name as the package we are looking up is prefered. If there is none (eg. "so:libEGL.so.1" is provided by "mesa-egl"), it prefers packages that will be installed anyway, and after that packages that are already installed. When all else fails, it just picks the first one and prints a note in the "pmbootstrap log". * Added testcases for all functions in pmb.parse.apkindex and pmb.parse.depends * pmbootstrap chroot has a new "--add" parameter to specify packages that pmbootstrap should build if neccessary, and install in the chroot. This can be used to quickly test the depencency resolution of pmbootstrap without doing a full "pmbootstrap install". Fixes #1122.
126 lines
4.2 KiB
Python
126 lines
4.2 KiB
Python
"""
|
|
Copyright 2018 Oliver Smith
|
|
|
|
This file is part of pmbootstrap.
|
|
|
|
pmbootstrap 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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
pmbootstrap 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 pmbootstrap. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
import os
|
|
import sys
|
|
import glob
|
|
import pytest
|
|
|
|
# Import from parent directory
|
|
pmb_src = os.path.realpath(os.path.join(os.path.dirname(__file__) + "/.."))
|
|
sys.path.append(pmb_src)
|
|
import pmb.parse.apkindex
|
|
import pmb.parse.apkbuild
|
|
import pmb.helpers.logging
|
|
|
|
|
|
@pytest.fixture
|
|
def args(request):
|
|
import pmb.parse
|
|
sys.argv = ["pmbootstrap.py", "chroot"]
|
|
args = pmb.parse.arguments()
|
|
args.log = args.work + "/log_testsuite.txt"
|
|
pmb.helpers.logging.init(args)
|
|
request.addfinalizer(args.logfd.close)
|
|
return args
|
|
|
|
|
|
def test_qt_versions(args):
|
|
"""
|
|
Verify, that all postmarketOS qt5- package versions match with Alpine's
|
|
qt5-qtbase version.
|
|
"""
|
|
# Upstream version
|
|
pmb.helpers.repo.update(args)
|
|
repository = args.mirror_alpine + args.alpine_version + "/community"
|
|
hash = pmb.helpers.repo.hash(repository)
|
|
index_path = (args.work + "/cache_apk_armhf/APKINDEX." + hash +
|
|
".tar.gz")
|
|
index_data = pmb.parse.apkindex.package(args, "qt5-qtbase",
|
|
indexes=[index_path])
|
|
pkgver_upstream = index_data["version"].split("-r")[0]
|
|
|
|
# Iterate over our packages
|
|
failed = []
|
|
for path in glob.glob(args.aports + "/*/qt5-*/APKBUILD"):
|
|
# Read the pkgver
|
|
apkbuild = pmb.parse.apkbuild(args, path)
|
|
pkgname = apkbuild["pkgname"]
|
|
pkgver = apkbuild["pkgver"]
|
|
|
|
# When we temporarily override packages from Alpine, we set the pkgver
|
|
# to 9999 and _pkgver contains the real version (see #994).
|
|
if pkgver == "9999":
|
|
pkgver = apkbuild["_pkgver"]
|
|
|
|
# Compare
|
|
if pkgver == pkgver_upstream:
|
|
continue
|
|
failed.append(pkgname + ": " + pkgver + " != " +
|
|
pkgver_upstream)
|
|
|
|
assert [] == failed
|
|
|
|
|
|
def test_aportgen_versions(args):
|
|
"""
|
|
Verify that the packages generated by 'pmbootstrap aportgen' have
|
|
the same version (pkgver *and* pkgrel!) as the upstream packages
|
|
they are based on.
|
|
"""
|
|
|
|
# Get Alpine's "main" repository APKINDEX path
|
|
pmb.helpers.repo.update(args)
|
|
repository = args.mirror_alpine + args.alpine_version + "/main"
|
|
hash = pmb.helpers.repo.hash(repository)
|
|
index_path = (args.work + "/cache_apk_armhf/APKINDEX." + hash +
|
|
".tar.gz")
|
|
|
|
# Alpine packages and patterns for our derivatives
|
|
map = {"binutils": "binutils-*",
|
|
"busybox": "busybox-static-*",
|
|
"gcc": "gcc-*",
|
|
"musl": "musl-*"}
|
|
|
|
# Iterate over Alpine packages
|
|
failed = []
|
|
generated = "# Automatically generated aport, do not edit!"
|
|
for pkgname, pattern in map.items():
|
|
# Upstream version
|
|
index_data = pmb.parse.apkindex.package(args, pkgname,
|
|
indexes=[index_path])
|
|
version_upstream = index_data["version"]
|
|
|
|
# Iterate over our packages
|
|
for path in glob.glob(args.aports + "/*/" + pattern + "/APKBUILD"):
|
|
# Skip non-aportgen APKBUILDs
|
|
with open(path) as handle:
|
|
if generated not in handle.read():
|
|
continue
|
|
|
|
# Compare the version
|
|
print("Checking " + path)
|
|
apkbuild = pmb.parse.apkbuild(args, path)
|
|
version = apkbuild["pkgver"] + "-r" + apkbuild["pkgrel"]
|
|
if version != version_upstream:
|
|
failed.append(apkbuild["pkgname"] + ": " + version +
|
|
" != " + version_upstream +
|
|
" (from " + pkgname + ")")
|
|
continue
|
|
|
|
assert [] == failed
|