X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/23c44c899b783a784bd9c60e3efda63cab2f6cc8..f8e6cb30ca6a3cdb20be47f7a81663d4affd0b7f:/apps/workbench/test/integration/anonymous_access_test.rb diff --git a/apps/workbench/test/integration/anonymous_access_test.rb b/apps/workbench/test/integration/anonymous_access_test.rb index dedcd4c112..1b187e7b05 100644 --- a/apps/workbench/test/integration/anonymous_access_test.rb +++ b/apps/workbench/test/integration/anonymous_access_test.rb @@ -227,7 +227,6 @@ class AnonymousAccessTest < ActionDispatch::IntegrationTest end assert_text 'Output data not available' assert_text object['job'] - assert_selector 'a[href="#Log"]', text: 'Log' assert_selector 'a[data-toggle="disabled"]', text: 'Log' end @@ -244,9 +243,13 @@ class AnonymousAccessTest < ActionDispatch::IntegrationTest [ ['new_pipeline_in_publicly_accessible_project', true], + ['new_pipeline_in_publicly_accessible_project', true, 'spectator'], ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false], ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false, 'spectator'], ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', true, 'admin'], + ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', false], + ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', false, 'spectator'], + ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', true, 'admin'], ].each do |fixture, objects_readable, user=nil| test "access #{fixture} in public project with objects readable=#{objects_readable} with user #{user}" do object = api_fixture('pipeline_instances')[fixture] @@ -265,13 +268,26 @@ class AnonymousAccessTest < ActionDispatch::IntegrationTest if user == 'admin' assert_text 'input' assert_selector 'a', text: 'Choose' + assert_selector 'a', text: 'Run' + assert_no_selector 'a.disabled', text: 'Run' else assert_selector 'a', text: object['components']['foo']['script_parameters']['input']['value'] + user ? (assert_selector 'a', text: 'Run') : (assert_no_selector 'a', text: 'Run') end else assert_no_text 'This pipeline was created from' # template is not readable - assert_text object['components']['foo']['script_parameters']['input']['value'] - assert_no_selector 'a', text: object['components']['foo']['script_parameters']['input']['value'] + input = object['components']['foo']['script_parameters']['input']['value'] + assert_no_selector 'a', text: input + if user + input = input.gsub('/', '\\/') + assert_text "One or more inputs provided are not readable" + assert_selector "input[type=text][value=#{input}]" + assert_selector 'a.disabled', text: 'Run' + else + assert_no_text "One or more inputs provided are not readable" + assert_text input + assert_no_selector 'a', text: 'Run' + end end end end