Sha256: 93750ee50d29b814962472eab3651fd1ad64707a1afc295496534a7a113633e4

Contents?: true

Size: 1.19 KB

Versions: 19

Compression:

Stored size: 1.19 KB

Contents

require 'rails_helper'

describe LHS::Collection do
  let(:search) { 'http://local.ch/search' }
  let(:limit) { 10 }
  let(:total) { 20 }

  before do
    LHC.config.placeholder('search', search)
    class Search < LHS::Record
      configuration items_key: :docs, limit_key: :size, pagination_key: :start, pagination_strategy: :start, total_key: :totalResults
      endpoint '{+search}/{type}'
    end
    stub_request(:get, "http://local.ch/search/phonebook?size=10").to_return(
      body: {
        docs: (1..10).to_a,
        start: 1,
        size: limit,
        totalResults: total
      }.to_json
    )
    stub_request(:get, "http://local.ch/search/phonebook?size=10&start=11").to_return(
      body: {
        docs: (11..20).to_a,
        start: 11,
        size: limit,
        totalResults: total
      }.to_json
    )
  end

  context 'lets you configure how to deal with collections' do
    it 'initalises and gives access to collections according to configuration' do
      results = Search.all(type: :phonebook, size: 10)
      expect(results.count).to eq total
      expect(results.total).to eq total
      expect(results.limit).to eq limit
      expect(results.offset).to eq 11
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
lhs-16.1.5 spec/collection/configurable_spec.rb
lhs-16.1.4 spec/collection/configurable_spec.rb
lhs-16.1.3 spec/collection/configurable_spec.rb
lhs-16.1.2 spec/collection/configurable_spec.rb
lhs-16.1.1 spec/collection/configurable_spec.rb
lhs-16.1.0 spec/collection/configurable_spec.rb
lhs-16.0.1 spec/collection/configurable_spec.rb
lhs-16.0.0 spec/collection/configurable_spec.rb
lhs-15.7.0 spec/collection/configurable_spec.rb
lhs-15.6.1 spec/collection/configurable_spec.rb
lhs-15.6.0 spec/collection/configurable_spec.rb
lhs-15.5.1 spec/collection/configurable_spec.rb
lhs-15.5.0 spec/collection/configurable_spec.rb
lhs-15.4.1 spec/collection/configurable_spec.rb
lhs-15.4.0 spec/collection/configurable_spec.rb
lhs-15.4.0.pre.hasone.1 spec/collection/configurable_spec.rb
lhs-15.3.3 spec/collection/configurable_spec.rb
lhs-15.3.3.pre.fixoptions.1 spec/collection/configurable_spec.rb
lhs-15.3.2 spec/collection/configurable_spec.rb