summaryrefslogtreecommitdiff
path: root/spec/controllers/ci/projects_controller_spec.rb
blob: db0748f323f276d27920a41e8b902a70bfb56e3d (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
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
    shared_examples 'badge provider' do
      it 'shows badge' do
        expect(response.status).to eq 200
        expect(response.headers)
          .to include('Content-Type' => 'image/svg+xml')
      end
    end

    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_behaves_like 'badge provider'
      end

      context 'project is private' do
        let(:visibility) { :private }
        it_behaves_like 'badge provider'
      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_behaves_like 'badge provider'
      end
    end
  end
end