138 lines
3.5 KiB
Ruby
138 lines
3.5 KiB
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Profile > Token Access', type: :system do
|
|
let(:label) { 'Some App Token' }
|
|
let(:checkbox_input) { 'input[value="ticket.agent"]' }
|
|
let(:expiry_date) { '05/15/2024' }
|
|
let(:token_list) { find('.js-tokenList') }
|
|
|
|
shared_examples 'having an error notification message' do
|
|
it 'has error notification message' do
|
|
within '#notify' do
|
|
noty_message = find('.noty_message', visible: :all)
|
|
expect(noty_message).to have_text(error_message)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with valid fields' do
|
|
before do
|
|
visit 'profile/token_access'
|
|
|
|
within :active_content do
|
|
find('.content.active .js-create').click
|
|
|
|
within '.modal' do
|
|
fill_in 'label', with: label
|
|
checkbox = find(checkbox_input, visible: :all)
|
|
checkbox.check allow_label_click: true
|
|
find('.js-datepicker').fill_in with: expiry_date
|
|
send_keys(:tab)
|
|
click_button
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with expire date' do
|
|
it 'generates a new personal token' do
|
|
expect(page).to have_selector('.form-control.input.js-select')
|
|
.and have_text('Your New Personal Access Token')
|
|
end
|
|
|
|
it 'shows active report profile' do
|
|
within :active_content do
|
|
click_button
|
|
|
|
expect(token_list).to have_text(label)
|
|
.and have_text(expiry_date)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'without expire date' do
|
|
let(:expiry_date) { nil }
|
|
|
|
it 'generates a new personal token' do
|
|
expect(page).to have_selector('.form-control.input.js-select')
|
|
.and have_text('Your New Personal Access Token')
|
|
end
|
|
|
|
it 'shows active report profile' do
|
|
within :active_content do
|
|
click_button
|
|
|
|
expect(token_list).to have_text(label)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with invalid fields' do
|
|
before do
|
|
visit 'profile/token_access'
|
|
|
|
within :active_content do
|
|
find('.content.active .js-create').click
|
|
|
|
within '.modal' do
|
|
fill_in 'label', with: label
|
|
send_keys(:tab)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'without label' do
|
|
let(:label) { nil }
|
|
let(:error_message) { 'Need label!' }
|
|
|
|
before do
|
|
checkbox = find(checkbox_input, visible: :all)
|
|
checkbox.check allow_label_click: true
|
|
click_button
|
|
end
|
|
|
|
it_behaves_like 'having an error notification message'
|
|
end
|
|
|
|
context 'without permission' do
|
|
let(:label) { nil }
|
|
let(:error_message) { 'Minimum of one permission is needed!' }
|
|
|
|
before { click_button }
|
|
|
|
it_behaves_like 'having an error notification message'
|
|
end
|
|
end
|
|
|
|
context 'with already created token', authenticated_as: -> { admin_user } do
|
|
let(:admin_user) { create(:admin) }
|
|
let(:create_token) do
|
|
create(:api_token,
|
|
user: admin_user,
|
|
label: label,
|
|
preferences: { permission: %w[admin ticket.agent] })
|
|
end
|
|
|
|
before do
|
|
create_token
|
|
visit 'profile/token_access'
|
|
end
|
|
|
|
it 'shows the created token' do
|
|
expect(token_list).to have_text(label)
|
|
end
|
|
|
|
it 'deletes created token' do
|
|
token_delete_button = find('.js-tokenList tr .js-delete')
|
|
token_delete_button.click
|
|
|
|
within '.modal' do
|
|
click_button
|
|
end
|
|
|
|
expect(token_list).to have_no_text(label)
|
|
end
|
|
end
|
|
end
|