X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8c4233dae52c96ceb629d2be1be73b518118863a..37a349fc026e4559072e5b53c8855be42bf91dcd:/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 a5ce8fd3eb..f62f28534b 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -3,6 +3,27 @@ require 'selenium-webdriver' require 'headless' class CollectionsTest < ActionDispatch::IntegrationTest + setup do + Capybara.current_driver = :rack_test + end + + test "Can copy a collection to a project" do + Capybara.current_driver = Capybara.javascript_driver + + 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 name" do uuid = api_fixture('collections')['foo_file']['uuid'] coll_name = api_fixture('collections')['foo_file']['name'] @@ -14,8 +35,6 @@ class CollectionsTest < ActionDispatch::IntegrationTest end test "can download an entire collection with a reader token" do - Capybara.current_driver = :rack_test - uuid = api_fixture('collections')['foo_file']['uuid'] token = api_fixture('api_client_authorizations')['active_all_collections']['api_token'] url_head = "/collections/download/#{uuid}/#{token}/" @@ -48,56 +67,84 @@ class CollectionsTest < ActionDispatch::IntegrationTest end test "combine selected collections into new collection" do - foo_collection_uuid = api_fixture('collections')['foo_file']['uuid'] - bar_collection_uuid = api_fixture('collections')['bar_file']['uuid'] + 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") + 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', text: foo_collection['uuid']) do find('input[type=checkbox]').click end - within('tr', text: bar_collection_uuid) do + within('tr', text: bar_collection['uuid']) do find('input[type=checkbox]').click end click_button 'Selection...' within('.selection-action-container') do - click_link 'Combine selections into a new collection' + click_link 'Create new collection with selected collections' end - # back in collections page - 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") + # 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") + assert(page.has_text?('Created new collection in your Home project'), + 'Not found flash message that new collection is created in Home project') + headless.stop end - test "combine selected collection contents into new collection" do - foo_collection = api_fixture('collections')['foo_file'] - # bar_collection = api_fixture('collections')['bar_file'] - # pdh_collection = api_fixture('collections')['multilevel_collection_1'] + [ + ['active', 'foo_file', false], + ['active', 'foo_collection_in_aproject', true], + ['project_viewer', 'foo_file', false], + ['project_viewer', 'foo_collection_in_aproject', false], #aproject not writable + ].each do |user, collection, expect_collection_in_aproject| + test "combine selected collection files into new collection #{user} #{collection} #{expect_collection_in_aproject}" do + headless = Headless.new + headless.start + Capybara.current_driver = :selenium - visit page_with_token('active', "/collections") + my_collection = api_fixture('collections')[collection] - # choose file from foo collection - within('tr', text: foo_collection['uuid']) do - click_link 'Show' - end + visit page_with_token(user, "/collections") + + # choose file from foo collection + within('tr', text: my_collection['uuid']) do + click_link 'Show' + end - # now in collection page - within('tr', text: foo_collection['name'].split('_')[0]) do + # now in collection page find('input[type=checkbox]').click - end - click_button 'Selection...' - within('.selection-action-container') do - click_link 'Combine selections into a new collection' - end + click_button 'Selection...' + within('.selection-action-container') do + click_link 'Create new collection with selected files' + end - # go back to collections page - visit page_with_token('active', "/collections") - assert(page.has_text?('sdfsdfsdfsdfsdfsdfsdf'), "Collection page did not include foo file link") + # 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?(my_collection['name']), "Collection page did not include foo file") + assert(page.has_text?('foo'), "Collection page did not include foo file") + if expect_collection_in_aproject + aproject = api_fixture('groups')['aproject'] + assert page.has_text?("Created new collection in the project #{aproject['name']}"), + 'Not found flash message that new collection is created in aproject' + else + assert page.has_text?("Created new collection in your Home project"), + 'Not found flash message that new collection is created in Home project' + end + + headless.stop + end end end