Sha256: e1cb885dedd95b64dc7199e4f7177f75b956708e416769d329d5104576b7f110

Contents?: true

Size: 1.41 KB

Versions: 19

Compression:

Stored size: 1.41 KB

Contents

require 'spec_helper'

RSpec.describe RDStation::ErrorHandler::InvalidEventType do
  describe '#raise_error' do
    subject(:invalid_event_type_error) { described_class.new(errors) }

    context 'when there is a invalid event type error' do
      let(:errors) do
        [
          {
            'error_message' => 'Error Message',
            'error_type' => 'INVALID_OPTION',
            'path' => '$.event_type'
          }
        ]
      end

      it 'raises an InvalidEventType error' do
        expect do
          invalid_event_type_error.raise_error
        end.to raise_error(RDStation::Error::InvalidEventType, 'Error Message')
      end
    end

    context 'when none of the errors are invalid event type errors' do
      let(:errors) do
        [
          {
            'error_message' => 'Error Message',
            'error_type' => 'RANDOM_ERROR_TYPE'
          },
          {
            'error_message' => 'Another Error Message',
            'error_type' => 'ANOTHER_RANDOM_ERROR_TYPE'
          }
        ]
      end

      it 'does not raise an InvalidEventType error' do
        result = invalid_event_type_error.raise_error
        expect(result).to be_nil
      end
    end

    context 'when there are no errors' do
      let(:errors) { [] }

      it 'does not raise an InvalidEventType error' do
        result = invalid_event_type_error.raise_error
        expect(result).to be_nil
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
rdstation-ruby-client-2.9.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.8.2 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.8.1 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.8.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.7.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.6.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.5.3 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.5.2 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.5.1 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.5.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.4.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.3.1 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.3.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.2.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.1.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-2.0.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-1.2.1 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-1.2.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb
rdstation-ruby-client-1.1.0 spec/lib/rdstation/error_handler/invalid_event_type_spec.rb