OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/modules/bcf/spec/controllers/issues_controller_spec.rb

183 lines
5.6 KiB

#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2020 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-2017 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 docs/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
describe ::Bcf::IssuesController, type: :controller do
let(:manage_bcf_role) do
FactoryBot.create(:role,
permissions: %i[manage_bcf view_linked_issues view_work_packages add_work_packages edit_work_packages])
end
let(:collaborator_role) do
FactoryBot.create(:role,
permissions: %i[view_linked_issues view_work_packages add_work_packages edit_work_packages])
end
let(:bcf_manager) { FactoryBot.create(:user, firstname: "BCF Manager") }
let(:collaborator) { FactoryBot.create(:user) }
let(:non_member) { FactoryBot.create(:user) }
let(:project) do
FactoryBot.create(:project, identifier: 'bim_project')
end
let(:member) do
FactoryBot.create(:member,
project: project,
user: collaborator,
roles: [collaborator_role])
end
let(:bcf_manager_member) do
FactoryBot.create(:member,
project: project,
user: bcf_manager,
roles: [manage_bcf_role])
end
before do
bcf_manager_member
member
login_as(bcf_manager)
end
shared_examples_for 'check permissions' do
context 'without sufficient permissions' do
before { action }
context 'not member of project' do
let(:bcf_manager_member) {}
it 'will return "not authorized"' do
expect(response).to_not be_successful
end
end
context 'no manage_bcf permission' do
let(:bcf_manager_member) do
FactoryBot.create(:member,
project: project,
user: bcf_manager,
roles: [collaborator_role])
end
it 'will return "not authorized"' do
expect(response).to_not be_successful
end
end
end
end
describe '#prepare_import' do
let(:params) do
{
project_id: project.identifier.to_s,
bcf_file: file
}
end
let(:action) do
post :prepare_import, params: params
end
context 'with valid BCF file' do
let(:filename) { 'MaximumInformation.bcf' }
let(:file) do
Rack::Test::UploadedFile.new(
File.join(Rails.root, "modules/bcf/spec/fixtures/files/#{filename}"),
'application/octet-stream'
)
end
it 'should be successful' do
expect { action }.to change { Attachment.count }.by(1)
expect(response).to be_successful
end
it_behaves_like "check permissions"
end
context 'with invalid BCF file' do
let(:file) { FileHelpers.mock_uploaded_file }
it 'should redirect back to where we started from' do
expect { action }.to change { Attachment.count }.by(1)
expect(response).to redirect_to '/projects/bim_project/issues/upload'
end
end
end
describe '#configure_import' do
let(:action) do
post :configure_import, params: { project_id: project.identifier.to_s }
end
context 'with valid BCF file' do
let(:filename) { 'MaximumInformation.bcf' }
let(:file) do
Rack::Test::UploadedFile.new(
File.join(Rails.root, "modules/bcf/spec/fixtures/files/#{filename}"),
'application/octet-stream'
)
end
before do
allow_any_instance_of(Attachment).to receive(:diskfile).and_return(file)
allow(Attachment).to receive(:find_by).and_return(Attachment.new)
end
it 'should be successful' do
expect { action }.to change { Attachment.count }.by(0)
expect(response).to be_successful
end
it_behaves_like "check permissions"
end
end
describe '#perform_import' do
let(:action) do
post :perform_import, params: { project_id: project.identifier.to_s }
end
context 'with valid BCF file' do
let(:filename) { 'MaximumInformation.bcf' }
let(:file) do
Rack::Test::UploadedFile.new(
File.join(Rails.root, "modules/bcf/spec/fixtures/files/#{filename}"),
'application/octet-stream'
)
end
before do
allow_any_instance_of(Attachment).to receive(:diskfile).and_return(file)
allow(Attachment).to receive(:find_by).and_return(Attachment.new)
end
it 'should be successful' do
expect { action }.to change { Attachment.count }.by(0)
expect(response).to be_successful
end
it_behaves_like "check permissions"
end
end
end