pmbootstrap-meow/test/test_parse_apkbuild.py
Caleb Connolly 3bfc6474bb
WIP: test: type annotate suffix + pathlib (MR 2252)
Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
2024-06-23 12:38:37 +02:00

169 lines
5.8 KiB
Python

# Copyright 2023 Oliver Smith
# SPDX-License-Identifier: GPL-3.0-or-later
from pmb.core.types import PmbArgs
import pytest
import sys
import pmb_test
import pmb_test.const
import pmb.parse._apkbuild
@pytest.fixture
def args(tmpdir, request):
import pmb.parse
sys.argv = ["pmbootstrap.py", "init"]
args = pmb.parse.arguments()
args.log = pmb.config.work / "log_testsuite.txt"
pmb.helpers.logging.init(args)
request.addfinalizer(pmb.helpers.logging.logfd.close)
return args
def test_subpackages(args):
testdata = pmb_test.const.testdata
path = testdata + "/apkbuild/APKBUILD.subpackages"
apkbuild = pmb.parse.apkbuild(path, check_pkgname=False)
subpkg = apkbuild["subpackages"]["simple"]
assert subpkg["pkgdesc"] == ""
# Inherited from parent package
assert subpkg["depends"] == ["postmarketos-base"]
subpkg = apkbuild["subpackages"]["custom"]
assert subpkg["pkgdesc"] == "This is one of the custom subpackages"
assert subpkg["depends"] == ["postmarketos-base", "glibc"]
subpkg = apkbuild["subpackages"]["different_arch"]
assert subpkg["pkgdesc"] == "This has a different architecture than the other subpackages"
# Successful extraction
path = (testdata + "/init_questions_device/aports/device/testing/"
"device-nonfree-firmware/APKBUILD")
apkbuild = pmb.parse.apkbuild(path)
subpkg = (apkbuild["subpackages"]
["device-nonfree-firmware-nonfree-firmware"])
assert subpkg["pkgdesc"] == "firmware description"
# Can't find the pkgdesc in the function
path = testdata + "/apkbuild/APKBUILD.missing-pkgdesc-in-subpackage"
apkbuild = pmb.parse.apkbuild(path, check_pkgname=False)
subpkg = (apkbuild["subpackages"]
["missing-pkgdesc-in-subpackage-subpackage"])
assert subpkg["pkgdesc"] == ""
# Can't find the function
assert apkbuild["subpackages"]["invalid-function"] is None
def test_kernels(args: PmbArgs):
# Kernel hardcoded in depends
args.aports = pmb_test.const.testdata + "/init_questions_device/aports"
func = pmb.parse._apkbuild.kernels
device = "lg-mako"
assert func(args, device) is None
# Upstream and downstream kernel
device = "sony-amami"
ret = {"downstream": "Downstream description",
"mainline": "Mainline description"}
assert func(args, device) == ret
# Long kernel name (e.g. two different mainline kernels)
device = "wileyfox-crackling"
ret = {"mainline": "Mainline kernel (no modem)",
"mainline-modem": "Mainline kernel (with modem)",
"downstream": "Downstream kernel"}
assert func(args, device) == ret
def test_depends_in_depends(args):
path = pmb_test.const.testdata + "/apkbuild/APKBUILD.depends-in-depends"
apkbuild = pmb.parse.apkbuild(path, check_pkgname=False)
assert apkbuild["depends"] == ["first", "second", "third"]
def test_parse_next_attribute(args):
# Convenience function for calling the function with a block of text
def func(block):
lines = block.split("\n")
for i in range(0, len(lines)):
lines[i] += "\n"
i = 0
path = "(testcase in " + __file__ + ")"
print("=== parsing next attribute in test block:")
print(block)
print("===")
return pmb.parse._apkbuild.parse_next_attribute(lines, i, path)
assert func("no variable here") == (None, None, 0)
assert func("\tno_top_level_var=1") == (None, None, 0)
assert func('pkgname="test"') == ("pkgname", "test", 0)
assert func("pkgname='test'") == ("pkgname", "test", 0)
assert func("pkgname=test") == ("pkgname", "test", 0)
assert func('pkgname="test\n"') == ("pkgname", "test", 1)
assert func('pkgname="\ntest\n"') == ("pkgname", "test", 2)
assert func('pkgname="test" # random comment\npkgrel=3') == \
("pkgname", "test", 0)
assert func('pkgver=2.37 # random comment\npkgrel=3') == \
("pkgver", "2.37", 0)
assert func("depends='\nfirst\nsecond\nthird\n'#") == \
("depends", "first second third", 4)
assert func('depends="\nfirst\n\tsecond third"') == \
("depends", "first second third", 2)
assert func('depends=') == ("depends", "", 0)
with pytest.raises(RuntimeError) as e:
func('depends="\nmissing\nend\nquote\nsign')
assert str(e.value).startswith("Can't find closing")
with pytest.raises(RuntimeError) as e:
func('depends="')
assert str(e.value).startswith("Can't find closing")
def test_variable_replacements():
path = pmb_test.const.testdata + "/apkbuild/APKBUILD.variable-replacements"
apkbuild = pmb.parse.apkbuild(path, check_pkgname=False)
assert apkbuild["pkgdesc"] == "this should not affect variable replacement"
assert apkbuild["url"] == "replacements variable string-replacements 1234"
assert list(apkbuild["subpackages"].keys()) == ["replacements", "test"]
assert apkbuild["subpackages"]["replacements"] is None
test_subpkg = apkbuild["subpackages"]["test"]
assert test_subpkg["pkgdesc"] == ("this should not affect variable "
"replacement")
def test_parse_maintainers(args):
path = pmb_test.const.testdata + "/apkbuild/APKBUILD.lint"
maintainers = [
"Oliver Smith <ollieparanoid@postmarketos.org>",
"Hello World <hello@world>"
]
assert pmb.parse._apkbuild.maintainers(path) == maintainers
def test_parse_archived(args):
path = (f"{pmb_test.const.testdata}/apkbuild"
"/APKBUILD.missing-pkgdesc-in-subpackage")
assert pmb.parse._apkbuild.archived(path) == "This is broken!"
def test_weird_pkgver(args):
path = (f"{pmb_test.const.testdata}/apkbuild"
"/APKBUILD.weird-pkgver")
apkbuild = pmb.parse.apkbuild(path, check_pkgname=False, check_pkgver=True)
assert apkbuild["pkgver"] == "3.0.0_alpha369-r0"