X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e5658ecaa629572c5fe8e459f4f0630f28a4317f..dcf97f13fa730ba7af3fee9b6d7044592a30a2be:/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 e8917792ad..1b187e7b05 100644 --- a/apps/workbench/test/integration/anonymous_access_test.rb +++ b/apps/workbench/test/integration/anonymous_access_test.rb @@ -243,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] @@ -264,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