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

secure_files_controller_spec.rb « ci « projects « controllers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 200997e31b98d1141e9d83814c890e8983c2cbeb (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::Ci::SecureFilesController do
  let_it_be(:project) { create(:project) }
  let_it_be(:user) { create(:user) }

  subject(:show_request) { get :show, params: { namespace_id: project.namespace, project_id: project } }

  describe 'GET #show' do
    context 'when the :ci_secure_files feature flag is enabled' do
      context 'with enough privileges' do
        before do
          stub_feature_flags(ci_secure_files: true)
          sign_in(user)
          project.add_developer(user)
          show_request
        end

        it { expect(response).to have_gitlab_http_status(:ok) }

        it 'renders show page' do
          expect(response).to render_template :show
        end
      end
    end

    context 'when the :ci_secure_files feature flag is disabled' do
      context 'with enough privileges' do
        before do
          stub_feature_flags(ci_secure_files: false)
          sign_in(user)
          project.add_developer(user)
          show_request
        end

        it 'responds with 404' do
          expect(response).to have_gitlab_http_status(:not_found)
        end
      end
    end

    context 'without enough privileges' do
      before do
        sign_in(user)
        project.add_reporter(user)
        show_request
      end

      it 'responds with 404' do
        expect(response).to have_gitlab_http_status(:not_found)
      end
    end

    context 'an unauthenticated user' do
      before do
        show_request
      end

      it 'redirects to sign in' do
        expect(response).to have_gitlab_http_status(:found)
        expect(response).to redirect_to('/users/sign_in')
      end
    end
  end
end