aboutsummaryrefslogtreecommitdiff
blob: c0d64991c80407e3043f3c33eef202b26207d11d (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# Copyright 2017 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 BdepsTestCase(TestCase):

	def testImageMagickUpdate(self):

		ebuilds = {
			"app-misc/A-1" : {
				"EAPI": "6",
				"DEPEND": "app-misc/B",
				"RDEPEND": "app-misc/C",
			},

			"app-misc/B-1" : {
				"EAPI": "6"
			},
			"app-misc/B-2" : {
				"EAPI": "6",
			},

			"app-misc/C-1" : {
				"EAPI": "6",
				"DEPEND": "app-misc/D",
			},
			"app-misc/C-2" : {
				"EAPI": "6",
				"DEPEND": "app-misc/D",
			},

			"app-misc/D-1" : {
				"EAPI": "6",
			},
			"app-misc/D-2" : {
				"EAPI": "6",
			},
		}

		installed = {
			"app-misc/A-1" : {
				"EAPI": "6",
				"DEPEND": "app-misc/B",
				"RDEPEND": "app-misc/C",
			},

			"app-misc/B-1" : {
				"EAPI": "6",
			},
			"app-misc/C-1" : {
				"EAPI": "6",
				"DEPEND": "app-misc/D",
			},

			"app-misc/D-1" : {
				"EAPI": "6",
			},
		}

		binpkgs = {
			"app-misc/A-1" : {
				"EAPI": "6",
				"DEPEND": "app-misc/B",
				"RDEPEND": "app-misc/C",
			},

			"app-misc/B-1" : {
				"EAPI": "6",
			},
			"app-misc/B-2" : {
				"EAPI": "6",
			},

			"app-misc/C-1" : {
				"EAPI": "6",
				"DEPEND": "app-misc/D",
			},
			"app-misc/C-2" : {
				"EAPI": "6",
				"DEPEND": "app-misc/D",
			},

			"app-misc/D-1" : {
				"EAPI": "6",
			},
			"app-misc/D-2" : {
				"EAPI": "6",
			},
		}

		world = (
			"app-misc/A",
		)

		test_cases = (

			# Enable --with-bdeps automatically when
			# --usepkg has not been specified.
			ResolverPlaygroundTestCase(
				["@world"],
				options = {
					"--update": True,
					"--deep": True,
				},
				success = True,
				ambiguous_merge_order = True,
				mergelist = [
					"app-misc/D-2",
					("app-misc/B-2", "app-misc/C-2"),
				]
			),

			# Use --with-bdeps-auto=n to prevent --with-bdeps
			# from being enabled automatically.
			ResolverPlaygroundTestCase(
				["@world"],
				options = {
					"--update": True,
					"--deep": True,
					"--with-bdeps-auto": "n",
				},
				success = True,
				mergelist = [
					"app-misc/D-2",
					"app-misc/C-2",
				]
			),

			# Do not enable --with-bdeps automatically when
			# --usepkg has been specified, since many users of binary
			# packages do not want unnecessary build time dependencies
			# installed. In this case we miss an update to
			# app-misc/D-2, since DEPEND is not pulled in for
			# the [binary]app-misc/C-2 update.
			ResolverPlaygroundTestCase(
				["@world"],
				options = {
					"--update": True,
					"--deep": True,
					"--usepkg": True,
				},
				success = True,
				mergelist = [
					"[binary]app-misc/C-2",
				]
			),

			# Use --with-bdeps=y to pull in build-time dependencies of
			# binary packages.
			ResolverPlaygroundTestCase(
				["@world"],
				options = {
					"--update": True,
					"--deep": True,
					"--usepkg": True,
					"--with-bdeps": "y",
				},
				success = True,
				ambiguous_merge_order = True,
				mergelist = [
					(
						"[binary]app-misc/D-2",
						"[binary]app-misc/B-2",
						"[binary]app-misc/C-2",
					),
				]
			),

			# For --depclean, do not remove build-time dependencies by
			# default. Specify --with-bdeps-auto=n, in order to
			# demonstrate that it does not affect removal actions.
			ResolverPlaygroundTestCase(
				[],
				options = {
					"--depclean": True,
					"--with-bdeps-auto": "n",
				},
				success = True,
				cleanlist = [],
			),

			# For --depclean, remove build-time dependencies if
			# --with-bdeps=n has been specified.
			ResolverPlaygroundTestCase(
				[],
				options = {
					"--depclean": True,
					"--with-bdeps": "n",
				},
				success = True,
				ignore_cleanlist_order = True,
				cleanlist = [
					"app-misc/D-1",
					"app-misc/B-1",
				],
			),
		)

		playground = ResolverPlayground(debug=False,
			ebuilds=ebuilds, installed=installed,
			binpkgs=binpkgs, world=world)
		try:
			for test_case in test_cases:
				playground.run_TestCase(test_case)
				self.assertEqual(test_case.test_success, True,
					test_case.fail_msg)
		finally:
			# Disable debug so that cleanup works.
			playground.debug = False
			playground.cleanup()