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/spec/contracts/work_packages/create_note_contract_spec.rb

96 lines
2.9 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
#
# 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 doc/COPYRIGHT.rdoc for more details.
require 'spec_helper'
describe WorkPackages::CreateNoteContract do
let(:work_package) do
# As we only want to test the contract, we mock checking whether the work_package is valid
wp = FactoryBot.build_stubbed(:work_package)
# we need to clear the changes information because otherwise the
# contract will complain about all the changes to read_only attributes
wp.send(:clear_changes_information)
allow(wp).to receive(:valid?).and_return true
wp
end
let(:user) { FactoryBot.build_stubbed(:user) }
let(:policy_instance) { double('WorkPackagePolicyInstance') }
subject(:contract) {
contract = described_class.new(work_package, user)
contract.policy = policy_instance
contract
}
describe 'note' do
before do
work_package.journal_notes = 'blubs'
end
context 'if the user has the permissions' do
before do
allow(policy_instance).to receive(:allowed?).with(work_package, :comment).and_return true
contract.validate
end
it('is valid') { expect(contract.errors).to be_empty }
end
context 'if the user lacks the permissions' do
before do
allow(policy_instance).to receive(:allowed?).with(work_package, :comment).and_return false
contract.validate
end
it 'is invalid' do
expect(contract.errors.symbols_for(:journal_notes))
.to match_array([:error_unauthorized])
end
end
end
describe 'subject' do
before do
work_package.subject = 'blubs'
allow(policy_instance).to receive(:allowed?).and_return true
contract.validate
end
it 'is invalid' do
expect(contract.errors.symbols_for(:subject))
.to match_array([:error_readonly])
end
end
end