Sha256: dc45bd6a6feec09d2c538f08da533869768fc1539cb63d5785e690f88a712e9e

Contents?: true

Size: 1.12 KB

Versions: 45

Compression:

Stored size: 1.12 KB

Contents

require 'rails_helper'

describe LHS::Proxy do
  before(:each) 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

45 entries across 45 versions & 1 rubygems

Version Path
lhs-14.6.5 spec/proxy/record_identification_spec.rb
lhs-14.6.4 spec/proxy/record_identification_spec.rb
lhs-14.6.3 spec/proxy/record_identification_spec.rb
lhs-14.6.2 spec/proxy/record_identification_spec.rb
lhs-14.6.1 spec/proxy/record_identification_spec.rb
lhs-14.6.0 spec/proxy/record_identification_spec.rb
lhs-14.5.0 spec/proxy/record_identification_spec.rb
lhs-14.4.0 spec/proxy/record_identification_spec.rb
lhs-14.3.4 spec/proxy/record_identification_spec.rb
lhs-14.3.3 spec/proxy/record_identification_spec.rb
lhs-14.3.2 spec/proxy/record_identification_spec.rb
lhs-14.3.1 spec/proxy/record_identification_spec.rb
lhs-14.3.0 spec/proxy/record_identification_spec.rb
lhs-14.2.0 spec/proxy/record_identification_spec.rb
lhs-14.1.1 spec/proxy/record_identification_spec.rb
lhs-14.1.0 spec/proxy/record_identification_spec.rb
lhs-14.0.3 spec/proxy/record_identification_spec.rb
lhs-14.0.2 spec/proxy/record_identification_spec.rb
lhs-14.0.1 spec/proxy/record_identification_spec.rb
lhs-14.0.0 spec/proxy/record_identification_spec.rb