Welcome to mirror list, hosted at ThFree Co, Russian Federation.

namespace_callouts_spec.rb « users « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a4e269eefbcf0836ddb43553850d2ff08dd2d7e (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Namespace callouts' do
  let_it_be(:user) { create(:user) }

  before do
    sign_in(user)
  end

  describe 'POST /-/users/namespace_callouts' do
    let(:params) { { feature_name: feature_name, namespace_id: user.namespace.id } }

    subject { post namespace_callouts_path, params: params, headers: { 'ACCEPT' => 'application/json' } }

    context 'with valid feature name and group' do
      let(:feature_name) { Users::NamespaceCallout.feature_names.each_key.first }

      context 'when callout entry does not exist' do
        it 'creates a callout entry with dismissed state' do
          expect { subject }.to change { Users::NamespaceCallout.count }.by(1)
        end

        it 'returns success' do
          subject

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

      context 'when callout entry already exists' do
        let!(:callout) do
          create(:namespace_callout,
                 feature_name: Users::GroupCallout.feature_names.each_key.first,
                 user: user,
                 namespace: user.namespace)
        end

        it 'returns success', :aggregate_failures do
          expect { subject }.not_to change { Users::NamespaceCallout.count }
          expect(response).to have_gitlab_http_status(:ok)
        end
      end
    end

    context 'with invalid feature name' do
      let(:feature_name) { 'bogus_feature_name' }

      it 'returns bad request' do
        subject

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