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

require_relative "compact_index"

Artifice.deactivate

class CompactIndexRangeNotSatisfiable < CompactIndexAPI
  get "/versions" do
    if env["HTTP_RANGE"]
      status 416
    else
      etag_response do
        file = tmp("versions.list")
        FileUtils.rm_f(file)
        file = CompactIndex::VersionsFile.new(file.to_s)
        file.create(gems)
        file.contents
      end
    end
  end

  get "/info/:name" do
    if env["HTTP_RANGE"]
      status 416
    else
      etag_response do
        gem = gems.find {|g| g.name == params[:name] }
        CompactIndex.info(gem ? gem.versions : [])
      end
    end
  end
end

Artifice.activate_with(CompactIndexRangeNotSatisfiable)