X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/32ca1dc4da9100a1a698d33a46c2919cf53fe606..f36fe36bd5e64b55b8699fae187c6accb678db2b:/apps/workbench/test/integration_helper.rb diff --git a/apps/workbench/test/integration_helper.rb b/apps/workbench/test/integration_helper.rb index 1784779664..ebfbc584e8 100644 --- a/apps/workbench/test/integration_helper.rb +++ b/apps/workbench/test/integration_helper.rb @@ -4,13 +4,32 @@ require 'capybara/poltergeist' require 'uri' require 'yaml' +module WaitForAjax + Capybara.default_wait_time = 5 + def wait_for_ajax + Timeout.timeout(Capybara.default_wait_time) do + loop until finished_all_ajax_requests? + end + end + + def finished_all_ajax_requests? + page.evaluate_script('jQuery.active').zero? + end +end + class ActionDispatch::IntegrationTest # Make the Capybara DSL available in all integration tests include Capybara::DSL include ApiFixtureLoader + include WaitForAjax @@API_AUTHS = self.api_fixture('api_client_authorizations') + def setup + reset_session! + super + end + def page_with_token(token, path='/') # Generate a page path with an embedded API token. # Typical usage: visit page_with_token('token_name', page) @@ -34,4 +53,20 @@ class ActionDispatch::IntegrationTest false end end + + @@screenshot_count = 0 + def screenshot + image_file = "./tmp/workbench-fail-#{@@screenshot_count += 1}.png" + page.save_screenshot image_file + puts "Saved #{image_file}" + end + + teardown do + if not passed? + screenshot + end + if Capybara.current_driver == :selenium + page.execute_script("window.localStorage.clear()") + end + end end