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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
|
# frozen_string_literal: true
RSpec.describe "bundle install with the cooldown setting" do
before do
build_repo2
end
context "Gemfile DSL" do
it "accepts `source ..., cooldown: N` without error" do
install_gemfile <<-G, artifice: "compact_index"
source "https://gem.repo2", cooldown: 5
gem "myrack"
G
expect(the_bundle).to include_gems("myrack 1.0.0")
end
it "accepts `cooldown: 0` to disable cooldown for a source" do
install_gemfile <<-G, artifice: "compact_index"
source "https://gem.repo2", cooldown: 0
gem "myrack"
G
expect(the_bundle).to include_gems("myrack 1.0.0")
end
end
context "CLI flag" do
before do
gemfile <<-G
source "https://gem.repo2"
gem "myrack"
G
end
it "accepts --cooldown N on install" do
bundle "install --cooldown 7", artifice: "compact_index"
expect(the_bundle).to include_gems("myrack 1.0.0")
end
it "accepts --cooldown 0 as an escape hatch" do
bundle "install --cooldown 0", artifice: "compact_index"
expect(the_bundle).to include_gems("myrack 1.0.0")
end
it "rejects a negative --cooldown value" do
bundle "install --cooldown=-7", artifice: "compact_index", raise_on_error: false
expect(err).to match(/non-negative integer/)
end
end
context "configuration" do
it "reads BUNDLE_COOLDOWN as an integer" do
gemfile <<-G
source "https://gem.repo2"
gem "myrack"
G
bundle "install", env: { "BUNDLE_COOLDOWN" => "7" }, artifice: "compact_index"
expect(the_bundle).to include_gems("myrack 1.0.0")
end
it "reads `bundle config set cooldown N`" do
gemfile <<-G
source "https://gem.repo2"
gem "myrack"
G
bundle "config set cooldown 7"
bundle "install", artifice: "compact_index"
expect(the_bundle).to include_gems("myrack 1.0.0")
end
end
context "end-to-end with v2 compact index" do
before do
now = Time.now.utc
build_repo3 do
build_gem "ripe_gem", "1.0.0" do |s|
s.date = now - (30 * 86_400)
end
build_gem "ripe_gem", "2.0.0" do |s|
s.date = now - (1 * 86_400)
end
# parent only resolves with the in-cooldown child 2.0.0
build_gem "child", "1.0.0" do |s|
s.date = now - (30 * 86_400)
end
build_gem "child", "2.0.0" do |s|
s.date = now - (1 * 86_400)
end
build_gem "parent", "1.0.0" do |s|
s.add_dependency "child", ">= 2.0.0"
s.date = now - (30 * 86_400)
end
# a cooldown-eligible version exists above the in-cooldown locked one
build_gem "upgradable", "2.0.0" do |s|
s.date = now - (1 * 86_400)
end
build_gem "upgradable", "3.0.0" do |s|
s.date = now - (30 * 86_400)
end
end
end
it "excludes versions within the cooldown window" do
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
bundle "install --cooldown 7", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 1.0.0")
end
it "selects the latest version when --cooldown 0 is passed" do
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
bundle "install --cooldown 0", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 2.0.0")
end
it "applies cooldown declared per-source in the Gemfile" do
gemfile <<-G
source "https://gem.repo3", cooldown: 7
gem "ripe_gem"
G
bundle "install", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 1.0.0")
end
it "applies per-source Gemfile cooldown on bundle update when a lockfile exists" do
# Converging the Gemfile sources with the lockfile sources used to drop
# the per-source cooldown, so it only ever worked on a first resolve
# without a lockfile.
gemfile <<-G
source "https://gem.repo3", cooldown: 7
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "update ripe_gem", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 1.0.0")
end
it "applies per-source Gemfile cooldown to gems added after the lockfile was written" do
gemfile <<-G
source "https://gem.repo3", cooldown: 7
gem "ripe_gem"
gem "child"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "install", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 1.0.0", "child 1.0.0")
end
it "is overridden by CLI --cooldown when Gemfile sets a different per-source value" do
gemfile <<-G
source "https://gem.repo3", cooldown: 0
gem "ripe_gem"
G
bundle "install --cooldown 7", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 1.0.0")
end
it "bypasses cooldown when bundle install uses an existing lockfile" do
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (2.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "install --cooldown 7", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 2.0.0")
end
it "annotates in-cooldown versions in bundle outdated table output" do
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem", "1.0.0"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem (= 1.0.0)
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "outdated --cooldown 7", artifice: "compact_index_cooldown", raise_on_error: false
expect(out).to match(/ripe_gem.*\(cooldown \d+d\)/)
end
it "annotates in-cooldown versions in bundle outdated --parseable output" do
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem", "1.0.0"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem (= 1.0.0)
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "outdated --cooldown 7 --parseable", artifice: "compact_index_cooldown", raise_on_error: false
expect(out).to match(/ripe_gem.*in cooldown for \d+ more day/)
end
it "excludes a locally-installed version that is still within the cooldown window" do
system_gems "ripe_gem-2.0.0", gem_repo: gem_repo3
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
bundle "install --cooldown 7", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 1.0.0")
end
it "selects a locally-installed in-cooldown version when --cooldown 0 bypasses the filter" do
system_gems "ripe_gem-2.0.0", gem_repo: gem_repo3
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
bundle "install --cooldown 0", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 2.0.0")
end
it "surfaces a cooldown hint when bundle update filters every candidate" do
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "update ripe_gem --cooldown 99999", artifice: "compact_index_cooldown", raise_on_error: false
expect(err).to match(/excluded by the cooldown setting/)
expect(err).to match(/--cooldown 0/)
end
it "keeps an in-cooldown locked version on bundle update --all instead of failing" do
# Lockfile written before cooldown was enabled pins the now-in-cooldown
# latest version. A full update must not downgrade below it, and cooldown
# must not filter it out, otherwise resolution becomes impossible (#9598).
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (2.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "update --all --cooldown 7", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 2.0.0")
end
it "does not fail bundle outdated when the locked version is in cooldown" do
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (2.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "outdated --cooldown 7", artifice: "compact_index_cooldown", raise_on_error: false
# exit 0 means no outdated gems and, crucially, no resolution failure (exit 7)
expect(exitstatus).to eq(0)
end
it "still applies cooldown and downgrades a gem that is updated explicitly" do
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (2.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "update ripe_gem --cooldown 7", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 1.0.0")
end
it "keeps an in-cooldown transitive dependency on bundle update --all" do
gemfile <<-G
source "https://gem.repo3"
gem "parent"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
child (2.0.0)
parent (1.0.0)
child (>= 2.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
parent
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "update --all --cooldown 7", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("parent 1.0.0", "child 2.0.0")
end
it "still upgrades to a cooldown-eligible version above the locked one" do
gemfile <<-G
source "https://gem.repo3"
gem "upgradable"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
upgradable (2.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
upgradable
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "update --all --cooldown 7", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("upgradable 3.0.0")
end
it "keeps a top-level source cooldown through a partial update with multiple sources" do
now = Time.now.utc
build_repo4 do
build_gem "solo_gem", "1.0.0" do |s|
s.date = now - (30 * 86_400)
end
build_gem "solo_gem", "2.0.0" do |s|
s.date = now - (1 * 86_400)
end
end
gemfile <<-G
source "https://gem.repo3", cooldown: 7
gem "ripe_gem"
source "https://gem.repo4" do
gem "solo_gem"
end
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
GEM
remote: https://gem.repo4/
specs:
solo_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
solo_gem!
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "update ripe_gem", artifice: "compact_index_cooldown"
# A partial update converges the still-locked sources, the path that used
# to drop cooldown. repo3's cooldown must survive that even with a second
# source in the Gemfile, so its in-window 2.0.0 stays excluded.
expect(the_bundle).to include_gems("ripe_gem 1.0.0", "solo_gem 1.0.0")
end
it "carries cooldown declared on a gem-block source" do
now = Time.now.utc
build_repo4 do
build_gem "solo_gem", "1.0.0" do |s|
s.date = now - (30 * 86_400)
end
build_gem "solo_gem", "2.0.0" do |s|
s.date = now - (1 * 86_400)
end
end
gemfile <<-G
source "https://gem.repo3"
gem "ripe_gem"
source "https://gem.repo4", cooldown: 7 do
gem "solo_gem"
end
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
GEM
remote: https://gem.repo4/
specs:
solo_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
solo_gem!
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "update solo_gem", artifice: "compact_index_cooldown"
# The cooldown lives on the gem-block source, which is also converged from
# the lockfile. A partial update of solo_gem must keep that cooldown, so
# its in-window 2.0.0 stays excluded.
expect(the_bundle).to include_gems("ripe_gem 1.0.0", "solo_gem 1.0.0")
end
it "applies per-source Gemfile cooldown to a gem added via bundle add" do
gemfile <<-G
source "https://gem.repo3", cooldown: 7
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "add child", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("child 1.0.0")
end
it "applies per-source Gemfile cooldown on bundle lock --update" do
gemfile <<-G
source "https://gem.repo3", cooldown: 7
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (1.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "lock --update ripe_gem", artifice: "compact_index_cooldown"
expect(lockfile).to include("ripe_gem (1.0.0)")
expect(lockfile).not_to include("ripe_gem (2.0.0)")
end
it "ignores cooldown and installs the locked version when frozen" do
# Frozen installs read the lockfile instead of resolving, so cooldown has
# no say. A version already locked inside the window must still install.
gemfile <<-G
source "https://gem.repo3", cooldown: 7
gem "ripe_gem"
G
lockfile <<-L
GEM
remote: https://gem.repo3/
specs:
ripe_gem (2.0.0)
PLATFORMS
#{lockfile_platforms}
DEPENDENCIES
ripe_gem
BUNDLED WITH
#{Bundler::VERSION}
L
bundle "config set frozen true"
bundle "install", artifice: "compact_index_cooldown"
expect(the_bundle).to include_gems("ripe_gem 2.0.0")
end
it "keys per-source cooldown by the declared URI even behind a mirror" do
# A mirror rewrites the fetch URI, but cooldown is recorded under the URI
# written in the Gemfile. The cooldown must still apply through the
# redirect to the mirror that actually serves the gems.
bundle "config set mirror.https://gem.repo2 https://gem.repo3"
gemfile <<-G
source "https://gem.repo2", cooldown: 7
gem "ripe_gem"
G
bundle "install", artifice: "compact_index_cooldown",
env: { "BUNDLER_SPEC_GEM_REPO" => gem_repo3.to_s }
expect(the_bundle).to include_gems("ripe_gem 1.0.0")
end
end
context "with a source that does not provide publish dates" do
before do
build_repo3 do
build_gem "ripe_gem", "1.0.0"
build_gem "ripe_gem", "2.0.0"
end
end
it "cannot apply cooldown and installs the latest version" do
# The legacy dependency API does not expose per-version publish dates, so
# the cooldown filter has nothing to compare against and is silently
# inactive. This pins that limitation; flip the expectation if publish
# dates ever become available over this endpoint.
gemfile <<-G
source "https://gem.repo3", cooldown: 7
gem "ripe_gem"
G
bundle "install", artifice: "endpoint"
expect(the_bundle).to include_gems("ripe_gem 2.0.0")
end
end
end
|