Sha256: e29119ba466336b5e93a7c3865b161595ab1fb1d0dd4767063c560036c882e1f

Contents?: true

Size: 1.66 KB

Versions: 18

Compression:

Stored size: 1.66 KB

Contents

# frozen_string_literal: true

require 'spec_helpers/client'

RSpec.describe FinApps::REST::AlertOccurrences do
  include SpecHelpers::Client
  subject { described_class.new(client) }

  describe '#list' do
    let(:list) { subject.list(params) }
    let(:results) { list[RESULTS] }
    let(:errors) { list[ERROR_MESSAGES] }

    context 'when missing params' do
      let(:params) { nil }

      it { expect { list }.not_to raise_error }
      it('returns an array') { expect(list).to be_a(Array) }

      it('performs a get and returns the response') do
        expect(results).to have_key(:records)
      end

      it('returns no error messages') { expect(errors).to be_empty }
    end

    context 'when invalid params are provided' do
      let(:params) { %w[this is an array] }

      it { expect { list }.to raise_error(FinAppsCore::InvalidArgumentsError) }
    end

    context 'when including valid params' do
      let(:params) do
        {
          page: 2,
          sort: '-created_date',
          requested: 25,
          portfolio_id: 'valid_id'
        }
      end

      it { expect { list }.not_to raise_error }
      it('returns an array') { expect(list).to be_a(Array) }

      it('performs a get and returns the response') do
        expect(results).to have_key(:records)
      end

      it('returns no error messages') { expect(errors).to be_empty }

      it 'builds query and sends proper request' do
        list
        url =
          "#{versioned_api_path}/portfolio/alerts/occurrences?" \
            'filter=%7B%22portfolio_id%22:%22valid_id%22%7D&page=2&requested=25&sort=-created_date'
        expect(WebMock).to have_requested(:get, url)
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
finapps-6.0.0 spec/rest/alert_occurrences_spec.rb
finapps-5.4.1 spec/rest/alert_occurrences_spec.rb
finapps-5.4.0 spec/rest/alert_occurrences_spec.rb
finapps-5.3.0 spec/rest/alert_occurrences_spec.rb
finapps-5.2.1 spec/rest/alert_occurrences_spec.rb
finapps-5.2.0 spec/rest/alert_occurrences_spec.rb
finapps-5.1.0 spec/rest/alert_occurrences_spec.rb
finapps-5.0.47 spec/rest/alert_occurrences_spec.rb
finapps-5.0.46 spec/rest/alert_occurrences_spec.rb
finapps-5.0.45 spec/rest/alert_occurrences_spec.rb
finapps-5.0.44 spec/rest/alert_occurrences_spec.rb
finapps-5.0.43 spec/rest/alert_occurrences_spec.rb
finapps-5.0.41 spec/rest/alert_occurrences_spec.rb
finapps-5.0.38 spec/rest/alert_occurrences_spec.rb
finapps-5.0.36 spec/rest/alert_occurrences_spec.rb
finapps-5.0.35 spec/rest/alert_occurrences_spec.rb
finapps-5.0.34 spec/rest/alert_occurrences_spec.rb
finapps-5.0.33 spec/rest/alert_occurrences_spec.rb