2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe Admin::GroupsController do
|
2021-09-04 01:27:46 +05:30
|
|
|
let_it_be(:group) { create(:group) }
|
|
|
|
let_it_be(:project) { create(:project, namespace: group) }
|
|
|
|
let_it_be(:admin) { create(:admin) }
|
2016-09-13 17:45:13 +05:30
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'DELETE #destroy' do
|
|
|
|
it 'schedules a group destroy' do
|
|
|
|
Sidekiq::Testing.fake! do
|
2019-02-15 15:39:39 +05:30
|
|
|
expect { delete :destroy, params: { id: project.group.path } }.to change(GroupDestroyWorker.jobs, :size).by(1)
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to the admin group path' do
|
2019-02-15 15:39:39 +05:30
|
|
|
delete :destroy, params: { id: project.group.path }
|
2016-09-13 17:45:13 +05:30
|
|
|
|
|
|
|
expect(response).to redirect_to(admin_groups_path)
|
|
|
|
end
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
describe 'POST #create' do
|
|
|
|
it 'creates group' do
|
|
|
|
expect do
|
|
|
|
post :create, params: { group: { path: 'test', name: 'test' } }
|
|
|
|
end.to change { Group.count }.by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates namespace_settings for group' do
|
|
|
|
expect do
|
|
|
|
post :create, params: { group: { path: 'test', name: 'test' } }
|
|
|
|
end.to change { NamespaceSetting.count }.by(1)
|
|
|
|
end
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
it 'creates admin_note for group' do
|
|
|
|
expect do
|
|
|
|
post :create, params: { group: { path: 'test', name: 'test', admin_note_attributes: { note: 'test' } } }
|
|
|
|
end.to change { Namespace::AdminNote.count }.by(1)
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|