Files
openproject/modules/bim/spec/features/show_default_spec.rb
T
2023-05-31 19:22:29 +02:00

106 lines
3.5 KiB
Ruby

#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2023 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_relative '../spec_helper'
RSpec.describe 'show default model',
js: true, with_config: { edition: 'bim' } do
let(:project) { create(:project, enabled_module_names: %i[bim work_package_tracking]) }
let(:index_page) { Pages::IfcModels::Index.new(project) }
let(:show_default_page) { Pages::IfcModels::ShowDefault.new(project) }
let(:role) { create(:role, permissions: %i[view_ifc_models view_work_packages manage_ifc_models]) }
let(:user) do
create(:user,
member_in_project: project,
member_through_role: role)
end
let(:model) do
create(:ifc_model_minimal_converted,
is_default: model_is_default,
project:,
uploader: user)
end
let(:model_is_default) { true }
let(:model_tree) { Components::XeokitModelTree.new }
before do
login_as(user)
model
end
context 'when the work package module not loaded' do
let(:project) { create(:project, enabled_module_names: [:bim]) }
it 'shows an error loading the page' do
show_default_page.visit!
show_default_page.expect_toast(type: :error, message: 'Your view is erroneous and could not be processed')
end
end
context 'with everything ready' do
let(:old_work_package) { create(:work_package, project:) }
let(:new_work_package) { create(:work_package, project:) }
before do
old_work_package
new_work_package
show_default_page.visit!
show_default_page.finished_loading
end
it 'loads and shows the viewer and WPs correctly' do
show_default_page.model_viewer_visible true
show_default_page.model_viewer_shows_a_toolbar true
show_default_page.page_shows_a_toolbar true
model_tree.sidebar_shows_viewer_menu true
# Check the order of work packages: Latest first
expect(show_default_page.find_all('.op-wp-single-card--content-id').map(&:text)).to(
eql(["##{new_work_package.id}", "##{old_work_package.id}"])
)
end
end
context 'with the default model not being processed' do
before do
model.xkt_attachment.destroy
show_default_page.visit!
end
it 'renders a notification' do
show_default_page
.expect_toast(type: :info,
message: I18n.t(:'ifc_models.processing_notice.processing_default'))
end
end
end