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

setup_controller_spec.rb « artifact_registry « gcp « projects « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20d7969a05fc4b244477100e5debba9caa95fc2b (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::Gcp::ArtifactRegistry::SetupController, feature_category: :container_registry do
  let_it_be(:project) { create(:project, :private) }

  let(:user) { project.owner }

  describe '#new' do
    subject(:get_setup_page) { get(new_project_gcp_artifact_registry_setup_path(project)) }

    shared_examples 'returning the error message' do |message|
      it 'displays an error message' do
        sign_in(user)

        get_setup_page

        expect(response).to have_gitlab_http_status(:success)
        expect(response.body).to include(message)
      end
    end

    context 'when on saas', :saas do
      it 'returns the setup page' do
        sign_in(user)

        get_setup_page

        expect(response).to have_gitlab_http_status(:success)
        expect(response.body).to include('Google Project ID')
        expect(response.body).to include('Google Project Location')
        expect(response.body).to include('Artifact Registry Repository Name')
        expect(response.body).to include('Worflow Identity Federation url')
        expect(response.body).to include('Setup')
      end

      context 'with the feature flag disabled' do
        before do
          stub_feature_flags(gcp_technical_demo: false)
        end

        it_behaves_like 'returning the error message', 'Feature flag disabled'
      end

      context 'with non private project' do
        before do
          allow_next_found_instance_of(Project) do |project|
            allow(project).to receive(:private?).and_return(false)
          end
        end

        it_behaves_like 'returning the error message', 'Can only run on private projects'
      end

      context 'with unauthorized user' do
        let_it_be(:user) { create(:user) }

        it 'returns success' do
          sign_in(user)

          get_setup_page

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

    context 'when not on saas' do
      it_behaves_like 'returning the error message', "Can't run here"
    end
  end
end