summaryrefslogtreecommitdiff
path: root/spec/finders/applications_finder_spec.rb
blob: b6c48d8cdaecdd70776ad66a29fe4df6d5ac3828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ApplicationsFinder do
  let(:application1) { create(:application, name: 'some_application', owner: nil, redirect_uri: 'http://some_application.url', scopes: '') }
  let(:application2) { create(:application, name: 'another_application', owner: nil, redirect_uri: 'http://other_application.url', scopes: '') }
  let(:user_application) { create(:application, name: 'user_application', owner: create(:user), redirect_uri: 'http://user_application.url', scopes: '') }
  let(:group_application) { create(:application, name: 'group_application', owner: create(:group), redirect_uri: 'http://group_application.url', scopes: '') }

  describe '#execute' do
    it 'returns an array of instance applications' do
      found = described_class.new.execute

      expect(found).to match_array([application1, application2])
    end

    context 'by_id' do
      context 'with existing id' do
        it 'returns the application' do
          params = { id: application1.id }
          found = described_class.new(params).execute

          expect(found).to match(application1)
        end
      end

      context 'with invalid id' do
        it 'returns nil for user application' do
          params = { id: user_application.id }
          found = described_class.new(params).execute

          expect(found).to be_nil
        end

        it 'returns nil for group application' do
          params = { id: group_application.id }
          found = described_class.new(params).execute

          expect(found).to be_nil
        end

        it 'returns nil for non-existing application' do
          params = { id: non_existing_record_id }
          found = described_class.new(params).execute

          expect(found).to be_nil
        end
      end
    end
  end
end