Maintenance: After server change IPv6 is enabled on test host which will cause a different error to be thrown.

This commit is contained in:
Thorsten Eckel 2019-04-12 15:43:28 +02:00
parent cc33feee40
commit 9373a42944

View file

@ -168,10 +168,11 @@ class EmailHelperTest < ActiveSupport::TestCase
assert_equal('Hostname not found!', result[:message_human]) assert_equal('Hostname not found!', result[:message_human])
assert_equal('not_existsing_host', result[:settings][:options][:host]) assert_equal('not_existsing_host', result[:settings][:options][:host])
# try to access imap on host with blocked port to force a "Connection refused!" error
result = EmailHelper::Probe.inbound( result = EmailHelper::Probe.inbound(
adapter: 'imap', adapter: 'imap',
options: { options: {
host: 'www.znuny.com', host: 'no-imap-host.test.zammad.org',
port: 993, port: 993,
ssl: true, ssl: true,
user: 'some@example.com', user: 'some@example.com',
@ -180,7 +181,7 @@ class EmailHelperTest < ActiveSupport::TestCase
) )
assert_equal('invalid', result[:result]) assert_equal('invalid', result[:result])
assert_equal('Connection refused!', result[:message_human]) assert_equal('Connection refused!', result[:message_human])
assert_equal('www.znuny.com', result[:settings][:options][:host]) assert_equal('no-imap-host.test.zammad.org', result[:settings][:options][:host])
result = EmailHelper::Probe.inbound( result = EmailHelper::Probe.inbound(
adapter: 'imap', adapter: 'imap',
@ -306,11 +307,12 @@ class EmailHelperTest < ActiveSupport::TestCase
assert_equal('Hostname not found!', result[:message_human]) assert_equal('Hostname not found!', result[:message_human])
assert_equal('not_existsing_host', result[:settings][:options][:host]) assert_equal('not_existsing_host', result[:settings][:options][:host])
# try to access SMTP on host with blocked port to force a "Connection refused!" error
result = EmailHelper::Probe.outbound( result = EmailHelper::Probe.outbound(
{ {
adapter: 'smtp', adapter: 'smtp',
options: { options: {
host: 'www.znuny.com', host: 'no-imap-host.test.zammad.org',
port: 26, port: 26,
start_tls: true, start_tls: true,
user: 'some@example.com', user: 'some@example.com',
@ -321,7 +323,7 @@ class EmailHelperTest < ActiveSupport::TestCase
) )
assert_equal('invalid', result[:result]) assert_equal('invalid', result[:result])
assert_equal('Connection refused!', result[:message_human]) assert_equal('Connection refused!', result[:message_human])
assert_equal('www.znuny.com', result[:settings][:options][:host]) assert_equal('no-imap-host.test.zammad.org', result[:settings][:options][:host])
result = EmailHelper::Probe.outbound( result = EmailHelper::Probe.outbound(
{ {