X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f900ccf514a3653a64002fe07d9ce5b16adcfd51..563f568124876cc8577baec11caf33e73466b975:/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 4a33693018..562e2d32c3 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -3,7 +3,6 @@ require 'selenium-webdriver' require 'headless' class CollectionsTest < ActionDispatch::IntegrationTest - def change_persist oldstate, newstate find "div[data-persistent-state='#{oldstate}']" page.assert_no_selector "div[data-persistent-state='#{newstate}']" @@ -14,7 +13,7 @@ class CollectionsTest < ActionDispatch::IntegrationTest page.assert_no_selector "div[data-persistent-state='#{oldstate}']" end - ['/collections', '/'].each do |path| + ['/collections', '/users/welcome'].each do |path| test "Flip persistent switch at #{path}" do Capybara.current_driver = Capybara.javascript_driver uuid = api_fixture('collections')['foo_file']['uuid'] @@ -48,4 +47,30 @@ class CollectionsTest < ActionDispatch::IntegrationTest # isn't only showing up in an error message. assert(page.has_link?('foo'), "Collection page did not include file link") end + + test "can download an entire collection with a reader token" do + uuid = api_fixture('collections')['foo_file']['uuid'] + token = api_fixture('api_client_authorizations')['active_all_collections']['api_token'] + url_head = "/collections/download/#{uuid}/#{token}/" + visit url_head + # 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") + # TODO: When we can test against a Keep server, actually follow links + # and check their contents, rather than testing the href directly + # (this is too closely tied to implementation details). + 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") + end end