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/global_roles/spec/features/global_role_assignment_spec.rb

108 lines
4.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_relative '../spec_helper'
describe 'Global role: Global role assignment', type: :feature, js: true do
before do
login_as(current_user)
end
# @javascript
describe 'Going to the global role assignment page' do
# Given there is the global permission "global1" of the module "global"
# And there is the global permission "global2" of the module "global"
before do
mock_global_permissions [['global1', project_module: :global], ['global2', project_module: :global]]
end
# And there is a global role "global_role1"
let!(:global_role1) { FactoryBot.create :global_role, name: 'global_role1', permissions: %i[global1] }
# And there is a global role "global_role2"
let!(:global_role2) { FactoryBot.create :global_role, name: 'global_role2', permissions: %i[global2] }
# And there is 1 User with:
# | Login | bob |
# | Firstname | Bob |
# | Lastname | Bobbit |
# And the user "bob" has the global role "global_role1"
let!(:user) { FactoryBot.create :user }
let!(:principal_role) { FactoryBot.create(:principal_role, principal: user, role: global_role1) }
# And I am already admin
let(:current_user) { FactoryBot.create :admin }
it 'allows global roles management' do
# When I go to the edit page of the user called "bob"
visit edit_user_path user
# And I click on "Global Roles"
click_link 'Global Roles'
# Then I should see "global_role1" within "#table_principal_roles"
page.within('#table_principal_roles') do
expect(page).to have_text 'global_role1'
end
# And I should not see "global_role1" within "#available_principal_roles"
# And I should see "global_role2" within "#available_principal_roles"
page.within('#available_principal_roles') do
expect(page).to have_no_text 'global_role1'
expect(page).to have_text 'global_role2'
end
# And I select the available global role "global_role"
check 'global_role2'
# And I press "Add"
click_on 'Add'
# Then I should see "global_role" within "#table_principal_roles"
page.within('#available_principal_roles') do
expect(page).to have_no_text 'global_role1'
expect(page).to have_no_text 'global_role2'
end
# And I should not see "global_role" within "#available_principal_roles"
# And I should see "There is currently nothing to display"
page.within('#table_principal_roles') do
expect(page).to have_text 'global_role1'
expect(page).to have_text 'global_role2'
end
# And I delete the assigned role "global_role"
page.within("#principal_role-#{principal_role.id}") do
page.find('.buttons a.icon-delete').click
end
# Then I should see "global_role" within "#table_principal_roles"
page.within('#available_principal_roles') do
expect(page).to have_text 'global_role1'
expect(page).to have_no_text 'global_role2'
end
# And I should not see "global_role" within "#available_principal_roles"
# And I should see "There is currently nothing to display"
page.within('#table_principal_roles') do
expect(page).to have_no_text 'global_role1'
expect(page).to have_text 'global_role2'
end
end
end
end