X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0662b235357dd40b5d27efd06b60044ddcec06f6..d104886f95ab9bf0712873c809410b34f8bed031:/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 8190b35f00..4d6489d4aa 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'integration_helper' require_relative 'integration_test_utils' @@ -37,11 +41,19 @@ class CollectionsTest < ActionDispatch::IntegrationTest send(link_assertion, all("a").select { |a| a[:href] =~ link_regexp }) end + test "Hides sharing link button when configured to do so" do + Rails.configuration.Workbench.DisableSharingURLsUI = true + coll_uuid = api_fixture("collections", "collection_owned_by_active", "uuid") + visit page_with_token("active_trustedclient", "/collections/#{coll_uuid}") + assert_no_selector 'div#sharing-button' + end + test "creating and uncreating a sharing link" do coll_uuid = api_fixture("collections", "collection_owned_by_active", "uuid") download_link_re = - Regexp.new(Regexp.escape("/collections/download/#{coll_uuid}/")) + Regexp.new(Regexp.escape("/c=#{coll_uuid}/")) visit page_with_token("active_trustedclient", "/collections/#{coll_uuid}") + assert_selector 'div#sharing-button' within "#sharing-button" do check_sharing(:on, download_link_re) check_sharing(:off, download_link_re) @@ -49,35 +61,35 @@ class CollectionsTest < ActionDispatch::IntegrationTest end test "can download an entire collection with a reader token" do - Capybara.current_driver = :rack_test - CollectionsController.any_instance. - stubs(:file_enumerator).returns(["foo\n", "file\n"]) - uuid = api_fixture('collections')['foo_file']['uuid'] + need_selenium "phantomjs does not follow redirects reliably, maybe https://github.com/ariya/phantomjs/issues/10389" + + token = api_token('active') + data = "foo\nfile\n" + datablock = `echo -n #{data.shellescape} | ARVADOS_API_TOKEN=#{token.shellescape} arv-put --no-progress --raw -`.strip + assert $?.success?, $? + + col = nil + use_token 'active' do + mtxt = ". #{datablock} 0:#{data.length}:foo\n" + col = Collection.create(manifest_text: mtxt) + end + + uuid = col.uuid 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") - within "#collection_files" do - click_link "foo" - assert_equal("foo\nfile\n", page.html) - end + 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 test "combine selected collections into new collection" do @@ -89,11 +101,11 @@ class CollectionsTest < ActionDispatch::IntegrationTest assert(page.has_text?(foo_collection['uuid']), "Collection page did not include foo file") assert(page.has_text?(bar_collection['uuid']), "Collection page did not include bar file") - within('tr', text: foo_collection['uuid']) do + within "tr[data-object-uuid=\"#{foo_collection['uuid']}\"]" do find('input[type=checkbox]').click end - within('tr', text: bar_collection['uuid']) do + within "tr[data-object-uuid=\"#{bar_collection['uuid']}\"]" do find('input[type=checkbox]').click end @@ -298,4 +310,126 @@ class CollectionsTest < ActionDispatch::IntegrationTest # Make sure we're not still on the old collection page. refute_match(%r{/collections/#{col['uuid']}}, page.current_url) end + + test "remove a file from collection using checkbox and dropdown option" do + need_selenium 'to confirm unlock' + + visit page_with_token('active', '/collections/zzzzz-4zz18-a21ux3541sxa8sf') + assert(page.has_text?('file1'), 'file not found - file1') + + unlock_collection + + # remove first file + input_files = page.all('input[type=checkbox]') + input_files[0].click + + click_button 'Selection...' + within('.selection-action-container') do + click_link 'Remove selected files' + end + + assert(page.has_no_text?('file1'), 'file found - file') + assert(page.has_text?('file2'), 'file not found - file2') + end + + test "remove a file in collection using trash icon" do + need_selenium 'to confirm unlock' + + visit page_with_token('active', '/collections/zzzzz-4zz18-a21ux3541sxa8sf') + assert(page.has_text?('file1'), 'file not found - file1') + + unlock_collection + + first('.fa-trash-o').click + accept_alert + + assert(page.has_no_text?('file1'), 'file found - file') + assert(page.has_text?('file2'), 'file not found - file2') + end + + test "rename a file in collection" do + need_selenium 'to confirm unlock' + + visit page_with_token('active', '/collections/zzzzz-4zz18-a21ux3541sxa8sf') + + unlock_collection + + within('.collection_files') do + first('.fa-pencil').click + find('.editable-input input').set('file1renamed') + find('.editable-submit').click + end + + assert(page.has_text?('file1renamed'), 'file not found - file1renamed') + end + + test "remove/rename file options not presented if user cannot update a collection" do + # visit a publicly accessible collection as 'spectator' + visit page_with_token('spectator', '/collections/zzzzz-4zz18-uukreo9rbgwsujr') + + click_button 'Selection' + within('.selection-action-container') do + assert_selector 'li', text: 'Create new collection with selected files' + assert_no_selector 'li', text: 'Remove selected files' + end + + within('.collection_files') do + assert(page.has_text?('GNU_General_Public_License'), 'file not found - GNU_General_Public_License') + assert_nil first('.fa-pencil') + assert_nil first('.fa-trash-o') + end + end + + test "unlock collection to modify files" do + need_selenium 'to confirm remove' + + collection = api_fixture('collections')['collection_owned_by_active'] + + # On load, collection is locked, and upload tab, rename and remove options are disabled + visit page_with_token('active', "/collections/#{collection['uuid']}") + + assert_selector 'a[data-toggle="disabled"]', text: 'Upload' + + within('.collection_files') do + file_ctrls = page.all('.btn-collection-file-control') + assert_equal 2, file_ctrls.size + assert_equal true, file_ctrls[0]['class'].include?('disabled') + assert_equal true, file_ctrls[1]['class'].include?('disabled') + find('input[type=checkbox]').click + end + + click_button 'Selection' + within('.selection-action-container') do + assert_selector 'li.disabled', text: 'Remove selected files' + assert_selector 'li', text: 'Create new collection with selected files' + end + + unlock_collection + + assert_no_selector 'a[data-toggle="disabled"]', text: 'Upload' + assert_selector 'a', text: 'Upload' + + within('.collection_files') do + file_ctrls = page.all('.btn-collection-file-control') + assert_equal 2, file_ctrls.size + assert_equal false, file_ctrls[0]['class'].include?('disabled') + assert_equal false, file_ctrls[1]['class'].include?('disabled') + + # previous checkbox selection won't result in firing a new event; + # undo and redo checkbox to fire the selection event again + find('input[type=checkbox]').click + find('input[type=checkbox]').click + end + + click_button 'Selection' + within('.selection-action-container') do + assert_no_selector 'li.disabled', text: 'Remove selected files' + assert_selector 'li', text: 'Remove selected files' + end + end + + def unlock_collection + first('.lock-collection-btn').click + accept_alert + end end