Sha256: 1605e252868bc043c44fc81b0fd5daffe0b46ca2d9183c87f9c8c38ef035f811

Contents?: true

Size: 1.26 KB

Versions: 35

Compression:

Stored size: 1.26 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
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
lhs-5.6.1 spec/item/save_spec.rb
lhs-5.6.0 spec/item/save_spec.rb
lhs-5.5.0 spec/item/save_spec.rb
lhs-5.4.2 spec/item/save_spec.rb
lhs-5.4.1 spec/item/save_spec.rb
lhs-5.4.0 spec/item/save_spec.rb
lhs-5.3.0 spec/item/save_spec.rb
lhs-5.2.0 spec/item/save_spec.rb
lhs-5.1.0 spec/item/save_spec.rb
lhs-5.0.4 spec/item/save_spec.rb
lhs-5.0.3 spec/item/save_spec.rb
lhs-5.0.1 spec/item/save_spec.rb
lhs-5.0.0 spec/item/save_spec.rb
lhs-4.2.1 spec/item/save_spec.rb
lhs-4.2.0 spec/item/save_spec.rb
lhs-4.1.0 spec/item/save_spec.rb
lhs-4.0.0 spec/item/save_spec.rb
lhs-3.4.2 spec/item/save_spec.rb
lhs-3.4.1 spec/item/save_spec.rb
lhs-3.4.0 spec/item/save_spec.rb