Sha256: 18924c19302ee25f97b86711327096195a682dda1ea3a836a50439df71bef127

Contents?: true

Size: 1.75 KB

Versions: 15

Compression:

Stored size: 1.75 KB

Contents

require 'rails_helper'

describe LHS::Service do

  context 'creation failed' do

    let(:datastore) { 'http://local.ch/v2' }

    before(:each) do
      LHC.config.placeholder(:datastore, datastore)
      class SomeService < LHS::Service
        endpoint ':datastore/:campaign_id/feedbacks'
        endpoint ':datastore/feedbacks'
      end
    end

    let(:error_message) { "ratings must be set when review or name or review_title is set | The property value is required; it cannot be null, empty, or blank." }

    let(:creation_error) do
      {
        "status" => 400,
        "message" => error_message,
        "fields" => [
          {
            "name" => "ratings",
            "details" => [{ "code" => "REQUIRED_PROPERTY_VALUE" }]
          },{
            "name" => "recommended",
            "details" => [{"code" => "REQUIRED_PROPERTY_VALUE"}]
          }
        ]
      }
    end

    it 'provides errors when creation failed' do
      stub_request(:post, "#{datastore}/feedbacks")
      .to_return(status: 400, body: creation_error.to_json)
      record = SomeService.create(name: 'Steve')
      expect(record.errors).to be
      expect(record.name).to eq 'Steve'
      expect(record.errors.include?(:ratings)).to eq true
      expect(record.errors.include?(:recommended)).to eq true
      expect(record.errors[:ratings]).to eq ['REQUIRED_PROPERTY_VALUE']
      expect(record.errors.messages).to eq({:ratings=>["REQUIRED_PROPERTY_VALUE"], :recommended=>["REQUIRED_PROPERTY_VALUE"]})
      expect(record.errors.message).to eq error_message
    end

    it 'doesnt fail when no fields are provided by the backend' do
      stub_request(:post, "#{datastore}/feedbacks")
      .to_return(status: 400, body: {}.to_json)
      SomeService.create(name: 'Steve')
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
lhs-2.2.2 spec/service/creation_failed_spec.rb
lhs-1.6.1 spec/service/creation_failed_spec.rb
lhs-2.2.1 spec/service/creation_failed_spec.rb
lhs-2.2.0 spec/service/creation_failed_spec.rb
lhs-1.6.0 spec/service/creation_failed_spec.rb
lhs-2.1.1 spec/service/creation_failed_spec.rb
lhs-2.1.0 spec/service/creation_failed_spec.rb
lhs-2.0.5 spec/service/creation_failed_spec.rb
lhs-2.0.4 spec/service/creation_failed_spec.rb
lhs-2.0.3 spec/service/creation_failed_spec.rb
lhs-2.0.2 spec/service/creation_failed_spec.rb
lhs-2.0.1 spec/service/creation_failed_spec.rb
lhs-2.0.0 spec/service/creation_failed_spec.rb
lhs-1.5.0 spec/service/creation_failed_spec.rb
lhs-1.4.0 spec/service/creation_failed_spec.rb