123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- # encoding: utf-8
- require 'browser_test_helper'
- class AgentTicketActionLevel1Test < TestCase
- def test_agent_ticket_create
- 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 => '.active div.article',
- :value => 'some body 123äöü',
- :match_result => true,
- },
- # remember old ticket where we want to merge to
- {
- :execute => 'match',
- :css => '.active .ticket-zoom small',
- :value => '^(.*)$',
- :no_quote => true,
- :match_result => true,
- },
- # update ticket
- {
- :execute => 'select',
- :css => '.active select[name="ticket_article_type_id"]',
- :value => 'note',
- },
- {
- :execute => 'check',
- :css => '.active textarea[name="body"]',
- :result => true,
- },
- {
- :execute => 'set',
- :css => '.active textarea[name="body"]',
- :value => 'some body 1234 äöüß',
- },
- {
- :execute => 'click',
- :css => '.active button',
- },
- {
- :execute => 'wait',
- :value => 2,
- },
- {
- :execute => 'watch_for',
- :area => 'body',
- :value => 'some body 1234 äöüß',
- },
- {
- :execute => 'click',
- :css => '#task [data-type="close"]',
- },
- ],
- },
- {
- :name => 'agent ticket create 2',
- :action => [
- # create ticket
- {
- :execute => 'create_ticket',
- :group => 'Users',
- :subject => 'test to merge',
- :body => 'some body 123äöü 222',
- },
- # check ticket
- {
- :execute => 'match',
- :css => '.content_permanent.active',
- :value => 'some body 123äöü 222',
- :match_result => true,
- },
- # update ticket
- {
- :execute => 'select',
- :css => '.content_permanent.active select[name="ticket_article_type_id"]',
- :value => 'note',
- },
- {
- :execute => 'check',
- :css => '.content_permanent.active textarea[name="body"]',
- :result => true,
- },
- {
- :execute => 'set',
- :css => '.content_permanent.active textarea[name="body"]',
- :value => 'some body 1234 äöüß 222',
- },
- {
- :execute => 'click',
- :css => '.content_permanent.active button',
- },
- {
- :execute => 'wait',
- :value => 5,
- },
- {
- :execute => 'match',
- :css => '.content_permanent.active .ticket-answer',
- :value => 'some body 1234 äöüß 222',
- :match_result => true,
- },
- # 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 a[data-type="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 megred to ticket is shown now
- {
- :execute => 'match',
- :css => '.active .ticket-zoom small',
- :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 => 'click',
- :css => '#task [data-type="close"]',
- },
- ],
- },
- ]
- browser_signle_test_with_login(tests, { :username => 'agent1@example.com' })
- end
- end
|