summaryrefslogtreecommitdiff
path: root/spec/controllers/projects/tracings_controller_spec.rb
blob: 1f8a68cc861eb287c70c0dcb35498d6794bea0c8 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::TracingsController do
  let_it_be(:user) { create(:user) }

  describe 'GET show' do
    shared_examples 'user with read access' do |visibility_level|
      let(:project) { create(:project, visibility_level) }

      %w[developer maintainer].each do |role|
        context "with a #{visibility_level} project and #{role} role" do
          before do
            project.add_role(user, role)
          end

          it 'renders OK' do
            get :show, params: { namespace_id: project.namespace, project_id: project }

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

    shared_examples 'user without read access' do |visibility_level|
      let(:project) { create(:project, visibility_level) }

      %w[guest reporter].each do |role|
        context "with a #{visibility_level} project and #{role} role" do
          before do
            project.add_role(user, role)
          end

          it 'returns 404' do
            get :show, params: { namespace_id: project.namespace, project_id: project }

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

    before do
      sign_in(user)
    end

    context 'with maintainer role' do
      it_behaves_like 'user with read access', :public
      it_behaves_like 'user with read access', :internal
      it_behaves_like 'user with read access', :private
    end

    context 'without maintainer role' do
      it_behaves_like 'user without read access', :public
      it_behaves_like 'user without read access', :internal
      it_behaves_like 'user without read access', :private
    end
  end
end