Files
Jan Sandbrink 0b87e7543f Freeze string literals in specs
Rolling out frozen string literals further by freezing all
string literals in core specs.
2025-05-05 09:29:55 +02:00

206 lines
5.5 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 Relations::UpdateService do
let(:work_package1_start_date) { nil }
let(:work_package1_due_date) { Date.current }
let(:work_package2_start_date) { nil }
let(:work_package2_due_date) { nil }
let(:follows_relation) { false }
let(:lag) { 3 }
let(:work_package1) do
build_stubbed(:work_package,
subject: "work_package1",
due_date: work_package1_due_date,
start_date: work_package1_start_date)
end
let(:work_package2) do
build_stubbed(:work_package,
subject: "work_package2",
due_date: work_package2_due_date,
start_date: work_package2_start_date)
end
let(:instance) do
described_class.new(user:, model: relation)
end
let(:relation) do
relation = build_stubbed(:relation)
allow(relation)
.to receive(:follows?)
.and_return(follows_relation)
relation
end
let(:attributes) do
{
to: work_package1,
from: work_package2,
lag:
}
end
let(:user) { build_stubbed(:user) }
let(:model_valid) { true }
let(:contract_valid) { true }
let(:contract) { instance_double(Relations::UpdateContract) }
let(:symbols_for_base) { [] }
subject do
instance.call(attributes:)
end
before do
allow(relation)
.to receive(:save)
.and_return(model_valid)
allow(Relations::UpdateContract)
.to receive(:new)
.with(relation, user, options: {})
.and_return(contract)
allow(contract)
.to receive(:validate)
.and_return(contract_valid)
end
context "when all valid and it is a follows relation" do
let(:set_schedule_service) { instance_double(WorkPackages::SetScheduleService) }
let(:set_schedule_work_package2_result) do
ServiceResult.success result: work_package2, errors: work_package2.errors
end
let(:set_schedule_result) do
sr = ServiceResult.success result: work_package2, errors: work_package2.errors
sr.dependent_results << set_schedule_work_package2_result
sr
end
let(:follows_relation) { true }
before do
allow(WorkPackages::SetScheduleService)
.to receive(:new)
.with(user:, work_package: work_package2, switching_to_automatic_mode: [])
.and_return(set_schedule_service)
allow(set_schedule_service)
.to receive(:call)
.and_return(set_schedule_result)
allow(work_package2)
.to receive_messages(changed?: true, save: true)
allow(set_schedule_result)
.to receive(:success=)
end
it "is successful" do
expect(subject)
.to be_success
end
it "returns the relation" do
expect(subject.result)
.to eql relation
end
it "has a dependent result for the from-work package" do
expect(subject.dependent_results)
.to contain_exactly(set_schedule_work_package2_result)
end
end
context "when all is valid and it is not a follows relation" do
it "is successful" do
expect(subject)
.to be_success
end
it "returns the relation" do
expect(subject.result)
.to eql relation
end
end
context "when the contract is invalid" do
let(:contract_valid) { false }
let(:contract_errors) { instance_double(ActiveModel::Errors) }
before do
allow(contract)
.to receive(:errors)
.and_return(contract_errors)
allow(contract_errors)
.to receive(:symbols_for)
.with(:base)
.and_return(symbols_for_base)
end
it "is unsuccessful" do
expect(subject)
.to be_failure
end
it "returns the contract's errors" do
expect(subject.errors)
.to eql contract_errors
end
end
context "when the model is invalid" do
let(:model_valid) { false }
let(:model_errors) { instance_double(ActiveModel::Errors) }
before do
allow(relation)
.to receive(:errors)
.and_return(model_errors)
allow(model_errors)
.to receive(:symbols_for)
.with(:base)
.and_return(symbols_for_base)
end
it "is unsuccessful" do
expect(subject)
.to be_failure
end
it "returns the model's errors" do
expect(subject.errors)
.to eql model_errors
end
end
end