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/users/invite_user_modal_spec.rb

180 lines
6.3 KiB

#-- 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 docs/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
feature 'Invite user modal', type: :feature, js: true do
shared_let(:project) { FactoryBot.create :project }
shared_let(:work_package) { FactoryBot.create :work_package, project: project }
let(:permissions) { %i[view_work_packages edit_work_packages manage_members] }
current_user do
FactoryBot.create :user,
member_in_project: project,
member_through_role: role
end
let!(:role) do
FactoryBot.create :role,
name: 'Member',
permissions: permissions
end
let(:modal) do
::Components::Users::InviteUserModal.new project: project,
principal: principal,
role: role
end
shared_examples 'invites the principal to the project' do
it 'will invite that principal to the project' do
modal.run_all_steps
assignee_field.expect_active!
# TODO assignee field should contain the user name now
#assignee_field.expect_value principal.name
assignee_field.expect_value nil
new_member = project.reload.member_principals.find_by(user_id: added_principal.id)
expect(new_member).to be_present
expect(new_member.roles).to eq [role]
end
end
describe 'inviting a non-project existing user' do
describe 'through the assignee field' do
let(:wp_page) { Pages::FullWorkPackage.new(work_package, project) }
let(:assignee_field) { wp_page.edit_field :assignee }
before do
wp_page.visit!
assignee_field.activate!
find('.ng-dropdown-footer button', text: 'Invite', wait: 10).click
end
context 'with a non project user' do
let!(:principal) do
FactoryBot.create :user,
firstname: 'Nonproject',
lastname: 'User'
end
it 'can add an existing user to the project' do
modal.run_all_steps
# TODO assignee field should close and contain the user name now
#assignee_field.expect_value principal.name
assignee_field.expect_active!
assignee_field.expect_value nil
# But the user got created
new_member = project.reload.members.find_by(user_id: principal.id)
expect(new_member).to be_present
expect(new_member.roles).to eq [role]
end
end
context 'with a user to be invited' do
let(:principal) { FactoryBot.build :invited_user }
context 'when the current user has permissions to create a user' do
let(:permissions) { %i[view_work_packages edit_work_packages manage_members manage_user] }
it_behaves_like 'invites the principal to the project' do
let(:added_principal) { User.find_by!(mail: principal.mail) }
end
end
end
describe 'inviting placeholders' do
let(:principal) { FactoryBot.build :placeholder_user, name: 'MY NEW PLACEHOLDER' }
context 'system has enterprise', with_ee: %i[placeholder_users] do
describe 'create a new placeholder' do
context 'with permissions to manage placeholders' do
let(:permissions) { %i[view_work_packages edit_work_packages manage_members manage_placeholder_user] }
it_behaves_like 'invites the principal to the project' do
let(:added_principal) { PlaceholderUser.find_by!(name: 'MY NEW PLACEHOLDER') }
end
end
context 'without permissions to manage placeholders' do
let(:permissions) { %i[view_work_packages edit_work_packages manage_members manage_placeholder_user] }
it 'does not allow to invite a new placeholder' do
skip "TODO wait for permissions API"
end
end
end
context 'with an existing placeholder' do
let(:principal) { FactoryBot.create :placeholder_user }
it_behaves_like 'invites the principal to the project' do
let(:added_principal) { principal }
end
end
end
context 'system has no enterprise' do
it 'shows the modal with placeholder option disabled' do
modal.within_modal do
expect(page).to have_field 'Placeholder user', disabled: true
end
end
end
end
describe 'inviting groups' do
let(:principal) { FactoryBot.create :group, name: 'MY NEW GROUP' }
it_behaves_like 'invites the principal to the project' do
let(:added_principal) { principal }
end
end
end
end
context 'when the user has no permission to manage members' do
let(:permissions) { %i[view_work_packages edit_work_packages] }
let(:wp_page) { Pages::FullWorkPackage.new(work_package, project) }
let(:assignee_field) { wp_page.edit_field :assignee }
before do
wp_page.visit!
end
it 'can add an existing user to the project' do
assignee_field.activate!
expect(page).to have_no_selector('.ng-dropdown-footer', text: 'Invite')
end
end
end