X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/823ef13277f4c5fe6711dc320bf9cd2f76492c2e..8c948701e887e96f05ffaf0adaec9da9f2533f72:/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 3d2767aecd..8b43e5dbe3 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -299,13 +299,15 @@ class CollectionsTest < ActionDispatch::IntegrationTest refute_match(%r{/collections/#{col['uuid']}}, page.current_url) end - test "remove selected collection files using checkboxes and dropdown option" do + 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') - assert(page.has_text?('file2'), 'file not found - file2') - # now in collection page - # remove first file from both subdirs + unlock_collection + + # remove first file input_files = page.all('input[type=checkbox]') input_files[0].click @@ -314,26 +316,108 @@ class CollectionsTest < ActionDispatch::IntegrationTest click_link 'Remove selected files' end - # now in the newly created collection page - assert(page.has_no_text?('file1'), 'file not found - file') + assert(page.has_no_text?('file1'), 'file found - file') assert(page.has_text?('file2'), 'file not found - file2') end - test "remove a collection file using trash icon" do - need_selenium 'to confirm remove' + 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') - assert(page.has_text?('file2'), 'file not found - file2') - # now in collection page + unlock_collection + first('.fa-trash-o').click - alert = page.driver.browser.switch_to.alert - alert.accept - wait_for_ajax + accept_alert - # now in the newly created collection page - assert(page.has_no_text?('file1'), 'file not found - file') + 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