mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
82413e5b26
The fact that it used to be called with a factory name speaks for a history of using FactoryBot originally and then being rewritten to use a manually written SQL insert statement. This has now been changed so when a symbol is passed, it's taken as a factory name and a factory is used. Only when a class name is passed, the manual SQL path is chosen. This is done, so that I can rely on the default-value-filling of FactoryBot to create my test record.
95 lines
2.8 KiB
Ruby
95 lines
2.8 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.
|
|
#++
|
|
|
|
RSpec.shared_examples_for "rewritten record" do |factory_or_class, attribute, format = Integer|
|
|
let!(:model) do
|
|
all_attributes = other_attributes.merge(attribute => principal_id)
|
|
if factory_or_class.is_a?(Symbol)
|
|
create(factory_or_class, **all_attributes)
|
|
else
|
|
klass = factory_or_class
|
|
all_attributes[:created_at] ||= "NOW()" if klass.column_names.include?("created_at")
|
|
all_attributes[:updated_at] ||= "NOW()" if klass.column_names.include?("updated_at")
|
|
|
|
inserted = ActiveRecord::Base.connection.select_one <<~SQL.squish
|
|
INSERT INTO #{klass.table_name}
|
|
(#{all_attributes.keys.join(', ')})
|
|
VALUES
|
|
(#{all_attributes.values.join(', ')})
|
|
RETURNING id
|
|
SQL
|
|
|
|
klass.find(inserted["id"])
|
|
end
|
|
end
|
|
|
|
let(:other_attributes) do
|
|
defined?(attributes) ? attributes : {}
|
|
end
|
|
|
|
def expected(user, format)
|
|
if format == String
|
|
user.id.to_s
|
|
else
|
|
user.id
|
|
end
|
|
end
|
|
|
|
context "for #{factory_or_class}" do
|
|
context "when #{attribute} is set to the replaced user" do
|
|
let(:principal_id) { principal.id }
|
|
|
|
before do
|
|
service_call
|
|
model.reload
|
|
end
|
|
|
|
it "replaces its value" do
|
|
expect(model.send(attribute))
|
|
.to eql expected(to_principal, format)
|
|
end
|
|
end
|
|
|
|
context "when #{attribute} is set to a different user" do
|
|
let(:principal_id) { other_user.id }
|
|
|
|
before do
|
|
service_call
|
|
model.reload
|
|
end
|
|
|
|
it "keeps its value" do
|
|
expect(model.send(attribute))
|
|
.to eql expected(other_user, format)
|
|
end
|
|
end
|
|
end
|
|
end
|