123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- #
- # Copyright OpenEmbedded Contributors
- #
- # SPDX-License-Identifier: MIT
- #
- from oeqa.selftest.case import OESelftestTestCase
- from oeqa.utils.commands import bitbake
- class IncompatibleLicenseTestObsolete(OESelftestTestCase):
- def lic_test(self, pn, pn_lic, lic, error_msg=None):
- if not error_msg:
- error_msg = 'ERROR: Nothing PROVIDES \'%s\'\n%s was skipped: it has incompatible license(s): %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 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-only', 'GPLv3', "is an obsolete license, please use an SPDX reference in INCOMPATIBLE_LICENSE")
- # Verify that a package with an SPDX license cannot be built when
- # INCOMPATIBLE_LICENSE contains a wildcarded alias license matching this
- # SPDX license
- def test_incompatible_alias_spdx_license_wildcard(self):
- self.lic_test('incompatible-license', 'GPL-3.0-only', '*GPLv3', "*GPLv3 is an invalid license wildcard entry")
- # 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', 'GPL-3.0-only', 'GPLv3', "is an obsolete license, please use an SPDX reference in INCOMPATIBLE_LICENSE")
- # Verify that a package with an alias (from SPDXLICENSEMAP) to an SPDX
- # license cannot be built when INCOMPATIBLE_LICENSE contains a wildcarded
- # license matching this SPDX license
- def test_incompatible_spdx_license_alias_wildcard(self):
- self.lic_test('incompatible-license-alias', 'GPL-3.0-only', '*GPL-3.0', "*GPL-3.0 is an invalid license wildcard entry")
- # Verify that a package with an alias (from SPDXLICENSEMAP) to an SPDX
- # license cannot be built when INCOMPATIBLE_LICENSE contains a wildcarded
- # alias license matching the SPDX license
- def test_incompatible_alias_spdx_license_alias_wildcard(self):
- self.lic_test('incompatible-license-alias', 'GPL-3.0-only', '*GPLv3', "*GPLv3 is an invalid license wildcard entry")
- # Verify that a package with multiple SPDX licenses cannot be built when
- # INCOMPATIBLE_LICENSE contains a wildcard to some of them
- def test_incompatible_spdx_licenses_wildcard(self):
- self.lic_test('incompatible-licenses', 'GPL-3.0-only LGPL-3.0-only', '*GPL-3.0-only', "*GPL-3.0-only is an invalid license wildcard entry")
- # Verify that a package with multiple SPDX licenses cannot be built when
- # INCOMPATIBLE_LICENSE contains a wildcard matching all licenses
- def test_incompatible_all_licenses_wildcard(self):
- self.lic_test('incompatible-licenses', 'GPL-2.0-only GPL-3.0-only LGPL-3.0-only', '*', "* is an invalid license wildcard entry")
- class IncompatibleLicenseTests(OESelftestTestCase):
- def lic_test(self, pn, pn_lic, lic):
- error_msg = 'ERROR: Nothing PROVIDES \'%s\'\n%s was skipped: it has incompatible license(s): %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 cannot be built when
- # INCOMPATIBLE_LICENSE contains this SPDX license
- def test_incompatible_spdx_license(self):
- self.lic_test('incompatible-license', 'GPL-3.0-only', 'GPL-3.0-only')
- # Verify that a package with an SPDX license cannot be built when
- # INCOMPATIBLE_LICENSE contains a wildcarded license matching this SPDX
- # license
- def test_incompatible_spdx_license_wildcard(self):
- self.lic_test('incompatible-license', 'GPL-3.0-only', 'GPL-3.0*')
- # 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', 'GPL-3.0-only', 'GPL-3.0-only')
- # Verify that a package with multiple SPDX licenses cannot be built when
- # INCOMPATIBLE_LICENSE contains some of them
- def test_incompatible_spdx_licenses(self):
- self.lic_test('incompatible-licenses', 'GPL-3.0-only LGPL-3.0-only', 'GPL-3.0-only LGPL-3.0-only')
- # Verify that a package with a non-SPDX license cannot be built when
- # INCOMPATIBLE_LICENSE contains this license
- def test_incompatible_nonspdx_license(self):
- self.lic_test('incompatible-nonspdx-license', 'FooLicense', 'FooLicense')
- class IncompatibleLicensePerImageTests(OESelftestTestCase):
- def default_config(self):
- return """
- IMAGE_INSTALL:append = " bash"
- INCOMPATIBLE_LICENSE:pn-core-image-minimal = "GPL-3.0* LGPL-3.0*"
- MACHINE_ESSENTIAL_EXTRA_RDEPENDS:remove = "tar"
- """
- def test_bash_default(self):
- self.write_config(self.default_config())
- error_msg = "ERROR: core-image-minimal-1.0-r0 do_rootfs: Package bash cannot be installed into the image because it has incompatible license(s): GPL-3.0-or-later"
- result = bitbake('core-image-minimal', ignore_status=True)
- if error_msg not in result.output:
- raise AssertionError(result.output)
- def test_bash_and_license(self):
- self.disable_class("create-spdx")
- self.write_config(self.default_config() + '\nLICENSE:append:pn-bash = " & SomeLicense"\nERROR_QA:remove:pn-bash = "license-exists"')
- error_msg = "ERROR: core-image-minimal-1.0-r0 do_rootfs: Package bash cannot be installed into the image because it has incompatible license(s): GPL-3.0-or-later"
- result = bitbake('core-image-minimal', ignore_status=True)
- if error_msg not in result.output:
- raise AssertionError(result.output)
- def test_bash_or_license(self):
- self.disable_class("create-spdx")
- self.write_config(self.default_config() + '\nLICENSE:append:pn-bash = " | SomeLicense"\nERROR_QA:remove:pn-bash = "license-exists"\nERROR_QA:remove:pn-core-image-minimal = "license-file-missing"')
- bitbake('core-image-minimal')
- def test_bash_license_exceptions(self):
- self.write_config(self.default_config() + '\nINCOMPATIBLE_LICENSE_EXCEPTIONS:pn-core-image-minimal = "bash:GPL-3.0-or-later"\nERROR_QA:remove:pn-core-image-minimal = "license-exception"')
- bitbake('core-image-minimal')
- class NoGPL3InImagesTests(OESelftestTestCase):
- def test_core_image_minimal(self):
- self.write_config("""
- INCOMPATIBLE_LICENSE:pn-core-image-minimal = "GPL-3.0* LGPL-3.0*"
- require conf/distro/include/no-gplv3.inc
- """)
- bitbake('core-image-minimal')
- def test_core_image_full_cmdline_weston(self):
- self.write_config("""
- IMAGE_CLASSES += "testimage"
- INCOMPATIBLE_LICENSE:pn-core-image-full-cmdline = "GPL-3.0* LGPL-3.0*"
- INCOMPATIBLE_LICENSE:pn-core-image-weston = "GPL-3.0* LGPL-3.0*"
- require conf/distro/include/no-gplv3.inc
- """)
- bitbake('core-image-full-cmdline core-image-weston')
- bitbake('-c testimage core-image-full-cmdline core-image-weston')
|