|
| 1 | +#-- copyright |
| 2 | +# OpenProject is an open source project management software. |
| 3 | +# Copyright (C) 2012-2024 the OpenProject GmbH |
| 4 | +# |
| 5 | +# This program is free software; you can redistribute it and/or |
| 6 | +# modify it under the terms of the GNU General Public License version 3. |
| 7 | +# |
| 8 | +# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: |
| 9 | +# Copyright (C) 2006-2013 Jean-Philippe Lang |
| 10 | +# Copyright (C) 2010-2013 the ChiliProject Team |
| 11 | +# |
| 12 | +# This program is free software; you can redistribute it and/or |
| 13 | +# modify it under the terms of the GNU General Public License |
| 14 | +# as published by the Free Software Foundation; either version 2 |
| 15 | +# of the License, or (at your option) any later version. |
| 16 | +# |
| 17 | +# This program is distributed in the hope that it will be useful, |
| 18 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | +# GNU General Public License for more details. |
| 21 | +# |
| 22 | +# You should have received a copy of the GNU General Public License |
| 23 | +# along with this program; if not, write to the Free Software |
| 24 | +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 25 | +# |
| 26 | +# See COPYRIGHT and LICENSE files for more details. |
| 27 | +#++ |
| 28 | + |
| 29 | +require "spec_helper" |
| 30 | + |
| 31 | +RSpec.describe API::V3::Projects::ProjectEagerLoadingWrapper do |
| 32 | + shared_let(:projects) { create_list(:project, 3) } |
| 33 | + |
| 34 | + describe ".wrap" do |
| 35 | + subject(:loaded_projects) { described_class.wrap(projects) } |
| 36 | + |
| 37 | + it "returns wrapped projects with relations eager loaded" do |
| 38 | + expect(loaded_projects.size).to eq(projects.size) |
| 39 | + association_names = %i[@available_custom_fields @ancestors_from_root] |
| 40 | + loaded_projects.each do |loaded_project| |
| 41 | + association_names.each do |association| |
| 42 | + expect(loaded_project.__getobj__.instance_variables).to include(association) |
| 43 | + end |
| 44 | + end |
| 45 | + end |
| 46 | + |
| 47 | + context "with available custom fields" do |
| 48 | + let!(:text_project_custom_field) do |
| 49 | + create :text_project_custom_field, projects: [projects.second, projects.third] |
| 50 | + end |
| 51 | + |
| 52 | + let!(:string_project_custom_field) do |
| 53 | + create :string_project_custom_field, projects: [projects.third] |
| 54 | + end |
| 55 | + |
| 56 | + it "returns available custom fields for each project separately" do |
| 57 | + expect(loaded_projects.first.available_custom_fields).to eq([]) |
| 58 | + expect(loaded_projects.second.available_custom_fields).to eq([text_project_custom_field]) |
| 59 | + expect(loaded_projects.third.available_custom_fields) |
| 60 | + .to eq([text_project_custom_field, string_project_custom_field]) |
| 61 | + end |
| 62 | + end |
| 63 | + end |
| 64 | +end |
0 commit comments