#-- copyright # OpenProject is an open source project management software. # Copyright (C) 2012-2021 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' describe ::OpenProject::Bim::BcfXml::IssueWriter do let(:project) { FactoryBot.create(:project) } let(:markup) do <<-MARKUP
IfcPile_01.ifc 2014-10-27T16:27:27Z ../IfcPile_01.ifc
https://bim--it.net Maximum Content High 0 Structural IT Development 2015-06-21T12:00:00Z mike@example.com 2015-06-21T14:22:47Z mike@example.com andy@example.com This is a topic with all information present. JsonElement.json http://json-schema.org https://github.com/BuildingSMART/BCF-XML GitHub BCF Specification ../markup.xsd Markup.xsd Schema Viewpoint_8dc86298-9737-40b4-a448-98a9e953293a.bcfv Snapshot_8dc86298-9737-40b4-a448-98a9e953293a.png Viewpoint_21dd4807-e9af-439e-a980-04d913a6b1ce.bcfv Snapshot_21dd4807-e9af-439e-a980-04d913a6b1ce.png Viewpoint_81daa431-bf01-4a49-80a2-1ab07c177717.bcfv Snapshot_81daa431-bf01-4a49-80a2-1ab07c177717.png
MARKUP end let(:bcf_issue) do FactoryBot.create(:bcf_issue_with_comment, work_package: work_package, markup: markup) end let(:priority) { FactoryBot.create :priority_low } let(:current_user) { FactoryBot.create(:user) } let(:due_date) { DateTime.now } let(:type) { FactoryBot.create :type, name: 'Issue' } let(:work_package) do FactoryBot.create(:work_package, project_id: project.id, priority: priority, author: current_user, assigned_to: current_user, due_date: due_date, type: type) end before do allow(User).to receive(:current).and_return current_user bcf_issue.comments.first.journal.update_columns(journable_id: work_package.id, version: 2) end shared_examples_for "writes Topic" do it "updates the Topic node" do work_package.reload expect(subject.at('Markup')).to be_present expect(subject.at('Topic')).to be_present expect(subject.at('Topic/@Guid').content).to be_eql bcf_issue.uuid expect(subject.at('Topic/@TopicStatus').content).to be_eql work_package.status.name expect(subject.at('Topic/@TopicType').content).to be_eql 'Issue' expect(subject.at('Topic/Title').content).to be_eql work_package.subject expect(subject.at('Topic/CreationDate').content).to be_eql work_package.created_at.iso8601 expect(subject.at('Topic/ModifiedDate').content).to be_eql work_package.updated_at.iso8601 expect(subject.at('Topic/Description').content).to be_eql work_package.description expect(subject.at('Topic/CreationAuthor').content).to be_eql work_package.author.mail expect(subject.at('Topic/ReferenceLink').content).to be_eql url_helpers.work_package_url(work_package) expect(subject.at('Topic/Priority').content).to be_eql work_package.priority.name expect(subject.at('Topic/ModifiedAuthor').content).to be_eql work_package.journals.last.user.mail expect(subject.at('Topic/AssignedTo').content).to be_eql work_package.assigned_to.mail expect(subject.at('Topic/DueDate').content).to be_eql work_package.due_date.to_datetime.iso8601 end end def valid_markup?(doc) schema = Nokogiri::XML::Schema(File.read(File.join(Rails.root, 'modules/bim/spec/bcf/bcf_xml/markup.xsd'))) errors = schema.validate(doc) if errors.empty? true else puts errors.map(&:message).join("\n") false end end shared_examples_for 'valid markup' do it 'produces valid markup' do expect(valid_markup?(subject)).to be_truthy end end context 'no markup present yet' do let(:markup) { nil } subject { Nokogiri::XML(described_class.update_from!(work_package).markup) } it_behaves_like 'writes Topic' it_behaves_like 'valid markup' end context 'markup already present' do subject { Nokogiri::XML(described_class.update_from!(work_package).markup) } it_behaves_like 'writes Topic' it_behaves_like 'valid markup' it "maintains existing nodes and attributes untouched" do expect(subject.at('Index').content).to be_eql "0" expect(subject.at('BimSnippet')['SnippetType']).to be_eql "JSON" end it 'it exports all BCF comments' do expect(subject.at('/Markup/Comment[1]/Comment').content).to eql("Some BCF comment.") end it 'creates BCF comments for comments that were created within OP.' do work_package.journal_notes = 'Some note created in OP.' work_package.save! expect(subject.at('/Markup/Comment[2]/Comment').content).to eql("Some note created in OP.") expect(Bim::Bcf::Comment.count).to eql(2) end it 'replaces the BCF viewpoints names to use its uuid only' do uuid = bcf_issue.viewpoints.first.uuid viewpoint_node = subject.at("/Markup/Viewpoints[@Guid='#{uuid}']") expect(viewpoint_node.at('Viewpoint').content).to eql("#{uuid}.bcfv") expect(viewpoint_node.at('Snapshot').content).to eql("#{uuid}.png") end end def url_helpers @url_helpers ||= OpenProject::StaticRouting::StaticUrlHelpers.new end end