mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
selftests: add tests for INCOMPATIBLE_LICENSE
One bug went unnoticed without these selftests: an INCOMPATIBLE_LICENSE
with a non-SPDX license for a package with that non-SPDX license wasn't
enforcing the denial of build for said package. See
4b6ce4604c ("meta: license: fix non-SPDX
license being removed from INCOMPATIBLE_LICENSE")
While adding a test for that particular case, let's add a few more so
that we cover a handful more use cases of INCOMPATIBLE_LICENSE.
(From OE-Core rev: 6c2ca52218c196e7ccf6b3275bffc3e3a04193c6)
Signed-off-by: Quentin Schulz <quentin.schulz@streamunlimited.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
99c821eaaa
commit
e3d0dd9163
@@ -0,0 +1,3 @@
|
||||
SUMMARY = "Recipe with an alias of an SPDX license"
|
||||
DESCRIPTION = "Is licensed with an alias of an SPDX license to be used for testing"
|
||||
LICENSE = "GPLv3"
|
||||
@@ -0,0 +1,3 @@
|
||||
SUMMARY = "Recipe with an SPDX license"
|
||||
DESCRIPTION = "Is licensed with an SPDX license to be used for testing"
|
||||
LICENSE = "GPL-3.0"
|
||||
@@ -0,0 +1,3 @@
|
||||
SUMMARY = "Recipe with a non-SPDX license"
|
||||
DESCRIPTION = "Is licensed with a non-SPDX license to be used for testing"
|
||||
LICENSE = "FooLicense"
|
||||
41
meta/lib/oeqa/selftest/cases/incompatible_lic.py
Normal file
41
meta/lib/oeqa/selftest/cases/incompatible_lic.py
Normal file
@@ -0,0 +1,41 @@
|
||||
from oeqa.selftest.case import OESelftestTestCase
|
||||
from oeqa.utils.commands import bitbake
|
||||
|
||||
class IncompatibleLicenseTests(OESelftestTestCase):
|
||||
|
||||
def lic_test(self, pn, pn_lic, lic):
|
||||
error_msg = 'ERROR: Nothing PROVIDES \'%s\'\n%s was skipped: it has an incompatible license: %s' % (pn, pn, pn_lic)
|
||||
|
||||
self.write_config("INCOMPATIBLE_LICENSE += \"%s\"" % (lic))
|
||||
|
||||
result = bitbake('%s --dry-run' % (pn), ignore_status=True)
|
||||
if error_msg not in result.output:
|
||||
raise AssertionError(result.output)
|
||||
|
||||
# Verify that a package with an SPDX license (from SRC_DISTRIBUTE_LICENSES)
|
||||
# cannot be built when INCOMPATIBLE_LICENSE contains this SPDX license
|
||||
def test_incompatible_spdx_license(self):
|
||||
self.lic_test('incompatible-license', 'GPL-3.0', 'GPL-3.0')
|
||||
|
||||
# Verify that a package with an SPDX license (from SRC_DISTRIBUTE_LICENSES)
|
||||
# cannot be built when INCOMPATIBLE_LICENSE contains an alias (in
|
||||
# SPDXLICENSEMAP) of this SPDX license
|
||||
def test_incompatible_alias_spdx_license(self):
|
||||
self.lic_test('incompatible-license', 'GPL-3.0', 'GPLv3')
|
||||
|
||||
# Verify that a package with an alias (from SPDXLICENSEMAP) to an SPDX
|
||||
# license cannot be built when INCOMPATIBLE_LICENSE contains this SPDX
|
||||
# license
|
||||
def test_incompatible_spdx_license_alias(self):
|
||||
self.lic_test('incompatible-license-alias', 'GPLv3', 'GPL-3.0')
|
||||
|
||||
# Verify that a package with an alias (from SPDXLICENSEMAP) to an SPDX
|
||||
# license cannot be built when INCOMPATIBLE_LICENSE contains this alias
|
||||
def test_incompatible_alias_spdx_license_alias(self):
|
||||
self.lic_test('incompatible-license-alias', 'GPLv3', 'GPLv3')
|
||||
|
||||
# Verify that a package with a non-SPDX license (neither in
|
||||
# SRC_DISTRIBUTE_LICENSES nor in SPDXLICENSEMAP) cannot be built when
|
||||
# INCOMPATIBLE_LICENSE contains this license
|
||||
def test_incompatible_nonspdx_license(self):
|
||||
self.lic_test('incompatible-nonspdx-license', 'FooLicense', 'FooLicense')
|
||||
Reference in New Issue
Block a user