summaryrefslogtreecommitdiff
path: root/spec/requests/groups/crm/organizations_controller_spec.rb
blob: 37ffac717722e29a57d3f306f6e56905233bd9d6 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Groups::Crm::OrganizationsController do
  let_it_be(:user) { create(:user) }

  shared_examples 'response with 404 status' do
    it 'returns 404' do
      subject

      expect(response).to have_gitlab_http_status(:not_found)
    end
  end

  shared_examples 'ok response with index template' do
    it 'renders the index template' do
      subject

      expect(response).to have_gitlab_http_status(:ok)
      expect(response).to render_template(:index)
    end
  end

  shared_examples 'ok response with index template if authorized' do
    context 'private group' do
      let(:group) { create(:group, :private, :crm_enabled) }

      context 'with authorized user' do
        before do
          group.add_reporter(user)
          sign_in(user)
        end

        context 'when crm_enabled is true' do
          it_behaves_like 'ok response with index template'
        end

        context 'when crm_enabled is false' do
          let(:group) { create(:group, :private) }

          it_behaves_like 'response with 404 status'
        end

        context 'when feature flag is disabled' do
          before do
            stub_feature_flags(customer_relations: false)
          end

          it_behaves_like 'response with 404 status'
        end

        context 'when subgroup' do
          let(:group) { create(:group, :private, :crm_enabled, parent: create(:group)) }

          it_behaves_like 'response with 404 status'
        end
      end

      context 'with unauthorized user' do
        before do
          sign_in(user)
        end

        it_behaves_like 'response with 404 status'
      end

      context 'with anonymous user' do
        it 'blah' do
          subject

          expect(response).to have_gitlab_http_status(:found)
          expect(response).to redirect_to(new_user_session_path)
        end
      end
    end

    context 'public group' do
      let(:group) { create(:group, :public, :crm_enabled) }

      context 'with anonymous user' do
        it_behaves_like 'response with 404 status'
      end
    end
  end

  describe 'GET #index' do
    subject do
      get group_crm_organizations_path(group)
      response
    end

    it_behaves_like 'ok response with index template if authorized'
  end

  describe 'GET #new' do
    subject do
      get new_group_crm_organization_path(group)
    end

    it_behaves_like 'ok response with index template if authorized'
  end
end