Sha256: 3f094400c926ae081263974342e1fb9a26a0de419ddc0cfc39108480c065e559

Contents?: true

Size: 1.78 KB

Versions: 94

Compression:

Stored size: 1.78 KB

Contents

require 'rails_helper'

describe LHS::Record do
  context 'creation failed' do
    let(:datastore) { 'http://local.ch/v2' }

    before(:each) do
      LHC.config.placeholder(:datastore, datastore)
      class Record < LHS::Record
        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 = Record.create(name: 'Steve')
      expect(record).to be_kind_of Record
      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)
      Record.create(name: 'Steve')
    end
  end
end

Version data entries

94 entries across 94 versions & 1 rubygems

Version Path
lhs-11.3.2 spec/record/creation_failed_spec.rb
lhs-11.3.1 spec/record/creation_failed_spec.rb
lhs-11.3.0 spec/record/creation_failed_spec.rb
lhs-11.2.2 spec/record/creation_failed_spec.rb
lhs-11.2.1 spec/record/creation_failed_spec.rb
lhs-11.2.0 spec/record/creation_failed_spec.rb
lhs-11.1.0 spec/record/creation_failed_spec.rb
lhs-11.0.3 spec/record/creation_failed_spec.rb
lhs-11.0.2 spec/record/creation_failed_spec.rb
lhs-11.0.1 spec/record/creation_failed_spec.rb
lhs-11.0.0 spec/record/creation_failed_spec.rb
lhs-10.1.1 spec/record/creation_failed_spec.rb
lhs-10.1.0 spec/record/creation_failed_spec.rb
lhs-10.0.0 spec/record/creation_failed_spec.rb
lhs-9.1.1 spec/record/creation_failed_spec.rb
lhs-9.1.0 spec/record/creation_failed_spec.rb
lhs-9.0.4 spec/record/creation_failed_spec.rb
lhs-9.0.3 spec/record/creation_failed_spec.rb
lhs-9.0.2 spec/record/creation_failed_spec.rb
lhs-9.0.1 spec/record/creation_failed_spec.rb