trabajo-afectivo/test/browser/aaa_getting_started_test.rb

422 lines
12 KiB
Ruby
Raw Normal View History

# encoding: utf-8
require 'browser_test_helper'
class AaaGettingStartedTest < TestCase
2014-11-18 21:09:01 +00:00
def test_a_getting_started
if !ENV['MAILBOX_INIT']
raise "Need MAILBOX_INIT as ENV variable like export MAILBOX_INIT='unittest01@znuny.com:somepass'"
end
mailbox_user = ENV['MAILBOX_INIT'].split(':')[0]
mailbox_password = ENV['MAILBOX_INIT'].split(':')[1]
tests = [
{
:name => 'start',
:instance => browser_instance,
2013-04-21 23:03:19 +00:00
:url => browser_url + '/',
:action => [
{
:execute => 'check',
2014-11-16 23:46:39 +00:00
:css => '.setup.wizard',
:result => true,
},
],
},
{
2013-04-21 23:03:19 +00:00
:name => 'getting started - master agent',
:action => [
2014-11-16 23:46:39 +00:00
{
:execute => 'click',
:css => '.js-start .btn--primary',
},
{
:execute => 'set',
2014-11-16 23:46:39 +00:00
:css => '.js-admin input[name="firstname"]',
:value => 'Test Master',
},
{
:execute => 'set',
2014-11-16 23:46:39 +00:00
:css => '.js-admin input[name="lastname"]',
:value => 'Agent',
},
{
:execute => 'set',
2014-11-16 23:46:39 +00:00
:css => '.js-admin input[name="email"]',
:value => 'master@example.com',
},
{
:execute => 'set',
2014-11-16 23:46:39 +00:00
:css => '.js-admin input[name="password"]',
:value => 'test1234äöüß',
},
{
:execute => 'set',
2014-11-16 23:46:39 +00:00
:css => '.js-admin input[name="password_confirm"]',
:value => 'test1234äöüß',
},
{
:execute => 'click',
2014-11-16 23:46:39 +00:00
:css => '.js-admin .btn--success',
},
{
2014-11-20 07:44:50 +00:00
:execute => 'watch_for',
:area => '.js-base h2',
:value => 'Organization',
},
2013-04-21 23:03:19 +00:00
],
},
2014-11-16 23:46:39 +00:00
# set base
{
:name => 'getting started - base',
:action => [
{
:execute => 'match',
:css => '.js-base h2',
:value => 'Organization',
:match_result => true,
},
{
:execute => 'set',
:css => '.js-base input[name="organization"]',
:value => 'Some Organization',
},
{
:execute => 'set',
:css => '.js-base input[name="url"]',
:value => 'some host',
},
{
:execute => 'click',
:css => '.js-base .btn--primary',
},
{
:execute => 'watch_for',
:area => 'body',
:value => 'A URL looks like',
},
{
:execute => 'set',
:css => '.js-base input[name="url"]',
:value => 'http://localhost:3333',
},
{
:execute => 'click',
:css => '.js-base .btn--primary',
},
{
:execute => 'watch_for',
:area => 'body',
:value => 'channel',
},
{
:execute => 'check',
:element => :url,
:result => '#getting_started/channel',
},
],
},
# create email account
{
:name => 'getting started - base',
:action => [
{
:execute => 'match',
:css => '.js-channel h2',
:value => 'Connect Channels',
:match_result => true,
},
{
:execute => 'click',
:css => '.js-channel .email .provider_name',
},
{
:execute => 'set',
:css => '.js-intro input[name="realname"]',
:value => 'Some Realname',
},
{
:execute => 'set',
:css => '.js-intro input[name="email"]',
2014-11-18 21:09:01 +00:00
:value => mailbox_user,
2014-11-16 23:46:39 +00:00
},
{
:execute => 'set',
:css => '.js-intro input[name="password"]',
2014-11-18 21:09:01 +00:00
:value => mailbox_password,
2014-11-16 23:46:39 +00:00
},
{
:execute => 'click',
:css => '.js-intro .btn--primary',
},
{
:execute => 'watch_for',
:area => 'body',
:value => 'verify',
2014-11-18 21:09:01 +00:00
:timeout => 70,
2014-11-16 23:46:39 +00:00
},
{
:execute => 'watch_for',
:area => 'body',
:value => 'invite',
2014-11-18 21:09:01 +00:00
:timeout => 60,
2014-11-16 23:46:39 +00:00
},
{
:execute => 'check',
:element => :url,
:result => '#getting_started/agents',
},
],
},
# invite agent1
2013-04-21 23:03:19 +00:00
{
:name => 'getting started - agent 1',
:action => [
{
:execute => 'match',
:css => 'body',
2014-11-16 23:46:39 +00:00
:value => 'Invite',
2013-04-21 23:03:19 +00:00
:match_result => true,
},
{
:execute => 'set',
2014-11-16 23:46:39 +00:00
:css => '.js-agent input[name="firstname"]',
2013-04-21 23:03:19 +00:00
:value => 'Agent 1',
},
{
:execute => 'set',
2014-11-16 23:46:39 +00:00
:css => '.js-agent input[name="lastname"]',
2013-04-21 23:03:19 +00:00
:value => 'Test',
},
{
:execute => 'set',
2014-11-16 23:46:39 +00:00
:css => '.js-agent input[name="email"]',
2013-04-21 23:03:19 +00:00
:value => 'agent1@example.com',
},
{
:execute => 'click',
2014-11-16 23:46:39 +00:00
:css => '.js-agent input[name="group_ids"][value="1"]',
2013-04-21 23:03:19 +00:00
},
{
:execute => 'click',
2014-11-16 23:46:39 +00:00
:css => '.js-agent .btn--success',
2013-04-21 23:03:19 +00:00
},
{
2013-08-27 21:05:33 +00:00
:execute => 'watch_for',
:area => 'body',
:value => 'Invitation sent',
2013-04-21 23:03:19 +00:00
},
2013-08-27 21:26:43 +00:00
{
:execute => 'check',
:element => :url,
2014-11-16 23:46:39 +00:00
:result => '#getting_started/agents',
2013-08-27 21:26:43 +00:00
},
{
2014-11-16 23:46:39 +00:00
:execute => 'click',
:css => '.js-agent .btn--primary',
},
{
:execute => 'watch_for',
:area => 'body',
2014-11-16 23:49:01 +00:00
:value => 'My Stats',
2014-11-16 23:46:39 +00:00
},
{
:execute => 'check',
:element => :url,
:result => '#dashboard',
},
],
},
]
browser_single_test(tests)
end
2014-11-18 21:09:01 +00:00
def test_b_accounts_auto
2014-12-02 23:55:51 +00:00
return # TODO: temp disable
2014-11-18 21:09:01 +00:00
if !ENV['MAILBOX_AUTO1']
raise "Need MAILBOX_AUTO1 as ENV variable like export MAILBOX_AUTO1='nicole.braun2015@gmail.com:somepass'"
end
mailbox_user = ENV['MAILBOX_AUTO1'].split(':')[0]
mailbox_password = ENV['MAILBOX_AUTO1'].split(':')[1]
accounts = [
{
:realname => 'gmail',
:email => mailbox_user,
:password => mailbox_password,
},
]
accounts.each {|account|
tests = [
{
:name => 'getting started - auto mail',
:action => [
{
:execute => 'navigate',
:to => browser_url + '/#getting_started/channel',
},
{
:execute => 'click',
:css => '.js-channel .email .provider_name',
},
{
:execute => 'set',
:css => '.js-intro input[name="realname"]',
:value => account[:realname],
},
{
:execute => 'set',
:css => '.js-intro input[name="email"]',
:value => account[:email],
},
{
:execute => 'set',
:css => '.js-intro input[name="password"]',
:value => account[:password],
},
{
:execute => 'click',
:css => '.js-intro .btn--primary',
},
{
:execute => 'watch_for',
:area => 'body',
:value => 'verify',
:timeout => 80,
},
{
:execute => 'watch_for',
:area => 'body',
:value => 'invite',
},
{
:execute => 'check',
:element => :url,
:result => '#getting_started/agents',
},
],
},
]
browser_signle_test_with_login(tests, { :username => 'master@example.com' })
}
end
def test_b_accounts_manual
2014-12-02 12:23:22 +00:00
return # TODO: temp disable
2014-11-18 21:09:01 +00:00
if !ENV['MAILBOX_MANUAL1']
raise "Need MAILBOX_AUTO1 as ENV variable like export MAILBOX_MANUAL1='nicole.bauer2015@yahoo.de:somepass:imap.mail.yahoo.com:smtp.mail.yahoo.com'"
end
mailbox_user = ENV['MAILBOX_MANUAL1'].split(':')[0]
mailbox_password = ENV['MAILBOX_MANUAL1'].split(':')[1]
mailbox_inbound = ENV['MAILBOX_MANUAL1'].split(':')[2]
mailbox_outbound = ENV['MAILBOX_MANUAL1'].split(':')[3]
accounts = [
{
:realname => 'yahoo',
:email => mailbox_user,
:password => mailbox_password,
:inbound => {
'options::host' => mailbox_inbound,
},
:outbound => {
'options::host' => mailbox_outbound,
},
},
]
accounts.each {|account|
tests = [
{
:name => 'getting started - manual mail',
:action => [
{
:execute => 'navigate',
:to => browser_url + '/#getting_started/channel',
},
{
:execute => 'click',
:css => '.js-channel .email .provider_name',
},
{
:execute => 'set',
:css => '.js-intro input[name="realname"]',
:value => account[:realname],
},
{
:execute => 'set',
:css => '.js-intro input[name="email"]',
:value => account[:email],
},
{
:execute => 'set',
:css => '.js-intro input[name="password"]',
:value => account[:password],
},
{
:execute => 'click',
:css => '.js-intro .btn--primary',
},
{
:execute => 'watch_for',
:area => '.js-inbound h2',
:value => 'inbound',
:timeout => 220,
},
{
:execute => 'watch_for',
:area => '.js-inbound',
:value => 'manual',
},
{
:execute => 'set',
:css => '.js-inbound input[name="options::host"]',
:value => account[:inbound]['options::host'],
},
{
:execute => 'click',
:css => '.js-inbound .btn--primary',
},
{
:execute => 'watch_for',
:area => '.js-outbound h2',
:value => 'outbound',
},
{
:execute => 'select',
:css => '.js-outbound select[name="adapter"]',
:value => 'SMTP - configure your own outgoing SMTP settings',
},
{
:execute => 'set',
:css => '.js-outbound input[name="options::host"]',
:value => account[:outbound]['options::host'],
},
{
:execute => 'click',
:css => '.js-outbound .btn--primary',
},
{
:execute => 'watch_for',
:area => 'body',
:value => 'verify',
},
{
:execute => 'watch_for',
:area => 'body',
:value => 'invite',
:timeout => 190,
},
{
:execute => 'check',
:element => :url,
:result => '#getting_started/agents',
},
],
},
]
browser_signle_test_with_login(tests, { :username => 'master@example.com' })
}
end
2014-12-01 21:57:55 +00:00
end