Files
gitlabhq/spec/controllers/ci/projects_controller_spec.rb
T

54 lines
1.2 KiB
Ruby

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'
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
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