Sha256: 7cf32c2f5b0dce7053977c66ce03e69ca785663357b85720db30911fedb32621

Contents?: true

Size: 1.3 KB

Versions: 49

Compression:

Stored size: 1.3 KB

Contents

# frozen_string_literal: true

require 'rails_helper'

describe LHC do
  context 'post' do
    let(:feedback) do
      {
        recommended: false,
        source_id: 'aaa',
        content_ad_id: '1z-5r1fkaj'
      }
    end

    let(:change) do
      {
        recommended: false
      }
    end

    before(:each) do
      stub_request(:put, "http://datastore/v2/feedbacks")
        .with(body: change.to_json)
        .to_return(status: 200, body: feedback.merge(change).to_json, headers: { 'Content-Encoding' => 'UTF-8' })
    end

    it 'does a post request when providing a complete url' do
      LHC.put('http://datastore/v2/feedbacks', body: change)
    end

    it 'does a post request when providing the name of a configured endpoint' do
      url = 'http://{+datastore}/v2/feedbacks'
      options = { params: { datastore: 'datastore' } }
      LHC.configure { |c| c.endpoint(:feedbacks, url, options) }
      LHC.put(:feedbacks, body: change)
    end

    it 'makes response data available in a rails way' do
      response = LHC.put('http://datastore/v2/feedbacks', body: change)
      expect(response.data.recommended).to eq false
    end

    it 'provides response headers' do
      response = LHC.put('http://datastore/v2/feedbacks', body: change)
      expect(response.headers).to be_present
    end
  end
end

Version data entries

49 entries across 49 versions & 1 rubygems

Version Path
lhc-15.2.1 spec/basic_methods/put_spec.rb
lhc-15.2.0 spec/basic_methods/put_spec.rb
lhc-15.1.3 spec/basic_methods/put_spec.rb
lhc-15.1.2 spec/basic_methods/put_spec.rb
lhc-15.1.1 spec/basic_methods/put_spec.rb
lhc-15.1.0 spec/basic_methods/put_spec.rb
lhc-16.0.0.pre.pro2162.2 spec/basic_methods/put_spec.rb
lhc-16.0.0.pre.pro2162 spec/basic_methods/put_spec.rb
lhc-15.0.1 spec/basic_methods/put_spec.rb
lhc-15.0.0 spec/basic_methods/put_spec.rb
lhc-14.0.0 spec/basic_methods/put_spec.rb
lhc-13.4.0.pre.pro1766.1 spec/basic_methods/put_spec.rb
lhc-13.2.0 spec/basic_methods/put_spec.rb
lhc-13.1.0 spec/basic_methods/put_spec.rb
lhc-13.0.0 spec/basic_methods/put_spec.rb
lhc-12.3.0 spec/basic_methods/put_spec.rb
lhc-12.2.1 spec/basic_methods/put_spec.rb
lhc-12.2.0 spec/basic_methods/put_spec.rb
lhc-12.1.3 spec/basic_methods/put_spec.rb
lhc-12.1.2 spec/basic_methods/put_spec.rb