X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/40f063c4f6aa35c641650c80751392292e151acb..ae92d144610446849eb568247a44f02ae985c281:/apps/workbench/test/integration_helper.rb diff --git a/apps/workbench/test/integration_helper.rb b/apps/workbench/test/integration_helper.rb index 74072caaad..7209f2b6c9 100644 --- a/apps/workbench/test/integration_helper.rb +++ b/apps/workbench/test/integration_helper.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' require 'capybara/rails' require 'capybara/poltergeist' @@ -5,16 +9,29 @@ require 'uri' require 'yaml' def available_port for_what - Addrinfo.tcp("0.0.0.0", 0).listen do |srv| - port = srv.connect_address.ip_port - STDERR.puts "Using port #{port} for #{for_what}" - return port + begin + Addrinfo.tcp("0.0.0.0", 0).listen do |srv| + port = srv.connect_address.ip_port + # Selenium needs an additional locking port, check if it's available + # and retry if necessary. + if for_what == 'selenium' + locking_port = port - 1 + Addrinfo.tcp("0.0.0.0", locking_port).listen.close + end + STDERR.puts "Using port #{port} for #{for_what}" + return port + end + rescue Errno::EADDRINUSE, Errno::EACCES + retry end end def selenium_opts { port: available_port('selenium'), + desired_capabilities: Selenium::WebDriver::Remote::Capabilities.firefox( + acceptInsecureCerts: true, + ), } end @@ -34,6 +51,11 @@ Capybara.register_driver :poltergeist_debug do |app| Capybara::Poltergeist::Driver.new app, poltergeist_opts.merge(inspector: true) end +Capybara.register_driver :poltergeist_with_fake_websocket do |app| + js = File.expand_path '../support/fake_websocket.js', __FILE__ + Capybara::Poltergeist::Driver.new app, poltergeist_opts.merge(extensions: [js]) +end + Capybara.register_driver :poltergeist_without_file_api do |app| js = File.expand_path '../support/remove_file_api.js', __FILE__ Capybara::Poltergeist::Driver.new app, poltergeist_opts.merge(extensions: [js]) @@ -56,16 +78,24 @@ Capybara.register_driver :selenium_with_download do |app| end module WaitForAjax - Capybara.default_max_wait_time = 5 + # FIXME: Huge side effect here + # The following line changes the global default Capybara wait time, affecting + # every test which follows this one. This should be removed and the failing tests + # should have their individual wait times increased, if appropriate, using + # the using_wait_time(N) construct to temporarily change the wait time. + # Note: the below is especially bad because there are places that increase wait + # times using a multiplier e.g. using_wait_time(3 * Capybara.default_max_wait_time) + Capybara.default_max_wait_time = 10 def wait_for_ajax - Timeout.timeout(Capybara.default_max_wait_time) do - loop until finished_all_ajax_requests? + timeout = 10 + count = 0 + while page.evaluate_script("jQuery.active").to_i > 0 + count += 1 + raise "AJAX request took more than #{timeout} seconds" if count > timeout * 10 + sleep(0.1) end end - def finished_all_ajax_requests? - page.evaluate_script('jQuery.active').zero? - end end module AssertDomEvent @@ -73,14 +103,14 @@ module AssertDomEvent # DOM element. def assert_triggers_dom_event events, target='body' magic = 'received-dom-event-' + rand(2**30).to_s(36) - page.evaluate_script <