X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/58692c916bb6dfe2997838ca4147109d9410c86a..30436ed9a7bb17ebb3ccc9e6f9938c086917bd69:/apps/workbench/test/integration/download_test.rb diff --git a/apps/workbench/test/integration/download_test.rb b/apps/workbench/test/integration/download_test.rb index ed91ae0869..6ae9f29274 100644 --- a/apps/workbench/test/integration/download_test.rb +++ b/apps/workbench/test/integration/download_test.rb @@ -1,28 +1,27 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'integration_helper' require 'helpers/download_helper' class DownloadTest < ActionDispatch::IntegrationTest - def getport service - File.read(File.expand_path("../../../../../tmp/#{service}.port", __FILE__)) - end + @@wrote_test_data = false setup do - @kwport = getport 'keep-web-ssl' - @kwdport = getport 'keep-web-dl-ssl' - Rails.configuration.keep_web_url = "https://localhost:#{@kwport}/c=%{uuid_or_pdh}" - Rails.configuration.keep_web_download_url = "https://localhost:#{@kwdport}/c=%{uuid_or_pdh}" - CollectionsController.any_instance.expects(:file_enumerator).never - # Make sure Capybara can download files. need_selenium 'for downloading', :selenium_with_download DownloadHelper.clear # Keep data isn't populated by fixtures, so we have to write any # data we expect to read. - ['foo', 'w a z', "Hello world\n"].each do |data| - md5 = `echo -n #{data.shellescape} | arv-put --no-progress --raw -` - assert_match /^#{Digest::MD5.hexdigest(data)}/, md5 - assert $?.success?, $? + if !@@wrote_test_data + ['foo', 'w a z', "Hello world\n"].each do |data| + md5 = `echo -n #{data.shellescape} | arv-put --no-progress --raw -` + assert_match /^#{Digest::MD5.hexdigest(data)}/, md5 + assert $?.success?, $? + end + @@wrote_test_data = true end end @@ -31,7 +30,7 @@ class DownloadTest < ActionDispatch::IntegrationTest uuid_or_pdh = api_fixture('collections')['foo_file'][id_type] token = api_fixture('api_client_authorizations')['active_all_collections']['api_token'] visit "/collections/download/#{uuid_or_pdh}/#{token}/" - within "#collection_files" do + within 'ul' do click_link 'foo' end assert_no_selector 'a' @@ -39,7 +38,7 @@ class DownloadTest < ActionDispatch::IntegrationTest end test "preview anonymous content from keep-web by #{id_type}" do - Rails.configuration.anonymous_user_token = + Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token'] uuid_or_pdh = api_fixture('collections')['public_text_file'][id_type] @@ -52,7 +51,7 @@ class DownloadTest < ActionDispatch::IntegrationTest end test "download anonymous content from keep-web by #{id_type}" do - Rails.configuration.anonymous_user_token = + Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token'] uuid_or_pdh = api_fixture('collections')['public_text_file'][id_type] @@ -71,13 +70,13 @@ class DownloadTest < ActionDispatch::IntegrationTest within "#collection_files" do find('[title~=Download]').click end - wait_for_download 'w a z', 'w a z' + wait_for_download 'w a z', 'w a z', timeout: 20 end - def wait_for_download filename, expect_data + def wait_for_download filename, expect_data, timeout: 3 data = nil tries = 0 - while tries < 20 + while tries < timeout*10 && data != expect_data sleep 0.1 tries += 1 data = File.read(DownloadHelper.path.join filename) rescue nil