trabajo-afectivo/test/browser/taskbar_task_test.rb

124 lines
2.4 KiB
Ruby
Raw Normal View History

# encoding: utf-8
require 'browser_test_helper'
class TaskbarTaskTest < TestCase
def test_persistant_task_a
2015-02-22 22:20:05 +00:00
@browser = browser_instance
login(
username: 'agent1@example.com',
password: 'test',
url: browser_url,
2015-02-22 22:20:05 +00:00
)
tasks_close_all()
# persistant task
click( css: 'a[href="#new"]' )
click( css: 'a[href="#ticket/create"]' )
2015-02-22 22:20:05 +00:00
set(
css: '.active .newTicket input[name="title"]',
value: 'some test AAA',
2015-02-22 22:20:05 +00:00
)
sleep 10
end
def test_persistant_task_b
2015-02-22 22:20:05 +00:00
@browser = browser_instance
login(
username: 'agent1@example.com',
password: 'test',
url: browser_url,
2015-02-22 22:20:05 +00:00
)
sleep 3
# check if task still exists
click( css: '.task' )
2015-02-22 22:20:05 +00:00
match(
css: '.active .newTicket input[name="title"]',
value: 'some test AAA',
2015-02-22 22:20:05 +00:00
)
tasks_close_all()
exists_not( css: '.active .newTicket input[name="title"]' )
end
def test_persistant_task_with_relogin
2015-02-22 22:20:05 +00:00
@browser = browser_instance
login(
username: 'agent1@example.com',
password: 'test',
url: browser_url,
2015-02-22 22:20:05 +00:00
)
tasks_close_all()
click( css: 'a[href="#new"]' )
click( css: 'a[href="#ticket/create"]' )
2015-02-22 22:20:05 +00:00
set(
css: '.active .newTicket input[name="title"]',
value: 'INBOUND TEST#1',
2015-02-22 22:20:05 +00:00
)
set(
css: '.active .newTicket [data-name="body"]',
value: 'INBOUND BODY TEST#1',
2015-02-22 22:20:05 +00:00
)
click( css: 'a[href="#new"]' )
click( css: 'a[href="#ticket/create"]' )
2015-02-22 22:20:05 +00:00
set(
css: '.active .newTicket input[name="title"]',
value: 'OUTBOUND TEST#1',
2015-02-22 22:20:05 +00:00
)
set(
css: '.active .newTicket [data-name="body"]',
value: 'OUTBOUND BODY TEST#1',
2015-02-22 22:20:05 +00:00
)
sleep 10
logout()
sleep 4
# relogin with master - task are not viewable
login(
username: 'master@example.com',
password: 'test',
url: browser_url,
2015-02-22 22:20:05 +00:00
)
sleep 3
match_not(
css: 'body',
value: 'INBOUND TEST#1',
2015-02-22 22:20:05 +00:00
)
match_not(
css: 'body',
value: 'OUTBOUND TEST#1',
2015-02-22 22:20:05 +00:00
)
logout()
sleep 2
match_not(
css: 'body',
value: 'INBOUND TEST#1',
2015-02-22 22:20:05 +00:00
)
match_not(
css: 'body',
value: 'OUTBOUND TEST#1',
2015-02-22 22:20:05 +00:00
)
# relogin with agent - task are viewable
login(
username: 'agent1@example.com',
password: 'test',
url: browser_url,
2015-02-22 22:20:05 +00:00
)
sleep 3
match(
css: 'body',
value: 'INBOUND TEST#1',
2015-02-22 22:20:05 +00:00
)
match(
css: 'body',
value: 'OUTBOUND TEST#1',
2015-02-22 22:20:05 +00:00
)
end
2015-02-22 22:20:05 +00:00
end