X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e74ede4659428af77c50057d69a0d08e4e74a6ef..4ff61dd25a70e6467bbafeaaf794cc381f684384:/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 8657aaa0e4..fae2969916 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -3,46 +3,31 @@ 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}']" - 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}']" - page.assert_no_selector "div[data-persistent-state='#{oldstate}']" + setup do + Capybara.current_driver = :rack_test end - ['/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'] - visit page_with_token('active', path) - within "tr[data-object-uuid='#{uuid}']" do - change_persist 'cache', 'persistent' - end - # Refresh page and make sure the change was committed. - visit current_path - within "tr[data-object-uuid='#{uuid}']" do - change_persist 'persistent', 'cache' - end - end - end - - test 'Flip persistent switch on collection#show' do + test "Can copy a collection to a project" do Capybara.current_driver = Capybara.javascript_driver - uuid = api_fixture('collections')['foo_file']['uuid'] - visit page_with_token('active', "/collections/#{uuid}") - change_persist 'cache', 'persistent' - visit current_path - change_persist 'persistent', 'cache' + + collection_uuid = api_fixture('collections')['foo_file']['uuid'] + collection_name = api_fixture('collections')['foo_file']['name'] + project_uuid = api_fixture('groups')['aproject']['uuid'] + project_name = api_fixture('groups')['aproject']['name'] + visit page_with_token('active', "/collections/#{collection_uuid}") + click_link 'Copy to project...' + find('.selectable', text: project_name).click + find('.modal-footer a,button', text: 'Copy').click + wait_for_ajax + # It should navigate to the project after copying... + assert(page.has_text?(project_name)) + assert(page.has_text?("Copy of #{collection_name}")) end - test "Collection page renders default name links" do + test "Collection page renders name" do uuid = api_fixture('collections')['foo_file']['uuid'] - coll_name = api_fixture('links')['foo_collection_name_in_aproject']['name'] - name_uuid = api_fixture('links')['foo_collection_name_in_aproject']['uuid'] - visit page_with_token('active', "/collections/#{name_uuid}") + coll_name = api_fixture('collections')['foo_file']['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. @@ -80,4 +65,70 @@ class CollectionsTest < ActionDispatch::IntegrationTest visit page_with_token('active', "/collections/#{uuid}") assert page.has_text?('This collection is empty') end + + test "combine selected collections into new collection" do + headless = Headless.new + headless.start + Capybara.current_driver = :selenium + + foo_collection = api_fixture('collections')['foo_file'] + bar_collection = api_fixture('collections')['bar_file'] + + visit page_with_token('active', "/collections") + + 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 + find('input[type=checkbox]').click + end + + within('tr', text: bar_collection['uuid']) do + find('input[type=checkbox]').click + end + + click_button 'Selection...' + within('.selection-action-container') do + click_link 'Create new collection with selected collections' + end + + # now in the newly created collection page + assert(page.has_text?('Copy to project'), "Copy to project text not found in new collection page") + assert(page.has_no_text?(foo_collection['name']), "Collection page did not include foo file") + assert(page.has_text?('foo'), "Collection page did not include foo file") + assert(page.has_no_text?(bar_collection['name']), "Collection page did not include foo file") + assert(page.has_text?('bar'), "Collection page did not include bar file") + + headless.stop + end + + test "combine selected collection files into new collection" do + headless = Headless.new + headless.start + Capybara.current_driver = :selenium + + foo_collection = api_fixture('collections')['foo_file'] + + visit page_with_token('active', "/collections") + + # choose file from foo collection + within('tr', text: foo_collection['uuid']) do + click_link 'Show' + end + + # now in collection page + find('input[type=checkbox]').click + + click_button 'Selection...' + within('.selection-action-container') do + click_link 'Create new collection with selected files' + end + + # now in the newly created collection page + assert(page.has_text?('Copy to project'), "Copy to project text not found in new collection page") + assert(page.has_no_text?(foo_collection['name']), "Collection page did not include foo file") + assert(page.has_text?('foo'), "Collection page did not include foo file") + + headless.stop + end end