summaryrefslogtreecommitdiff
path: root/spec/controllers/groups_controller_spec.rb
diff options
context:
space:
mode:
authorAndreas Brandl <abrandl@gitlab.com>2019-04-05 13:02:56 +0000
committerAndreas Brandl <abrandl@gitlab.com>2019-04-05 13:02:56 +0000
commit46b1b9c1d61c269588bd3cd4203420608ddd7f0b (patch)
treea877f5366d3367e1264e96f3f5e8a4b23bdbd62a /spec/controllers/groups_controller_spec.rb
parent7a48a06cf3b454021aa466464686fee8c82d6862 (diff)
downloadgitlab-ce-46b1b9c1d61c269588bd3cd4203420608ddd7f0b.tar.gz
Revert "Merge branch 'if-57131-external_auth_to_ce' into 'master'"
This reverts merge request !26823
Diffstat (limited to 'spec/controllers/groups_controller_spec.rb')
-rw-r--r--spec/controllers/groups_controller_spec.rb96
1 files changed, 0 insertions, 96 deletions
diff --git a/spec/controllers/groups_controller_spec.rb b/spec/controllers/groups_controller_spec.rb
index 0adcba4f0b8..2b803e7151f 100644
--- a/spec/controllers/groups_controller_spec.rb
+++ b/spec/controllers/groups_controller_spec.rb
@@ -1,8 +1,6 @@
require 'spec_helper'
describe GroupsController do
- include ExternalAuthorizationServiceHelpers
-
let(:user) { create(:user) }
let(:admin) { create(:admin) }
let(:group) { create(:group, :public) }
@@ -660,98 +658,4 @@ describe GroupsController do
end
end
end
-
- describe 'external authorization' do
- before do
- group.add_owner(user)
- sign_in(user)
- end
-
- context 'with external authorization service enabled' do
- before do
- enable_external_authorization_service_check
- end
-
- describe 'GET #show' do
- it 'is successful' do
- get :show, params: { id: group.to_param }
-
- expect(response).to have_gitlab_http_status(200)
- end
-
- it 'does not allow other formats' do
- get :show, params: { id: group.to_param }, format: :atom
-
- expect(response).to have_gitlab_http_status(403)
- end
- end
-
- describe 'GET #edit' do
- it 'is successful' do
- get :edit, params: { id: group.to_param }
-
- expect(response).to have_gitlab_http_status(200)
- end
- end
-
- describe 'GET #new' do
- it 'is successful' do
- get :new
-
- expect(response).to have_gitlab_http_status(200)
- end
- end
-
- describe 'GET #index' do
- it 'is successful' do
- get :index
-
- # Redirects to the dashboard
- expect(response).to have_gitlab_http_status(302)
- end
- end
-
- describe 'POST #create' do
- it 'creates a group' do
- expect do
- post :create, params: { group: { name: 'a name', path: 'a-name' } }
- end.to change { Group.count }.by(1)
- end
- end
-
- describe 'PUT #update' do
- it 'updates a group' do
- expect do
- put :update, params: { id: group.to_param, group: { name: 'world' } }
- end.to change { group.reload.name }
- end
- end
-
- describe 'DELETE #destroy' do
- it 'deletes the group' do
- delete :destroy, params: { id: group.to_param }
-
- expect(response).to have_gitlab_http_status(302)
- end
- end
- end
-
- describe 'GET #activity' do
- subject { get :activity, params: { id: group.to_param } }
-
- it_behaves_like 'disabled when using an external authorization service'
- end
-
- describe 'GET #issues' do
- subject { get :issues, params: { id: group.to_param } }
-
- it_behaves_like 'disabled when using an external authorization service'
- end
-
- describe 'GET #merge_requests' do
- subject { get :merge_requests, params: { id: group.to_param } }
-
- it_behaves_like 'disabled when using an external authorization service'
- end
- end
end