X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/35ba053c83b7ad18e1a336d50d3a8d5a53adce9f..927524f1be454de021180b74999d682780b8cb6b:/apps/workbench/test/integration/collections_test.rb diff --git a/apps/workbench/test/integration/collections_test.rb b/apps/workbench/test/integration/collections_test.rb index 024a14605a..e7b27fff86 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -53,7 +53,7 @@ class CollectionsTest < ActionDispatch::IntegrationTest end test "can download an entire collection with a reader token" do - use_keep_web_config + need_selenium "phantomjs does not follow redirects reliably, maybe https://github.com/ariya/phantomjs/issues/10389" token = api_token('active') data = "foo\nfile\n" @@ -70,24 +70,16 @@ class CollectionsTest < ActionDispatch::IntegrationTest token = api_fixture('api_client_authorizations')['active_all_collections']['api_token'] url_head = "/collections/download/#{uuid}/#{token}/" visit url_head + assert_text "You can download individual files listed below" # It seems that Capybara can't inspect tags outside the body, so this is # a very blunt approach. assert_no_match(/<\s*meta[^>]+\bnofollow\b/i, page.html, "wget prohibited from recursing the collection page") # Look at all the links that wget would recurse through using our # recommended options, and check that it's exactly the file list. - hrefs = page.all('a').map do |anchor| - link = anchor[:href] || '' - if link.start_with? url_head - link[url_head.size .. -1] - elsif link.start_with? '/' - nil - else - link - end - end - assert_equal(['./foo'], hrefs.compact.sort, - "download page did provide strictly file links") + hrefs = [] + page.html.scan(/href="(.*?)"/) { |m| hrefs << m[0] } + assert_equal(['./foo'], hrefs, "download page did provide strictly file links") click_link "foo" assert_text "foo\nfile\n" end