summaryrefslogtreecommitdiff
path: root/spec/graphql/resolvers/crm/organizations_resolver_spec.rb
blob: 323f134ffc31b19605e4d2d544774c0e42f88cd6 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Resolvers::Crm::OrganizationsResolver do
  include GraphqlHelpers

  let_it_be(:user) { create(:user) }
  let_it_be(:group) { create(:group, :crm_enabled) }

  let_it_be(:organization_a) do
    create(
      :organization,
      group: group,
      name: "ABC",
      state: "inactive"
    )
  end

  let_it_be(:organization_b) do
    create(
      :organization,
      group: group,
      name: "DEF",
      state: "active"
    )
  end

  describe '#resolve' do
    context 'with unauthorized user' do
      it 'does not rise an error and returns no organizations' do
        expect { resolve_organizations(group) }.not_to raise_error
        expect(resolve_organizations(group)).to be_empty
      end
    end

    context 'with authorized user' do
      it 'does not rise an error and returns all organizations in the correct order' do
        group.add_reporter(user)

        expect { resolve_organizations(group) }.not_to raise_error
        expect(resolve_organizations(group)).to eq([organization_a, organization_b])
      end
    end

    context 'without parent' do
      it 'returns no organizations' do
        expect(resolve_organizations(nil)).to be_empty
      end
    end

    context 'with a group parent' do
      before do
        group.add_developer(user)
      end

      context 'when no filter is provided' do
        it 'returns all the organizations in the correct order' do
          expect(resolve_organizations(group)).to eq([organization_a, organization_b])
        end
      end

      context 'when search term is provided' do
        it 'returns the correct organizations' do
          expect(resolve_organizations(group, { search: "def" })).to contain_exactly(organization_b)
        end
      end

      context 'when state is provided' do
        it 'returns the correct organizations' do
          expect(resolve_organizations(group, { state: :inactive })).to contain_exactly(organization_a)
        end
      end

      context 'when ids are provided' do
        it 'returns the correct organizations' do
          expect(resolve_organizations(group, {
            ids: [organization_b.to_global_id]
          })).to contain_exactly(organization_b)
        end
      end
    end
  end

  def resolve_organizations(parent, args = {}, context = { current_user: user })
    resolve(described_class, obj: parent, args: args, ctx: context)
  end
end