Added browser test for merge with two open tabs.
This commit is contained in:
parent
a7a41d201d
commit
369aa7e52d
1 changed files with 122 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
require 'browser_test_helper'
|
||||
|
||||
class AgentTicketActionLevel1Test < TestCase
|
||||
def test_agent_ticket_create
|
||||
def test_agent_ticket_merge_closed_tab
|
||||
tests = [
|
||||
{
|
||||
:name => 'agent ticket create 1',
|
||||
|
@ -171,4 +171,124 @@ class AgentTicketActionLevel1Test < TestCase
|
|||
]
|
||||
browser_signle_test_with_login(tests, { :username => 'agent1@example.com' })
|
||||
end
|
||||
|
||||
def test_agent_ticket_merge_open_tab
|
||||
tests = [
|
||||
{
|
||||
:name => 'agent ticket create 1',
|
||||
:action => [
|
||||
{
|
||||
:execute => 'close_all_tasks',
|
||||
},
|
||||
|
||||
# create ticket
|
||||
{
|
||||
:execute => 'create_ticket',
|
||||
:group => 'Users',
|
||||
:subject => 'some subject 123äöü',
|
||||
:body => 'some body 123äöü',
|
||||
},
|
||||
|
||||
# check ticket
|
||||
{
|
||||
:execute => 'match',
|
||||
:css => '.content.active .ticket-article',
|
||||
:value => 'some body 123äöü',
|
||||
:match_result => true,
|
||||
},
|
||||
|
||||
# remember old ticket where we want to merge to
|
||||
{
|
||||
:execute => 'match',
|
||||
:css => '.content.active .page-header .ticket-number',
|
||||
:value => '^(.*)$',
|
||||
:no_quote => true,
|
||||
:match_result => true,
|
||||
},
|
||||
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
:name => 'agent ticket create 2',
|
||||
:action => [
|
||||
|
||||
# create ticket
|
||||
{
|
||||
:execute => 'create_ticket',
|
||||
:group => 'Users',
|
||||
:subject => 'test to merge',
|
||||
:body => 'some body 123äöü 222 - test to merge',
|
||||
},
|
||||
|
||||
# check ticket
|
||||
{
|
||||
:execute => 'watch_for',
|
||||
:area => '.content.active .ticket-article',
|
||||
:value => 'some body 123äöü 222 - test to merge',
|
||||
},
|
||||
|
||||
# check if task is shown
|
||||
{
|
||||
:execute => 'match',
|
||||
:css => 'body',
|
||||
:value => 'test to merge',
|
||||
:match_result => true,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
:name => 'agent ticket merge',
|
||||
:action => [
|
||||
{
|
||||
:execute => 'click',
|
||||
:css => '.active div[data-tab="ticket"] .js-actions .select-arrow',
|
||||
},
|
||||
{
|
||||
:execute => 'click',
|
||||
:css => '.active div[data-tab="ticket"] .js-actions a[data-type="ticket-merge"]',
|
||||
},
|
||||
{
|
||||
:execute => 'wait',
|
||||
:value => 4,
|
||||
},
|
||||
{
|
||||
:execute => 'set',
|
||||
:css => '.modal input[name="master_ticket_number"]',
|
||||
:value => '###stack###',
|
||||
},
|
||||
{
|
||||
:execute => 'click',
|
||||
:css => '.modal button[type="submit"]',
|
||||
},
|
||||
{
|
||||
:execute => 'wait',
|
||||
:value => 6,
|
||||
},
|
||||
|
||||
# check if merged to ticket is shown now
|
||||
{
|
||||
:execute => 'match',
|
||||
:css => '.active .page-header .ticket-number',
|
||||
:value => '###stack###',
|
||||
:match_result => true,
|
||||
},
|
||||
|
||||
# check if task is now gone
|
||||
{
|
||||
:execute => 'match',
|
||||
:css => 'body',
|
||||
:value => 'test to merge',
|
||||
:match_result => true,
|
||||
},
|
||||
|
||||
# close task/cleanup
|
||||
{
|
||||
:execute => 'close_all_tasks',
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
browser_signle_test_with_login(tests, { :username => 'agent1@example.com' })
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue