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/features/statuses/read_only_statuses_spec.rb

98 lines
3.4 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 'Read-only statuses affect work package editing',
with_ee: %i[readonly_work_packages],
type: :feature,
js: true do
let(:locked_status) { FactoryBot.create :status, name: 'Locked', is_readonly: true }
let(:unlocked_status) { FactoryBot.create :status, name: 'Unlocked', is_readonly: false }
let(:type) { FactoryBot.create :type_bug }
let(:project) { FactoryBot.create :project, types: [type] }
let!(:work_package) do
FactoryBot.create :work_package,
project: project,
type: type,
status: unlocked_status
end
let(:role) { FactoryBot.create :role, permissions: %i[edit_work_packages view_work_packages] }
let(:user) do
FactoryBot.create :user,
member_in_project: project,
member_through_role: role
end
let!(:workflow1) do
FactoryBot.create :workflow,
type_id: type.id,
old_status: unlocked_status,
new_status: locked_status,
role: role
end
let!(:workflow2) do
FactoryBot.create :workflow,
type_id: type.id,
old_status: locked_status,
new_status: unlocked_status,
role: role
end
let(:wp_page) { Pages::FullWorkPackage.new(work_package) }
before do
login_as(user)
wp_page.visit!
end
it 'locks the work package on a read only status' do
expect(page).to have_selector '.work-package--attachments--drop-box'
subject_field = wp_page.edit_field :subject
subject_field.activate!
subject_field.cancel_by_escape
status_field = wp_page.edit_field :status
status_field.expect_state_text 'Unlocked'
status_field.update 'Locked'
wp_page.expect_and_dismiss_notification(message: 'Successful update.')
status_field.expect_state_text 'Locked'
subject_field = wp_page.edit_field :subject
subject_field.activate! expect_open: false
subject_field.expect_read_only
# Expect attachments not available
expect(page).to have_no_selector '.work-package--attachments--drop-box'
end
end