Sha256: 2ca722c0f7af90f0a6d11485595b86f95e464d224f9ff3630a36aee6eac73cc1

Contents?: true

Size: 1.69 KB

Versions: 76

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

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 parameters for retrieving pages' do

    it 'uses explicit parameters when retrieving 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

76 entries across 76 versions & 1 rubygems

Version Path
lhs-26.2.0 spec/pagination/parameters_spec.rb
lhs-26.1.0 spec/pagination/parameters_spec.rb
lhs-26.0.1 spec/pagination/parameters_spec.rb
lhs-26.0.0 spec/pagination/parameters_spec.rb
lhs-25.2.0 spec/pagination/parameters_spec.rb
lhs-25.1.0 spec/pagination/parameters_spec.rb
lhs-25.0.4 spec/pagination/parameters_spec.rb
lhs-25.0.3 spec/pagination/parameters_spec.rb
lhs-25.0.2 spec/pagination/parameters_spec.rb
lhs-25.0.1 spec/pagination/parameters_spec.rb
lhs-25.0.0 spec/pagination/parameters_spec.rb
lhs-24.1.2 spec/pagination/parameters_spec.rb
lhs-24.1.1 spec/pagination/parameters_spec.rb
lhs-24.1.0 spec/pagination/parameters_spec.rb
lhs-24.1.0.pre.2 spec/pagination/parameters_spec.rb
lhs-24.1.0.pre.1 spec/pagination/parameters_spec.rb
lhs-24.0.0 spec/pagination/parameters_spec.rb
lhs-23.0.2 spec/pagination/parameters_spec.rb
lhs-23.0.1 spec/pagination/parameters_spec.rb
lhs-23.0.0 spec/pagination/parameters_spec.rb