2016-01-13 09:29:41 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'browser_test_helper'
|
|
|
|
|
|
|
|
class OtrsImportBrowserTest < TestCase
|
|
|
|
def test_import
|
2016-01-13 12:07:23 +00:00
|
|
|
|
|
|
|
if !ENV['IMPORT_BT_OTRS_ENDPOINT']
|
|
|
|
fail "ERROR: Need IMPORT_BT_OTRS_ENDPOINT - hint IMPORT_BT_OTRS_ENDPOINT='http://vz305.demo.znuny.com/otrs/public.pl?Action=ZammadMigrator'"
|
|
|
|
end
|
|
|
|
if !ENV['IMPORT_BT_OTRS_ENDPOINT_KEY']
|
|
|
|
fail "ERROR: Need IMPORT_BT_OTRS_ENDPOINT_KEY - hint IMPORT_BT_OTRS_ENDPOINT_KEY='01234567899876543210'"
|
|
|
|
end
|
|
|
|
|
2016-01-13 09:29:41 +00:00
|
|
|
@browser = browser_instance
|
|
|
|
location(url: browser_url)
|
|
|
|
|
2016-01-13 12:07:23 +00:00
|
|
|
click(css: 'a[href="#import"]')
|
|
|
|
|
|
|
|
click(css: 'a[href="#import/otrs"]')
|
|
|
|
|
2016-01-13 16:33:08 +00:00
|
|
|
click(css: '.js-download')
|
2016-01-13 15:59:26 +00:00
|
|
|
|
2016-01-13 16:33:08 +00:00
|
|
|
click(css: '.js-otrs-link')
|
2016-01-13 15:59:26 +00:00
|
|
|
|
2016-01-13 17:00:43 +00:00
|
|
|
invalid_key_url = "#{ENV['IMPORT_BT_OTRS_ENDPOINT']};Key=31337"
|
|
|
|
|
|
|
|
set(
|
|
|
|
css: '#otrs-link',
|
|
|
|
value: invalid_key_url
|
|
|
|
)
|
|
|
|
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
watch_for(
|
|
|
|
css: '.otrs-link-error',
|
|
|
|
value: 'Invalid API key.',
|
|
|
|
)
|
|
|
|
|
|
|
|
import_url = "#{ENV['IMPORT_BT_OTRS_ENDPOINT']};Key=#{ENV['IMPORT_BT_OTRS_ENDPOINT_KEY']}"
|
2016-01-13 12:07:23 +00:00
|
|
|
set(
|
|
|
|
css: '#otrs-link',
|
|
|
|
value: import_url
|
|
|
|
)
|
|
|
|
|
2016-01-13 17:00:43 +00:00
|
|
|
sleep 5
|
|
|
|
|
|
|
|
watch_for_disappear(
|
|
|
|
css: '.otrs-link-error',
|
|
|
|
value: 'Invalid API key.',
|
2016-01-13 15:59:26 +00:00
|
|
|
)
|
|
|
|
|
2016-01-13 16:33:08 +00:00
|
|
|
click(css: '.js-migration-start')
|
2016-01-13 15:59:26 +00:00
|
|
|
|
2016-01-13 09:29:41 +00:00
|
|
|
watch_for(
|
|
|
|
css: 'body',
|
2016-01-13 16:33:08 +00:00
|
|
|
value: 'login',
|
|
|
|
timeout: 300,
|
2016-01-13 09:29:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|