2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2020-12-17 06:14:17 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'Manage > Users', type: :system do
|
|
|
|
describe 'switching to an alternative user', authenticated_as: -> { original_user } do
|
|
|
|
let(:original_user) { create(:admin) }
|
|
|
|
let(:alternative_one_user) { create(:admin) }
|
|
|
|
let(:alternative_two_user) { create(:admin) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
alternative_one_user
|
|
|
|
alternative_two_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'starts as original user' do
|
|
|
|
expect(current_user).to eq original_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'switches to alternative user' do
|
|
|
|
switch_to(alternative_one_user)
|
|
|
|
expect(current_user).to eq alternative_one_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'switches to another alternative user' do
|
|
|
|
switch_to(alternative_one_user)
|
|
|
|
switch_to(alternative_two_user)
|
|
|
|
|
|
|
|
expect(current_user).to eq alternative_two_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'switches back to original user' do
|
|
|
|
switch_to(alternative_one_user)
|
|
|
|
switch_to(alternative_two_user)
|
|
|
|
|
|
|
|
click '.switchBackToUser-close'
|
|
|
|
|
|
|
|
expect(current_user).to eq original_user
|
|
|
|
end
|
|
|
|
|
|
|
|
def switch_to(user)
|
|
|
|
visit 'manage/users'
|
|
|
|
|
|
|
|
within(:active_content) do
|
2021-06-15 06:26:52 +00:00
|
|
|
row = find("tr[data-id=\"#{user.id}\"]", wait: 10)
|
2020-12-17 06:14:17 +00:00
|
|
|
row.find('.js-action').click
|
|
|
|
row.find('.js-switchTo').click
|
|
|
|
end
|
|
|
|
|
2021-06-15 06:26:52 +00:00
|
|
|
expect(page).to have_text("Zammad looks like this for \"#{user.firstname} #{user.lastname}\"", wait: 10)
|
2020-12-17 06:14:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|