Sha256: 0dd5408e9d4ca40fb12392797ff026f289993b51033a15d332a515b3a1299cf2

Contents?: true

Size: 1.66 KB

Versions: 8

Compression:

Stored size: 1.66 KB

Contents

require 'rails_helper'
require 'webrick'

describe LHS::Record do

  before do
    class Location < LHS::Record
      endpoint 'http://uberall/locations'
      configuration(
        limit_key: { body: %i[response max], parameter: :max },
        pagination_key: { body: %i[response offset], parameter: :offset },
        total_key: %i[response count],
        items_key: %i[response locations],
        pagination_strategy: :offset
      )
    end
  end

  context 'explicit pagination paramters for retreiving pages' do

    it 'uses explicit parameters when retreiving pages' do
      stub_request(:get, "http://uberall/locations?max=100")
        .to_return(body: {
          response: {
            locations: 10.times.map { |_| { name: WEBrick::Utils.random_string(10) } },
            max: 10,
            offset: 0,
            count: 30
          }
        }.to_json)

      stub_request(:get, "http://uberall/locations?max=10&offset=10")
        .to_return(body: {
          response: {
            locations: 10.times.map { |_| { name: WEBrick::Utils.random_string(10) } },
            max: 10,
            offset: 10,
            count: 30
          }
        }.to_json)

      stub_request(:get, "http://uberall/locations?max=10&offset=20")
        .to_return(body: {
          response: {
            locations: 10.times.map { |_| { name: WEBrick::Utils.random_string(10) } },
            max: 10,
            offset: 20,
            count: 30
          }
        }.to_json)

      locations = Location.all.fetch
      expect(locations.length).to eq 30
      expect(locations.count).to eq 30
      expect(locations.offset).to eq 20
      expect(locations.limit).to eq 10
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
lhs-15.5.1 spec/pagination/parameters_spec.rb
lhs-15.5.0 spec/pagination/parameters_spec.rb
lhs-15.4.1 spec/pagination/parameters_spec.rb
lhs-15.4.0 spec/pagination/parameters_spec.rb
lhs-15.4.0.pre.hasone.1 spec/pagination/parameters_spec.rb
lhs-15.3.3 spec/pagination/parameters_spec.rb
lhs-15.3.3.pre.fixoptions.1 spec/pagination/parameters_spec.rb
lhs-15.3.2 spec/pagination/parameters_spec.rb