X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3ca013aedeae5b2085b8fb37ca80501117f0f918..2b6948ff7e11cd236ea26562ed76a534dcf3c0be:/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 726c20a9a9..625e4819ec 100644 --- a/apps/workbench/test/integration/collections_test.rb +++ b/apps/workbench/test/integration/collections_test.rb @@ -175,4 +175,29 @@ class CollectionsTest < ActionDispatch::IntegrationTest headless.stop end + + test "Collection portable data hash redirect" do + di = api_fixture('collections')['docker_image'] + visit page_with_token('active', "/collections/#{di['portable_data_hash']}") + + # check redirection + assert current_path.end_with?("/collections/#{di['uuid']}") + assert page.has_text?("docker_image") + assert page.has_text?("Activity") + assert page.has_text?("Sharing and permissions") + end + + test "Collection portable data hash with multiple matches" do + pdh = api_fixture('collections')['baz_file']['portable_data_hash'] + visit page_with_token('admin', "/collections/#{pdh}") + + matches = api_fixture('collections').select {|k,v| v["portable_data_hash"] == pdh} + assert matches.size > 1 + + matches.each do |k,v| + assert page.has_link?(v["name"]), "Page /collections/#{pdh} should contain link '#{v['name']}'" + end + assert page.has_no_text?("Activity") + assert page.has_no_text?("Sharing and permissions") + end end