X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7b9cff04eb463c666b8126ebc6c4dfcc00a536c0..747aa7b4d080b4ea95bf7d6d8643c43e70966f33:/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 2eb10d619c..911daa02dc 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -3,18 +3,14 @@ require 'selenium-webdriver' require 'headless' class CollectionsTest < ActionDispatch::IntegrationTest - def change_persist oldstate, newstate find "div[data-persistent-state='#{oldstate}']" - assert_raises Capybara::ElementNotFound do - find "div[data-persistent-state='#{newstate}']" - end - find('label', text: newstate.capitalize).click - find 'label.active', text: newstate.capitalize + page.assert_no_selector "div[data-persistent-state='#{newstate}']" + find('.btn', text: oldstate.capitalize).click + find '.btn', text: newstate.capitalize + page.assert_no_selector '.btn', text: oldstate.capitalize find "div[data-persistent-state='#{newstate}']" - assert_raises Capybara::ElementNotFound do - find "div[data-persistent-state='#{oldstate}']" - end + page.assert_no_selector "div[data-persistent-state='#{oldstate}']" end ['/collections', '/'].each do |path| @@ -42,4 +38,39 @@ class CollectionsTest < ActionDispatch::IntegrationTest change_persist 'persistent', 'cache' end + test "Collection page renders default name links" do + uuid = api_fixture('collections')['foo_file']['uuid'] + coll_name = api_fixture('links')['foo_collection_name_in_afolder']['name'] + visit page_with_token('active', "/collections/#{uuid}") + assert(page.has_text?(coll_name), "Collection page did not include name") + # Now check that the page is otherwise normal, and the collection name + # 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