trabajo-afectivo/test/browser/taskbar_session_test.rb

78 lines
2.2 KiB
Ruby
Raw Normal View History

2013-06-07 22:31:41 +00:00
# encoding: utf-8
require 'browser_test_helper'
class TaskbarSessionTest < TestCase
2013-06-07 22:31:41 +00:00
def test_current_session_a_same_agent
tests = [
{
2013-07-25 09:11:20 +00:00
:name => 'check taken over session block screen with same user',
:instance1 => browser_instance,
:instance2 => browser_instance,
:instance1_username => 'agent1@example.com',
:instance1_password => 'test',
:instance2_username => 'agent1@example.com',
:instance2_password => 'test',
2013-06-07 22:31:41 +00:00
:url => browser_url,
:action => [
{
:execute => 'wait',
2014-12-02 07:22:26 +00:00
:value => 8,
2013-06-07 22:31:41 +00:00
},
{
:where => :instance1,
:execute => 'match',
:css => 'body',
:value => 'Reload application',
:match_result => true,
},
{
:where => :instance2,
:execute => 'match',
:css => 'body',
:value => 'Reload application',
:match_result => false,
},
],
},
]
browser_double_test(tests)
end
def test_current_session_b_different_agent
tests = [
{
2013-07-25 09:11:20 +00:00
:name => 'check taken over session block screen with same user',
:instance1 => browser_instance,
:instance2 => browser_instance,
:instance1_username => 'master@example.com',
:instance1_password => 'test',
:instance2_username => 'agent1@example.com',
:instance2_password => 'test',
:url => browser_url,
2013-06-07 22:31:41 +00:00
:action => [
{
:execute => 'wait',
2014-12-02 07:22:26 +00:00
:value => 8,
2013-06-07 22:31:41 +00:00
},
{
:where => :instance1,
:execute => 'match',
:css => 'body',
:value => 'Reload application',
:match_result => false,
},
{
:where => :instance2,
:execute => 'match',
:css => 'body',
:value => 'Reload application',
:match_result => false,
},
],
},
]
browser_double_test(tests)
end
end