summaryrefslogtreecommitdiff
path: root/spec/controllers/ci/projects_controller_spec.rb
blob: 569ed7c0f6b7190069e30afebcf3b5828167e60a (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
require 'spec_helper'

describe Ci::ProjectsController do
  let(:visibility) { :public }
  let!(:project) { create(:project, visibility, ci_id: 1) }
  let(:ci_id) { project.ci_id }

  ##
  # Specs for *deprecated* CI badge
  #
  describe '#badge' do
    context 'user not signed in' do
      before { get(:badge, id: ci_id) }

      context 'project has no ci_id reference' do
        let(:ci_id) { 123 }

        it 'returns 404' do
          expect(response.status).to eq 404
        end
      end

      context 'project is public' do
        let(:visibility) { :public }

        it 'is available without authentication' do
          expect(response.status).to eq 200
        end
      end

      context 'project is private' do
        let(:visibility) { :private }

        it 'requires authentication' do
          expect(response.status).to eq 302
        end
      end
    end

    context 'user signed in' do
      let(:user) { create(:user) }
      before { sign_in(user) }
      before { get(:badge, id: ci_id) }

      context 'private is internal' do
        let(:visibility) { :internal }

        it 'shows badge to signed in user' do
          expect(response.status).to eq 200
        end
      end
    end
  end
end