Sha256: 43dd92cfb04ff34602a88fa2195aa159bb0ec7ce1116570aa0a10db92135b802

Contents?: true

Size: 1.6 KB

Versions: 11

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

require 'spec_helpers/client'

RSpec.describe FinApps::REST::AlertOccurrences do
  include SpecHelpers::Client
  subject { FinApps::REST::AlertOccurrences.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') { expect(results).to respond_to(:records) }
      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) { { page: 2, sort: '-created_date', requested: 25, portfolio_id: 'valid_id' } }

      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') { expect(results).to respond_to(:records) }
      it('returns no error messages') { expect(errors).to be_empty }
      it 'builds query and sends proper request' do
        list
        url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/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

11 entries across 11 versions & 1 rubygems

Version Path
finapps-5.0.2 spec/rest/alert_occurrences_spec.rb
finapps-5.0.1 spec/rest/alert_occurrences_spec.rb
finapps-5.0.0 spec/rest/alert_occurrences_spec.rb
finapps-4.0.16 spec/rest/alert_occurrences_spec.rb
finapps-4.0.15 spec/rest/alert_occurrences_spec.rb
finapps-4.0.14 spec/rest/alert_occurrences_spec.rb
finapps-4.0.12 spec/rest/alert_occurrences_spec.rb
finapps-4.0.11 spec/rest/alert_occurrences_spec.rb
finapps-4.0.10 spec/rest/alert_occurrences_spec.rb
finapps-4.0.9 spec/rest/alert_occurrences_spec.rb
finapps-4.0.8 spec/rest/alert_occurrences_spec.rb