trabajo-afectivo/test/browser/agent_organization_profile_test.rb

254 lines
5.3 KiB
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
require 'browser_test_helper'
class AgentOrganizationProfileTest < TestCase
2015-02-23 15:35:48 +00:00
def test_org_profile
# work in one browser window
message = "1 #{SecureRandom.uuid}"
note = "some note #{SecureRandom.uuid}"
2015-02-23 13:49:40 +00:00
@browser = browser_instance
login(
2021-08-17 12:10:02 +00:00
username: 'admin@example.com',
password: 'test',
url: browser_url,
2015-02-23 13:49:40 +00:00
)
tasks_close_all
2015-02-23 13:49:40 +00:00
# search and open org
organization_open_by_search(
value: 'Zammad Foundation',
2015-02-23 13:49:40 +00:00
)
verify_task(
data: {
title: 'Zammad Foundation',
}
)
2015-02-23 13:49:40 +00:00
watch_for(
css: '.active .profile-window',
value: 'note',
2015-02-23 13:49:40 +00:00
)
watch_for(
css: '.active .profile-window',
value: 'member',
2015-02-23 13:49:40 +00:00
)
# update note
set(
css: '.active .profile [data-name="note"]',
value: note,
2015-02-23 13:49:40 +00:00
)
empty_search
sleep 2
2015-02-23 13:49:40 +00:00
# check and change note again in edit screen
2016-03-15 11:47:26 +00:00
click(css: '.active .js-action .icon-arrow-down', fast: true)
click(css: '.active .js-action [data-type="edit"]')
2015-02-23 13:49:40 +00:00
modal_ready
2015-02-23 13:49:40 +00:00
watch_for(
css: '.active .modal',
value: note,
2015-02-23 13:49:40 +00:00
)
set(
css: '.modal [name="name"]',
value: 'Z2',
)
2015-02-23 13:49:40 +00:00
set(
css: '.active .modal [data-name="note"]',
value: 'some note abc',
2015-02-23 13:49:40 +00:00
)
2016-03-15 11:47:26 +00:00
click(css: '.active .modal button.js-submit')
modal_disappear
2015-02-23 13:49:40 +00:00
watch_for(
css: '.active .profile-window',
value: 'some note abc',
2015-02-23 13:49:40 +00:00
)
verify_task(
data: {
title: 'Z2',
}
)
# change lastname back
click(css: '.active .js-action .icon-arrow-down', fast: true)
click(css: '.active .js-action [data-type="edit"]')
modal_ready
set(
css: '.modal [name="name"]',
value: 'Zammad Foundation',
)
click(css: '.active .modal button.js-submit')
modal_disappear
verify_task(
data: {
title: 'Zammad Foundation',
}
)
2015-02-23 13:49:40 +00:00
# create new ticket
ticket_create(
data: {
customer: 'nico',
group: 'Users',
title: "org profile check #{message}",
body: "org profile check #{message}",
},
2015-02-23 13:49:40 +00:00
)
# switch to org tab, verify if ticket is shown
organization_open_by_search(
value: 'Zammad Foundation',
2015-02-23 13:49:40 +00:00
)
watch_for(
css: '.active .profile-window',
value: "org profile check #{message}",
2015-02-23 13:49:40 +00:00
)
tasks_close_all
2015-02-23 15:35:48 +00:00
# work with two browser windows
message = "comment 1 #{SecureRandom.uuid}"
2015-02-23 15:35:48 +00:00
# use current session
browser1 = @browser
browser2 = browser_instance
login(
browser: browser2,
username: 'agent1@example.com',
password: 'test',
url: browser_url,
2015-02-23 15:35:48 +00:00
)
tasks_close_all(
browser: browser2,
2015-02-23 15:35:48 +00:00
)
organization_open_by_search(
browser: browser1,
value: 'Zammad Foundation',
2015-02-23 15:35:48 +00:00
)
organization_open_by_search(
browser: browser2,
value: 'Zammad Foundation',
2015-02-23 15:35:48 +00:00
)
# update note
set(
browser: browser1,
css: '.active .profile [data-name="note"]',
slow: true,
value: message,
2015-02-23 15:35:48 +00:00
)
2016-03-15 11:47:26 +00:00
empty_search(
browser: browser1,
2015-02-23 15:35:48 +00:00
)
# verify
watch_for(
browser: browser2,
css: '.active .profile-window',
value: message,
2015-02-23 15:35:48 +00:00
)
end
def test_org_profile_user_active_update
@browser = browser_instance
login(
2021-08-17 12:10:02 +00:00
username: 'admin@example.com',
password: 'test',
url: browser_url,
)
tasks_close_all
# search and open org
organization_open_by_search(
value: 'Zammad Foundation',
)
watch_for(
css: '.active .profile-window .userList-entry a.user-popover',
value: 'Nicole Braun',
)
exists(
css: '.active .profile-window .userList-entry .avatar--unique',
)
# open user and change status to inactive
click(
css: '.active .profile-window .userList-entry a.user-popover',
)
click(
css: '.active .profile-window .dropdown #userAction',
)
click(
css: '.active .profile-window .dropdown li[data-type="edit"]',
)
modal_ready
select(
css: '.active .modal select[name="active"]',
value: 'inactive'
)
click(
css: '.modal .js-submit',
)
modal_disappear
# go back to the org and check for inactive status update
click(
css: '#navigation .nav-tab[data-key="Organization-1"]',
)
watch_for(
css: '.active .profile-window .userList-entry .avatar--unique.avatar--inactive',
)
# open user and change status to active again
click(
css: '.active .profile-window .userList-entry a.user-popover',
)
click(
css: '.active .profile-window .dropdown #userAction',
)
click(
css: '.active .profile-window .dropdown li[data-type="edit"]',
)
modal_ready
select(
css: '.active .modal select[name="active"]',
value: 'active'
)
click(
css: '.modal .js-submit',
)
modal_disappear
# go back to the org and check for active status update
click(
css: '#navigation .nav-tab[data-key="Organization-1"]',
)
watch_for(
css: '.active .profile-window .userList-entry .avatar--unique',
)
exists_not(
css: '.active .profile-window .userList-entry .avatar--unique.avatar--inactive',
)
end
end