2013-04-24 08:59:26 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'browser_test_helper'
|
|
|
|
|
|
|
|
class AgentUserManageTest < TestCase
|
|
|
|
def test_agent_user
|
|
|
|
customer_user_email = 'customer-test-' + rand(999999).to_s + '@example.com'
|
2014-06-05 07:52:56 +00:00
|
|
|
firstname = 'Customer Firstname'
|
|
|
|
lastname = 'Customer Lastname'
|
|
|
|
fullname = "#{ firstname } #{ lastname } <#{ customer_user_email }>"
|
2013-04-24 08:59:26 +00:00
|
|
|
|
2015-02-22 22:20:05 +00:00
|
|
|
@browser = browser_instance
|
|
|
|
login(
|
|
|
|
:username => 'agent1@example.com',
|
|
|
|
:password => 'test',
|
|
|
|
:url => browser_url,
|
|
|
|
)
|
|
|
|
tasks_close_all()
|
2013-04-24 09:46:48 +00:00
|
|
|
|
2015-02-22 22:20:05 +00:00
|
|
|
sleep 1
|
|
|
|
|
|
|
|
# create customer
|
|
|
|
click( :css => 'a[href="#new"]' )
|
|
|
|
click( :css => 'a[href="#ticket/create"]' )
|
|
|
|
click( :css => '.active .newTicket [name="customer_id_completion"]' )
|
|
|
|
sendkey( :value => :arrow_down )
|
|
|
|
sleep 1
|
|
|
|
click( :css => '.active .newTicket .recipientList-entry.js-user-new' )
|
|
|
|
sleep 1
|
|
|
|
|
|
|
|
set(
|
|
|
|
:css => '.modal input[name="firstname"]',
|
|
|
|
:value => firstname,
|
|
|
|
)
|
|
|
|
set(
|
|
|
|
:css => '.modal input[name="lastname"]',
|
|
|
|
:value => lastname,
|
|
|
|
)
|
|
|
|
set(
|
|
|
|
:css => '.modal input[name="email"]',
|
|
|
|
:value => customer_user_email,
|
|
|
|
)
|
|
|
|
|
|
|
|
click( :css => '.modal button.js-submit' )
|
|
|
|
sleep 4
|
|
|
|
|
|
|
|
# check is used to check selected
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id"]',
|
|
|
|
:value => '^\d+$',
|
|
|
|
:no_quote => true,
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => firstname,
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => lastname,
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => customer_user_email,
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => fullname,
|
|
|
|
)
|
|
|
|
sleep 4
|
|
|
|
|
|
|
|
# call new ticket screen again
|
|
|
|
tasks_close_all( :discard_changes => 1 )
|
|
|
|
|
|
|
|
click( :css => 'a[href="#new"]' )
|
|
|
|
click( :css => 'a[href="#ticket/create"]' )
|
|
|
|
sleep 2
|
|
|
|
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id"]',
|
|
|
|
:value => '',
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => '',
|
|
|
|
)
|
|
|
|
set(
|
|
|
|
:css => '.active .newTicket input[name="customer_id_completion"]',
|
|
|
|
:value => customer_user_email,
|
|
|
|
)
|
|
|
|
sleep 3
|
|
|
|
sendkey( :value => :arrow_down )
|
|
|
|
sleep 1
|
|
|
|
click( :css => '.active .newTicket .recipientList-entry.js-user.is-active' )
|
|
|
|
sleep 1
|
|
|
|
|
|
|
|
# check is used to check selected
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id"]',
|
|
|
|
:value => '^\d+$',
|
|
|
|
:no_quote => true,
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => firstname,
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => lastname,
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => customer_user_email,
|
|
|
|
)
|
|
|
|
match(
|
|
|
|
:css => '.active input[name="customer_id_completion"]',
|
|
|
|
:value => fullname,
|
|
|
|
)
|
2013-04-24 08:59:26 +00:00
|
|
|
end
|
2015-02-22 22:20:05 +00:00
|
|
|
|
|
|
|
end
|