summaryrefslogtreecommitdiff
path: root/spec/bundler/support/artifice/compact_index_partial_update_no_etag_not_incremental.rb
blob: acf76dfbf07459b060ee1399be1ee23d4efef5be (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
# frozen_string_literal: true

require_relative "compact_index"

Artifice.deactivate

class CompactIndexPartialUpdateNoEtagNotIncremental < CompactIndexAPI
  def partial_update_no_etag
    response_body = yield
    headers "Surrogate-Control" => "max-age=2592000, stale-while-revalidate=60"
    content_type "text/plain"
    requested_range_for(response_body)
  end

  get "/versions" do
    partial_update_no_etag do
      file = tmp("versions.list")
      FileUtils.rm_f(file)
      file = CompactIndex::VersionsFile.new(file.to_s)
      file.create(gems)
      lines = file.contents([], :calculate_info_checksums => true).split("\n")
      name, versions, checksum = lines.last.split(" ")

      # shuffle versions so new versions are not appended to the end
      [*lines[0..-2], [name, versions.split(",").reverse.join(","), checksum].join(" ")].join("\n")
    end
  end

  get "/info/:name" do
    partial_update_no_etag do
      gem = gems.find {|g| g.name == params[:name] }
      lines = CompactIndex.info(gem ? gem.versions : []).split("\n")

      # shuffle versions so new versions are not appended to the end
      [lines.first, lines.last, *lines[1..-2]].join("\n")
    end
  end
end

Artifice.activate_with(CompactIndexPartialUpdateNoEtagNotIncremental)