aboutsummaryrefslogtreecommitdiff
blob: be0f94e1794ad2a707f0d5ea8f2a31b2609239de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Copyright 2015 Gentoo Foundation
# 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 SonameAutoUnmaskTestCase(TestCase):

	def testSonameAutoUnmask(self):

		binpkgs = {
			"dev-libs/icu-49" : {
				"KEYWORDS": "x86",
				"PROVIDES": "x86_32: libicu.so.49",
			},
			"dev-libs/icu-4.8" : {
				"KEYWORDS": "x86",
				"PROVIDES": "x86_32: libicu.so.48",
			},
			"dev-libs/libxml2-2.7.8" : {
				"KEYWORDS": "~x86",
				"DEPEND":  "dev-libs/icu",
				"RDEPEND": "dev-libs/icu",
				"REQUIRES": "x86_32: libicu.so.49",
			},
		}

		installed = {
			"dev-libs/icu-4.8" : {
				"KEYWORDS": "x86",
				"PROVIDES": "x86_32: libicu.so.48",
			},
			"dev-libs/libxml2-2.7.8" : {
				"KEYWORDS": "~x86",
				"DEPEND":  "dev-libs/icu",
				"RDEPEND": "dev-libs/icu",
				"REQUIRES": "x86_32: libicu.so.48",
			},
		}

		world = ["dev-libs/libxml2"]

		test_cases = (

			ResolverPlaygroundTestCase(
				["dev-libs/icu"],
				options = {
					"--autounmask": True,
					"--ignore-soname-deps": "n",
					"--oneshot": True,
					"--usepkgonly": True,
				},
				success = False,
				mergelist = [
					"[binary]dev-libs/icu-49",
					"[binary]dev-libs/libxml2-2.7.8"
				],
				unstable_keywords = ['dev-libs/libxml2-2.7.8'],
			),

			ResolverPlaygroundTestCase(
				["dev-libs/icu"],
				options = {
					"--autounmask": True,
					"--ignore-soname-deps": "y",
					"--oneshot": True,
					"--usepkgonly": True,
				},
				success = True,
				mergelist = [
					"[binary]dev-libs/icu-49"
				]
			),

			# Test that dev-libs/icu-49 update is skipped due to
			# dev-libs/libxml2-2.7.8 being masked by KEYWORDS. Note
			# that this result is questionable, since the installed
			# dev-libs/libxml2-2.7.8 instance is also masked!
			ResolverPlaygroundTestCase(
				["@world"],
				options = {
					"--autounmask": True,
					"--deep": True,
					"--ignore-soname-deps": "n",
					"--update": True,
					"--usepkgonly": True,
				},
				success = True,
				mergelist = [],
			),

		)

		playground = ResolverPlayground(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()