kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.2 KiB
111 lines
3.2 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2021 the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
require_relative '../support/shared/become_member'
|
|
|
|
describe Group, type: :model do
|
|
include BecomeMember
|
|
|
|
let(:user) { FactoryBot.build(:user) }
|
|
let(:status) { FactoryBot.create(:status) }
|
|
let(:role) { FactoryBot.create :role, permissions: [:view_work_packages] }
|
|
|
|
let(:projects) do
|
|
projects = FactoryBot.create_list :project_with_types, 20
|
|
|
|
projects.each do |project|
|
|
add_user_to_project! user: group, project: project, role: role
|
|
end
|
|
|
|
projects
|
|
end
|
|
|
|
let!(:work_packages) do
|
|
projects.flat_map do |project|
|
|
work_packages = FactoryBot.create_list(
|
|
:work_package,
|
|
1,
|
|
type: project.types.first,
|
|
author: user,
|
|
project: project,
|
|
status: status
|
|
)
|
|
|
|
work_packages.first.tap do |wp|
|
|
wp.assigned_to = group
|
|
wp.save!
|
|
end
|
|
end
|
|
end
|
|
|
|
let(:users) { FactoryBot.create_list :user, 100 }
|
|
let(:group) { FactoryBot.build(:group, members: users) }
|
|
|
|
describe '#destroy' do
|
|
describe 'work packages assigned to the group' do
|
|
let(:deleted_user) { DeletedUser.first }
|
|
|
|
before do
|
|
allow(::OpenProject::Notifications)
|
|
.to receive(:send)
|
|
|
|
puts "Destroying group ..."
|
|
start = Time.now.to_i
|
|
|
|
Groups::DeleteService
|
|
.new(user: nil, contract_class: EmptyContract, model: group)
|
|
.call
|
|
perform_enqueued_jobs
|
|
|
|
@seconds = Time.now.to_i - start
|
|
|
|
puts "Destroyed group in #{@seconds} seconds"
|
|
|
|
expect(@seconds < 10).to eq true
|
|
end
|
|
|
|
it 'should reassign the work package to nobody and clean up the journals' do
|
|
expect(::OpenProject::Notifications)
|
|
.to have_received(:send)
|
|
.with(OpenProject::Events::MEMBER_DESTROYED, any_args)
|
|
.exactly(projects.size).times
|
|
|
|
work_packages.each do |wp|
|
|
wp.reload
|
|
|
|
expect(wp.assigned_to).to eq(deleted_user)
|
|
|
|
wp.journals.each do |journal|
|
|
journal.data.assigned_to_id == deleted_user.id
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|