X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/dbdd94518d916b89f8e3a3fa0901da21a2493962..7afe2c73ccdaad21b2d36b345a1627c1ad3f51a1:/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..9f31ef9486 100644 --- a/apps/workbench/test/integration/anonymous_access_test.rb +++ b/apps/workbench/test/integration/anonymous_access_test.rb @@ -243,9 +243,11 @@ 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, 'spectator'], ].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 +266,24 @@ 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'] + if user + assert_text "One or more inputs provided are not readable" + assert_selector "input[type=text][value=#{object['components']['foo']['script_parameters']['input']['value']}]" + assert_selector 'a.disabled', text: 'Run' + else + assert_no_text "One or more inputs provided are not readable" + assert_text object['components']['foo']['script_parameters']['input']['value'] + assert_no_selector 'a', text: 'Run' + end end end end