commit: e9c0ef7609e8e2068af8c9c7138f1a2dc22fcfb0 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Sun Nov 15 04:25:22 2020 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Sun Nov 15 05:54:37 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e9c0ef76
Add slot operator := BDEPEND unit tests for bug 752153 Test these two distinct cases: 1) Regular dev-lang/go upgrade, with rebuild of packages that have dev-lang/go:= in BDEPEND. 2) Rebuild of packages that have dev-lang/go:= in BDEPEND, after the built slot operator deps have already been broken by an earlier dev-lang/go upgrade. Bug: https://bugs.gentoo.org/752153 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> .../tests/resolver/test_slot_operator_bdeps.py | 209 +++++++++++++++++++++ 1 file changed, 209 insertions(+) diff --git a/lib/portage/tests/resolver/test_slot_operator_bdeps.py b/lib/portage/tests/resolver/test_slot_operator_bdeps.py new file mode 100644 index 000000000..f5b1bce1b --- /dev/null +++ b/lib/portage/tests/resolver/test_slot_operator_bdeps.py @@ -0,0 +1,209 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +from portage.tests import TestCase +from portage.tests.resolver.ResolverPlayground import (ResolverPlayground, + ResolverPlaygroundTestCase) + +class SlotOperatorBdependTestCase(TestCase): + + def testSlotOperatorBdepend(self): + """ + Test regular dev-lang/go upgrade, with rebuild of packages + that have dev-lang/go:= in BDEPEND. + """ + + ebuilds = { + "app-emulation/buildah-1.16.1":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:=", + }, + + "app-emulation/libpod-2.1.0":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:=", + }, + + "dev-lang/go-1.15.5":{ + "EAPI": "7", + "SLOT": "0/1.15.5" + }, + + "dev-lang/go-1.14.12" : { + "EAPI": "7", + "SLOT": "0/1.14.12" + }, + } + + binpkgs = { + "app-emulation/buildah-1.16.1":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:0/1.14.12=", + }, + "app-emulation/libpod-2.1.0":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:0/1.14.12=", + }, + "dev-lang/go-1.14.12" : { + "EAPI": "7", + "SLOT": "0/1.14.12" + }, + } + + installed = { + "app-emulation/buildah-1.16.1":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:0/1.14.12=", + }, + "app-emulation/libpod-2.1.0":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:0/1.14.12=", + }, + "dev-lang/go-1.14.12" : { + "EAPI": "7", + "SLOT": "0/1.14.12" + }, + } + + world = ["app-emulation/buildah", "app-emulation/libpod"] + + test_cases = ( + + # Test rebuild triggered by slot operator := dependency in BDEPEND. + ResolverPlaygroundTestCase( + ["@world"], + options = { + "--update": True, + "--deep": True, + }, + success = True, + mergelist = ["dev-lang/go-1.15.5", "app-emulation/buildah-1.16.1", "app-emulation/libpod-2.1.0"] + ), + + # Test the above case with --usepkg --with-bdeps=y. It should not use the + # binary packages because rebuild is needed. + ResolverPlaygroundTestCase( + ["@world"], + options = { + "--usepkg": True, + "--with-bdeps": "y", + "--update": True, + "--deep": True, + }, + success = True, + mergelist = ["dev-lang/go-1.15.5", "app-emulation/buildah-1.16.1", "app-emulation/libpod-2.1.0"] + ), + ) + + playground = ResolverPlayground(ebuilds=ebuilds, binpkgs=binpkgs, + installed=installed, world=world, debug=False) + try: + for test_case in test_cases: + playground.run_TestCase(test_case) + self.assertEqual(test_case.test_success, True, test_case.fail_msg) + finally: + playground.debug = False + playground.cleanup() + + def testSlotOperatorBdependAfterBreakage(self): + """ + Test rebuild of packages that have dev-lang/go:= in BDEPEND, + after the built slot operator deps have already been broken + by an earlier dev-lang/go upgrade. + """ + + ebuilds = { + "app-emulation/buildah-1.16.1":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:=", + }, + + "app-emulation/libpod-2.1.0":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:=", + }, + + "dev-lang/go-1.15.5":{ + "EAPI": "7", + "SLOT": "0/1.15.5" + }, + + "dev-lang/go-1.14.12" : { + "EAPI": "7", + "SLOT": "0/1.14.12" + }, + } + + binpkgs = { + "app-emulation/buildah-1.16.1":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:0/1.14.12=", + }, + "app-emulation/libpod-2.1.0":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:0/1.14.12=", + }, + "dev-lang/go-1.14.12" : { + "EAPI": "7", + "SLOT": "0/1.14.12" + }, + "dev-lang/go-1.15.5" : { + "EAPI": "7", + "SLOT": "0/1.15.5" + }, + } + + installed = { + "app-emulation/buildah-1.16.1":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:0/1.14.12=", + }, + "app-emulation/libpod-2.1.0":{ + "EAPI": "7", + "BDEPEND": "dev-lang/go:0/1.14.12=", + }, + "dev-lang/go-1.15.5" : { + "EAPI": "7", + "SLOT": "0/1.15.5" + }, + } + + world = ["app-emulation/buildah", "app-emulation/libpod"] + + test_cases = ( + + # Test rebuild triggered by slot operator := dependency in BDEPEND. + ResolverPlaygroundTestCase( + ["@world"], + options = { + "--update": True, + "--deep": True, + }, + success = True, + mergelist = ["app-emulation/buildah-1.16.1", "app-emulation/libpod-2.1.0"] + ), + + # Test the above case with --usepkg --with-bdeps=y. It should not use the + # binary packages because rebuild is needed. + ResolverPlaygroundTestCase( + ["@world"], + options = { + "--usepkg": True, + "--with-bdeps": "y", + "--update": True, + "--deep": True, + }, + success = True, + mergelist = ["app-emulation/buildah-1.16.1", "app-emulation/libpod-2.1.0"] + ), + ) + + playground = ResolverPlayground(ebuilds=ebuilds, binpkgs=binpkgs, + installed=installed, world=world, debug=False) + try: + for test_case in test_cases: + playground.run_TestCase(test_case) + self.assertEqual(test_case.test_success, True, test_case.fail_msg) + finally: + playground.debug = False + playground.cleanup()
