diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-03-01 20:32:30 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-03-01 20:32:30 +0100 |
commit | 8b02d962abd47e9e9c3bbd51bdd285bbb476b8d1 (patch) | |
tree | 1fc7db08bd80d5e9112620849b9bf518b4736402 /spec | |
parent | 6be22dbbe3b1f7bc8c396a98a83f5c5b51a4bbca (diff) | |
download | gitlab-ce-8b02d962abd47e9e9c3bbd51bdd285bbb476b8d1.tar.gz |
Do not require authentication for CI status badgefix/deprecated-ci-badge-permissions
This changes only deprecated CI badge that we keep for backwards
compatibility. See !3030#note_4041498.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/controllers/ci/projects_controller_spec.rb | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/spec/controllers/ci/projects_controller_spec.rb b/spec/controllers/ci/projects_controller_spec.rb index 569ed7c0f6b..db0748f323f 100644 --- a/spec/controllers/ci/projects_controller_spec.rb +++ b/spec/controllers/ci/projects_controller_spec.rb @@ -9,6 +9,14 @@ describe Ci::ProjectsController do # 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) } @@ -22,18 +30,12 @@ describe Ci::ProjectsController do context 'project is public' do let(:visibility) { :public } - - it 'is available without authentication' do - expect(response.status).to eq 200 - end + it_behaves_like 'badge provider' end context 'project is private' do let(:visibility) { :private } - - it 'requires authentication' do - expect(response.status).to eq 302 - end + it_behaves_like 'badge provider' end end @@ -44,10 +46,7 @@ describe Ci::ProjectsController do context 'private is internal' do let(:visibility) { :internal } - - it 'shows badge to signed in user' do - expect(response.status).to eq 200 - end + it_behaves_like 'badge provider' end end end |