Sha256: f7e23fe373e5762bf4a0f66fdfd1a57daee1783a76d7d71a434e9277e6361a06

Contents?: true

Size: 1.77 KB

Versions: 19

Compression:

Stored size: 1.77 KB

Contents

require 'rails_helper'

describe LHS::Item do
  before do
    LHC.config.placeholder('datastore', datastore)
    class Record < LHS::Record
      endpoint '{+datastore}/v2/{campaign_id}/feedbacks'
      endpoint '{+datastore}/v2/feedbacks'
    end
  end

  let(:datastore) do
    'http://local.ch'
  end

  let(:json) do
    load_json(:feedbacks)
  end

  let(:data) do
    LHS::Data.new(json, nil, Record)
  end

  let(:item) do
    data[0]
  end

  context 'destroy' do
    it 'destroys the item on the backend' do
      stub_request(:delete, "#{datastore}/v2/feedbacks/0sdaetZ-OWVg4oBiBJ-7IQ")
        .to_return(status: 200)
      expect(item.destroy._raw).to eq item._raw
    end

    it 'updates the request information on the item' do
      no_content = 204
      stub_request(:delete, "#{datastore}/v2/feedbacks/0sdaetZ-OWVg4oBiBJ-7IQ")
        .to_return(status: no_content)
      expect(item.destroy._request.response.code).to eq no_content
    end

    context 'includes and empty response' do
      before do
        class AnotherRecord < LHS::Record
          endpoint '{+datastore}/v2/:campaign_id/restaurants'
        end
      end

      it 'destroys an item even though it includes additonal services and an empty response body' do
        stub_request(:delete, "#{datastore}/v2/feedbacks/1")
          .to_return(status: 204, body: '')
        data = { href: "#{datastore}/v2/feedbacks/1", restaurant: { href: "#{datastore}/v2/restaurants/1" } }
        stub_request(:get, "#{datastore}/v2/feedbacks?id=1")
          .to_return(status: 200, body: data.to_json)
        stub_request(:get, "#{datastore}/v2/restaurants/1")
          .to_return(status: 200, body: { name: 'Casa Ferlin' }.to_json)
        item = Record.includes(:restaurant).find(1)
        item.destroy
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

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