Files

164 lines
4.7 KiB
Ruby

# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 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 COPYRIGHT and LICENSE files for more details.
#++
require "spec_helper"
RSpec.describe WorkPackage, "spent_time" do
let(:project) do
work_package.project
end
let(:other_project) do
child_work_package_in_other_project.project
end
let(:work_package) do
create(:work_package)
end
let(:child_work_package) do
create(:work_package,
project:,
parent: work_package)
end
let(:child_work_package_in_other_project) do
create(:work_package,
parent: work_package)
end
let!(:time_entry) do
create(:time_entry,
entity: work_package,
project:)
end
let(:time_entry2) do
create(:time_entry,
entity: work_package,
project:)
end
let(:child_time_entry) do
create(:time_entry,
entity: child_work_package,
project:)
end
let(:child_time_entry_in_other_project) do
create(:time_entry,
entity: child_work_package_in_other_project,
project: other_project)
end
let(:role) do
build(:project_role,
permissions: %i[view_time_entries view_work_packages])
end
let(:role_without_view_time_entries) do
build(:project_role,
permissions: [:view_work_packages])
end
let(:role_without_view_work_packages) do
build(:project_role,
permissions: [:view_time_entries])
end
let(:user) do
create(:user, member_with_roles: { project => role })
end
before do
allow(Setting).to receive(:cross_project_work_package_relations?).and_return(true)
login_as user
end
shared_examples_for "spent hours" do
it "has the spent time of the time entry" do
expect(subject).to eql time_entry.hours
end
it "sums up the spent time of the time entries" do
sum = time_entry.hours + time_entry2.hours
expect(subject).to eql sum
end
it "inherits the spent time of the descendants" do
sum = time_entry.hours + child_time_entry.hours
expect(subject).to eql sum
end
context "permissions" do
it "counts the child if that child is in a project in which the user " \
"has the necessary permissions" do
create(:member,
user:,
project: other_project,
roles: [role])
sum = time_entry.hours + child_time_entry_in_other_project.hours
expect(subject).to eql sum
end
it "does not count the child if that child is in a project in which the user " \
"lacks the view_time_entries permission" do
create(:member,
user:,
project: other_project,
roles: [role_without_view_time_entries])
child_time_entry_in_other_project.save!
sum = time_entry.hours
expect(subject).to eql sum
end
it "does not count the child if that child is in a project in which the user " \
"lacks the view_work_packages permission" do
create(:member,
user:,
project: other_project,
roles: [role_without_view_work_packages])
child_time_entry_in_other_project.save!
sum = time_entry.hours
expect(subject).to eql sum
end
end
end
context "for a work_package loaded individually" do
subject { work_package.spent_hours }
it_behaves_like "spent hours"
end
context "for a work package that had spent time eager loaded" do
subject { WorkPackage.include_spent_time(user).where(id: work_package.id).first.spent_hours }
it_behaves_like "spent hours"
end
end