Sha256: 8a22449f8a74ad2bcfdb98039d63592c641f166e970e9b455fc7b911d774bf0c

Contents?: true

Size: 1.63 KB

Versions: 6

Compression:

Stored size: 1.63 KB

Contents

require 'rails_helper'

describe LHS::Item do
  before(:each) do
    class Record < LHS::Record
      endpoint ':datastore/v2/:campaign_id/feedbacks'
      endpoint ':datastore/v2/feedbacks'
    end
  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 'save' do
    it 'persists changes on the backend' do
      stub_request(:post, item.href).with(body: item._raw.merge(name: 'Steve').to_json)
      item.name = 'Steve'
      expect(item.save).to eq true
    end

    it 'returns false if persting goes wrong' do
      stub_request(:post, item.href)
        .with(body: item._raw.to_json)
        .to_return(status: 500)
      expect(item.save).to eq false
    end

    it 'merges reponse data with object' do
      stub_request(:post, item.href)
        .with(body: item._raw.to_json)
        .to_return(status: 200, body: item._raw.merge(name: 'Steve').to_json)
      item.save
      expect(item.name).to eq 'Steve'
    end
  end

  context 'save!' do
    it 'raises if something goes wrong' do
      stub_request(:post, item.href)
        .with(body: item._raw.to_json)
        .to_return(status: 500)
      expect(-> { item.save! }).to raise_error LHC::ServerError
    end

    it 'keeps header psassed in the options' do
      headers = { 'Stats' => 'first-access' }
      request = stub_request(:post, item.href)
        .with(
          body: item._raw.to_json,
          headers: headers
        )
        .to_return(status: 200, body: item._raw.to_json)

      item.save!(headers: headers)
      expect(request).to have_been_requested
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lhs-6.7.1 spec/item/save_spec.rb
lhs-6.7.0 spec/item/save_spec.rb
lhs-6.6.2 spec/item/save_spec.rb
lhs-6.6.1 spec/item/save_spec.rb
lhs-6.6.0 spec/item/save_spec.rb
lhs-6.5.0 spec/item/save_spec.rb