X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2f06f0e4d5b9ef371463c65dd5cae19f5b385a17..b3a016e9a47d453b5ae4d287d8b6eaafd69971df:/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 203d08d500..6dd3c52696 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -1,7 +1,13 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'integration_helper' require_relative 'integration_test_utils' class CollectionsTest < ActionDispatch::IntegrationTest + include KeepWebConfig + setup do need_javascript end @@ -40,7 +46,7 @@ class CollectionsTest < ActionDispatch::IntegrationTest 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}") within "#sharing-button" do check_sharing(:on, download_link_re) @@ -49,10 +55,20 @@ 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'] + use_keep_web_config + + 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 @@ -72,12 +88,10 @@ class CollectionsTest < ActionDispatch::IntegrationTest link end end - assert_equal(['foo'], hrefs.compact.sort, + 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 + click_link "foo" + assert_text "foo\nfile\n" end test "combine selected collections into new collection" do @@ -89,11 +103,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 @@ -379,8 +393,10 @@ class CollectionsTest < ActionDispatch::IntegrationTest assert_selector 'a[data-toggle="disabled"]', text: 'Upload' within('.collection_files') do - assert_equal true, page.all('.btn-collection-file-rename')[0]['class'].include?('disabled') - assert_equal true, page.all('.btn-collection-file-remove')[0]['class'].include?('disabled') + 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 @@ -396,8 +412,10 @@ class CollectionsTest < ActionDispatch::IntegrationTest assert_selector 'a', text: 'Upload' within('.collection_files') do - assert_equal false, page.all('.btn-collection-file-rename')[0]['class'].include?('disabled') - assert_equal false, page.all('.btn-collection-file-remove')[0]['class'].include?('disabled') + 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