Sha256: 9158b294f275a6014a4830fff50859d595202441392c3371265ed1fb3633f723

Contents?: true

Size: 1.12 KB

Versions: 19

Compression:

Stored size: 1.12 KB

Contents

require 'rails_helper'

describe LHS::Proxy do
  before do
    class Search < LHS::Record
      endpoint 'http://search/results', items_key: :docs
    end

    class Feedback < LHS::Record
      endpoint 'http://datastore/places/{place_id}/feedbacks'
    end
  end

  context 'identifying records' do
    it 'identifies records correctly even if parent record has another configuration set' do
      stub_request(:get, "http://search/results?what=Blumen")
        .to_return(body: {
          place: { href: 'http://datastore/places/1' }
        }.to_json)
      stub_request(:get, "http://datastore/places/1")
        .to_return(body: {
          feedbacks: { href: 'http://datastore/places/1/feedbacks?limit=10&offset=0' }
        }.to_json)
      stub_request(:get, "http://datastore/places/1/feedbacks?limit=10&offset=0")
        .to_return(body: {
          items: [{ review: 'Nice restaurant' }]
        }.to_json)
      result = Search.where(what: 'Blumen').includes(place: :feedbacks)
      expect(result.place.feedbacks).to be_kind_of Feedback
      expect(result.place.feedbacks.first.review).to eq 'Nice restaurant'
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

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