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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
# frozen_string_literal: true
module Spec
module Indexes
def dep(name, reqs = nil)
@deps ||= []
@deps << Bundler::Dependency.new(name, reqs)
end
def platform(*args)
@platforms ||= []
@platforms.concat args.map {|p| Gem::Platform.new(p) }
end
alias_method :platforms, :platform
def resolve(args = [])
@platforms ||= ["ruby"]
deps = []
@deps.each do |d|
@platforms.each do |p|
deps << Bundler::DepProxy.new(d, p)
end
end
Bundler::Resolver.resolve(deps, @index, *args)
end
def should_resolve_as(specs)
got = resolve
got = got.map(&:full_name).sort
expect(got).to eq(specs.sort)
end
def should_resolve_and_include(specs, args = [])
got = resolve(args)
got = got.map(&:full_name).sort
specs.each do |s|
expect(got).to include(s)
end
end
def should_conflict_on(names)
got = resolve
flunk "The resolve succeeded with: #{got.map(&:full_name).sort.inspect}"
rescue Bundler::VersionConflict => e
expect(Array(names).sort).to eq(e.conflicts.sort)
end
def gem(*args, &blk)
build_spec(*args, &blk).first
end
def locked(*args)
Bundler::SpecSet.new(args.map do |name, version|
gem(name, version)
end)
end
def should_consv_resolve_and_include(opts, unlock, specs)
# empty unlock means unlock all
opts = Array(opts)
search = Bundler::GemVersionPromoter.new(@locked, unlock).tap do |s|
s.level = opts.first
s.strict = opts.include?(:strict)
s.minimal = opts.include?(:minimal)
end
should_resolve_and_include specs, [{}, [], nil, search]
end
def an_awesome_index
build_index do
gem "rack", %w(0.8 0.9 0.9.1 0.9.2 1.0 1.1)
gem "rack-mount", %w(0.4 0.5 0.5.1 0.5.2 0.6)
# --- Rails
versions "1.2.3 2.2.3 2.3.5 3.0.0.beta 3.0.0.beta1" do |version|
gem "activesupport", version
gem "actionpack", version do
dep "activesupport", version
if version >= v("3.0.0.beta")
dep "rack", "~> 1.1"
dep "rack-mount", ">= 0.5"
elsif version > v("2.3") then dep "rack", "~> 1.0.0"
elsif version > v("2.0.0") then dep "rack", "~> 0.9.0"
end
end
gem "activerecord", version do
dep "activesupport", version
dep "arel", ">= 0.2" if version >= v("3.0.0.beta")
end
gem "actionmailer", version do
dep "activesupport", version
dep "actionmailer", version
end
if version < v("3.0.0.beta")
gem "railties", version do
dep "activerecord", version
dep "actionpack", version
dep "actionmailer", version
dep "activesupport", version
end
else
gem "railties", version
gem "rails", version do
dep "activerecord", version
dep "actionpack", version
dep "actionmailer", version
dep "activesupport", version
dep "railties", version
end
end
end
versions "1.0 1.2 1.2.1 1.2.2 1.3 1.3.0.1 1.3.5 1.4.0 1.4.2 1.4.2.1" do |version|
platforms "ruby java mswin32 mingw32 x64-mingw32" do |platform|
next if version == v("1.4.2.1") && platform != pl("x86-mswin32")
next if version == v("1.4.2") && platform == pl("x86-mswin32")
gem "nokogiri", version, platform do
dep "weakling", ">= 0.0.3" if platform =~ pl("java")
end
end
end
versions "0.0.1 0.0.2 0.0.3" do |version|
gem "weakling", version
end
# --- Rails related
versions "1.2.3 2.2.3 2.3.5" do |version|
gem "activemerchant", version do
dep "activesupport", ">= #{version}"
end
end
end
end
# Builder 3.1.4 will activate first, but if all
# goes well, it should resolve to 3.0.4
def a_conflict_index
build_index do
gem "builder", %w(3.0.4 3.1.4)
gem("grape", "0.2.6") do
dep "builder", ">= 0"
end
versions "3.2.8 3.2.9 3.2.10 3.2.11" do |version|
gem("activemodel", version) do
dep "builder", "~> 3.0.0"
end
end
gem("my_app", "1.0.0") do
dep "activemodel", ">= 0"
dep "grape", ">= 0"
end
end
end
def a_complex_conflict_index
build_index do
gem("a", %w(1.0.2 1.1.4 1.2.0 1.4.0)) do
dep "d", ">= 0"
end
gem("d", %w(1.3.0 1.4.1)) do
dep "x", ">= 0"
end
gem "d", "0.9.8"
gem("b", "0.3.4") do
dep "a", ">= 1.5.0"
end
gem("b", "0.3.5") do
dep "a", ">= 1.2"
end
gem("b", "0.3.3") do
dep "a", "> 1.0"
end
versions "3.2 3.3" do |version|
gem("c", version) do
dep "a", "~> 1.0"
end
end
gem("my_app", "1.3.0") do
dep "c", ">= 4.0"
dep "b", ">= 0"
end
gem("my_app", "1.2.0") do
dep "c", "~> 3.3.0"
dep "b", "0.3.4"
end
gem("my_app", "1.1.0") do
dep "c", "~> 3.2.0"
dep "b", "0.3.5"
end
end
end
def index_with_conflict_on_child
build_index do
gem "json", %w(1.6.5 1.7.7 1.8.0)
gem("chef", "10.26") do
dep "json", [">= 1.4.4", "<= 1.7.7"]
end
gem("berkshelf", "2.0.7") do
dep "json", ">= 1.7.7"
end
gem("chef_app", "1.0.0") do
dep "berkshelf", "~> 2.0"
dep "chef", "~> 10.26"
end
end
end
# Issue #3459
def a_complicated_index
build_index do
gem "foo", %w(3.0.0 3.0.5) do
dep "qux", ["~> 3.1"]
dep "baz", ["< 9.0", ">= 5.0"]
dep "bar", ["~> 1.0"]
dep "grault", ["~> 3.1"]
end
gem "foo", "1.2.1" do
dep "baz", ["~> 4.2"]
dep "bar", ["~> 1.0"]
dep "qux", ["~> 3.1"]
dep "grault", ["~> 2.0"]
end
gem "bar", "1.0.5" do
dep "grault", ["~> 3.1"]
dep "baz", ["< 9", ">= 4.2"]
end
gem "bar", "1.0.3" do
dep "baz", ["< 9", ">= 4.2"]
dep "grault", ["~> 2.0"]
end
gem "baz", "8.2.10" do
dep "grault", ["~> 3.0"]
dep "garply", [">= 0.5.1", "~> 0.5"]
end
gem "baz", "5.0.2" do
dep "grault", ["~> 2.0"]
dep "garply", [">= 0.3.1"]
end
gem "baz", "4.2.0" do
dep "grault", ["~> 2.0"]
dep "garply", [">= 0.3.1"]
end
gem "grault", %w(2.6.3 3.1.1)
gem "garply", "0.5.1" do
dep "waldo", ["~> 0.1.3"]
end
gem "waldo", "0.1.5" do
dep "plugh", ["~> 0.6.0"]
end
gem "plugh", %w(0.6.3 0.6.11 0.7.0)
gem "qux", "3.2.21" do
dep "plugh", [">= 0.6.4", "~> 0.6"]
dep "corge", ["~> 1.0"]
end
gem "corge", "1.10.1"
end
end
def a_unresovable_child_index
build_index do
gem "json", %w(1.8.0)
gem("chef", "10.26") do
dep "json", [">= 1.4.4", "<= 1.7.7"]
end
gem("berkshelf", "2.0.7") do
dep "json", ">= 1.7.7"
end
gem("chef_app_error", "1.0.0") do
dep "berkshelf", "~> 2.0"
dep "chef", "~> 10.26"
end
end
end
def a_index_with_root_conflict_on_child
build_index do
gem "builder", %w(2.1.2 3.0.1 3.1.3)
gem "i18n", %w(0.4.1 0.4.2)
gem "activesupport", %w(3.0.0 3.0.1 3.0.5 3.1.7)
gem("activemodel", "3.0.5") do
dep "activesupport", "= 3.0.5"
dep "builder", "~> 2.1.2"
dep "i18n", "~> 0.4"
end
gem("activemodel", "3.0.0") do
dep "activesupport", "= 3.0.0"
dep "builder", "~> 2.1.2"
dep "i18n", "~> 0.4.1"
end
gem("activemodel", "3.1.3") do
dep "activesupport", "= 3.1.3"
dep "builder", "~> 2.1.2"
dep "i18n", "~> 0.5"
end
gem("activerecord", "3.0.0") do
dep "activesupport", "= 3.0.0"
dep "activemodel", "= 3.0.0"
end
gem("activerecord", "3.0.5") do
dep "activesupport", "= 3.0.5"
dep "activemodel", "= 3.0.5"
end
gem("activerecord", "3.0.9") do
dep "activesupport", "= 3.1.5"
dep "activemodel", "= 3.1.5"
end
end
end
def a_circular_index
build_index do
gem "rack", "1.0.1"
gem("foo", "0.2.6") do
dep "bar", ">= 0"
end
gem("bar", "1.0.0") do
dep "foo", ">= 0"
end
gem("circular_app", "1.0.0") do
dep "foo", ">= 0"
dep "bar", ">= 0"
end
end
end
end
end
|