1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 require 'integration_helper'
7 class AnonymousAccessTest < ActionDispatch::IntegrationTest
8 # These tests don't do state-changing API calls. Save some time by
9 # skipping the database reset.
10 reset_api_fixtures :after_each_test, false
11 reset_api_fixtures :after_suite, true
15 Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token']
18 PUBLIC_PROJECT = "/projects/#{api_fixture('groups')['anonymously_accessible_project']['uuid']}"
20 def verify_site_navigation_anonymous_enabled user, is_active
23 assert_text 'Unrestricted public data'
24 assert_selector 'a', text: 'Projects'
25 page.find("#projects-menu").click
26 within('.dropdown-menu') do
27 assert_selector 'a', text: 'Search all projects'
28 assert_selector "a[href=\"/projects/public\"]", text: 'Browse public projects'
29 assert_selector 'a', text: 'Add a new project'
30 assert_selector 'li[class="dropdown-header"]', text: 'My projects'
33 assert_text 'indicate that you have read and accepted the user agreement'
35 within('.navbar-fixed-top') do
36 assert_selector 'a', text: Rails.configuration.Workbench.SiteName.downcase
37 assert(page.has_link?("notifications-menu"), 'no user menu')
38 page.find("#notifications-menu").click
39 within('.dropdown-menu') do
40 assert_selector 'a', text: 'Log out'
44 assert_text 'Unrestricted public data'
45 within('.navbar-fixed-top') do
46 assert_text Rails.configuration.Workbench.SiteName.downcase
47 assert_no_selector 'a', text: Rails.configuration.Workbench.SiteName.downcase
48 assert_selector 'a', text: 'Log in'
49 assert_selector 'a', text: 'Browse public projects'
55 [nil, nil, false, false],
56 ['inactive', api_fixture('users')['inactive'], false, false],
57 ['active', api_fixture('users')['active'], true, true],
58 ].each do |token, user, is_active|
59 test "visit public project as user #{token.inspect} when anonymous browsing is enabled" do
63 visit page_with_token(token, PUBLIC_PROJECT)
66 verify_site_navigation_anonymous_enabled user, is_active
70 test "selection actions when anonymous user accesses shared project" do
73 assert_selector 'a', text: 'Description'
74 assert_selector 'a', text: 'Data collections'
75 assert_selector 'a', text: 'Pipelines and processes'
76 assert_selector 'a', text: 'Pipeline templates'
77 assert_selector 'a', text: 'Subprojects'
78 assert_selector 'a', text: 'Advanced'
79 assert_no_selector 'a', text: 'Other objects'
80 assert_no_selector 'button', text: 'Add data'
82 click_link 'Data collections'
83 click_button 'Selection'
84 within('.selection-action-container') do
85 assert_selector 'li', text: 'Compare selected'
86 assert_no_selector 'li', text: 'Create new collection with selected collections'
87 assert_no_selector 'li', text: 'Copy selected'
88 assert_no_selector 'li', text: 'Move selected'
89 assert_no_selector 'li', text: 'Remove selected'
93 test "anonymous user accesses data collections tab in shared project" do
95 click_link 'Data collections'
96 collection = api_fixture('collections')['user_agreement_in_anonymously_accessible_project']
97 assert_text 'GNU General Public License'
99 assert_selector 'a', text: 'Data collections'
101 # click on show collection
102 within "tr[data-object-uuid=\"#{collection['uuid']}\"]" do
107 assert_no_selector 'input', text: 'Create sharing link'
108 assert_no_text 'Sharing and permissions'
109 assert_no_selector 'a', text: 'Upload'
110 assert_no_selector 'button', 'Selection'
112 within '#collection_files tr,li', text: 'GNU_General_Public_License,_version_3.pdf' do
113 assert page.has_no_selector?('[value*="GNU_General_Public_License"]')
114 find 'a[title~=View]'
115 find 'a[title~=Download]'
120 magic = rand(2**512).to_s 36
121 owner = api_fixture('groups')['anonymously_accessible_project']['uuid']
122 col = upload_data_and_get_collection(magic, 'admin', "Hello\\040world.txt", owner)
123 visit '/collections/' + col.uuid
124 find('tr,li', text: 'Hello world.txt').
125 find('a[title~=View]').click
130 'running anonymously accessible cr',
133 test "anonymous user accesses pipelines and processes tab in shared project and clicks on '#{proc}'" do
135 click_link 'Data collections'
136 assert_text 'GNU General Public License'
138 click_link 'Pipelines and processes'
139 assert_text 'Pipeline in publicly accessible project'
141 if proc.include? 'pipeline'
142 verify_pipeline_instance_row
144 verify_container_request_row proc
149 def verify_container_request_row look_for
150 within first('tr', text: look_for) do
153 assert_text 'Public Projects Unrestricted public data'
154 assert_text 'command'
156 assert_text 'zzzzz-tpzed-xurymjxw79nv3jz' # modified by user
157 assert_no_selector 'a', text: 'zzzzz-tpzed-xurymjxw79nv3jz'
158 assert_no_selector 'button', text: 'Cancel'
161 def verify_pipeline_instance_row
162 within first('tr[data-kind="arvados#pipelineInstance"]') do
163 assert_text 'Pipeline in publicly accessible project'
167 # in pipeline instance page
168 assert_text 'Public Projects Unrestricted public data'
169 assert_text 'This pipeline is complete'
170 assert_no_selector 'a', text: 'Re-run with latest'
171 assert_no_selector 'a', text: 'Re-run options'
178 test "anonymous user accesses pipeline templates tab in shared project and click on #{type}" do
180 click_link 'Data collections'
181 assert_text 'GNU General Public License'
183 assert_selector 'a', text: 'Pipeline templates'
185 click_link 'Pipeline templates'
186 assert_text 'Pipeline template in publicly accessible project'
187 assert_text 'Workflow with input specifications'
189 if type == 'pipelineTemplate'
190 within first('tr[data-kind="arvados#pipelineTemplate"]') do
195 assert_text 'Public Projects Unrestricted public data'
196 assert_text 'script version'
197 assert_no_selector 'a', text: 'Run this pipeline'
199 within first('tr[data-kind="arvados#workflow"]') do
204 assert_text 'Public Projects Unrestricted public data'
205 assert_text 'this workflow has inputs specified'
210 test "anonymous user accesses subprojects tab in shared project" do
211 visit PUBLIC_PROJECT + '#Subprojects'
213 assert_text 'Subproject in anonymous accessible project'
215 within first('tr[data-kind="arvados#group"]') do
220 assert_text 'Description for subproject in anonymous accessible project'
224 ['pipeline_in_publicly_accessible_project', true],
225 ['pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false],
226 ['pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false, 'spectator'],
227 ['pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', true, 'admin'],
229 ['completed_job_in_publicly_accessible_project', true],
230 ['running_job_in_publicly_accessible_project', true],
231 ['job_in_publicly_accessible_project_but_other_objects_elsewhere', false],
232 ].each do |fixture, objects_readable, user=nil|
233 test "access #{fixture} in public project with objects readable=#{objects_readable} with user #{user}" do
234 pipeline_page = true if fixture.include?('pipeline')
237 object = api_fixture('pipeline_instances')[fixture]
238 page_link = "/pipeline_instances/#{object['uuid']}"
239 expect_log_text = "Log for foo"
241 object = api_fixture('jobs')[fixture]
242 page_link = "/jobs/#{object['uuid']}"
243 expect_log_text = "stderr crunchstat"
247 visit page_with_token user, page_link
252 # click job link, if in pipeline page
253 click_link 'foo' if pipeline_page
256 assert_selector 'a[href="#Log"]', text: 'Log'
257 assert_no_selector 'a[data-toggle="disabled"]', text: 'Log'
258 assert_no_text 'zzzzz-4zz18-bv31uwvy3neko21 (Unavailable)'
260 assert_text 'This pipeline was created from'
261 job_id = object['components']['foo']['job']['uuid']
262 assert_selector 'a', text: job_id
263 assert_selector "a[href=\"/jobs/#{job_id}#Log\"]", text: 'Log'
265 # We'd like to test the Log tab on job pages too, but we can't right
266 # now because Poltergeist 1.x doesn't support JavaScript's
267 # Function.prototype.bind, which is used by job_log_graph.js.
268 find(:xpath, "//a[@href='#Log']").click
269 assert_text expect_log_text
272 assert_selector 'a[data-toggle="disabled"]', text: 'Log'
273 assert_text 'zzzzz-4zz18-bv31uwvy3neko21 (Unavailable)'
274 assert_text object['job']
276 assert_no_text 'This pipeline was created from' # template is not readable
277 assert_no_selector 'a', text: object['components']['foo']['job']['uuid']
278 assert_text 'Log unavailable'
280 find(:xpath, "//a[@href='#Log']").click
281 assert_text 'zzzzz-4zz18-bv31uwvy3neko21 (Unavailable)'
282 assert_no_text expect_log_text
288 ['new_pipeline_in_publicly_accessible_project', true],
289 ['new_pipeline_in_publicly_accessible_project', true, 'spectator'],
290 ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false],
291 ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false, 'spectator'],
292 ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', true, 'admin'],
293 ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', false],
294 ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', false, 'spectator'],
295 ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', true, 'admin'],
296 ].each do |fixture, objects_readable, user=nil|
297 test "access #{fixture} in public project with objects readable=#{objects_readable} with user #{user}" do
298 object = api_fixture('pipeline_instances')[fixture]
299 page = "/pipeline_instances/#{object['uuid']}"
301 visit page_with_token user, page
306 # click Components tab
307 click_link 'Components'
310 assert_text 'This pipeline was created from'
313 assert_selector 'a', text: 'Choose'
314 assert_selector 'a', text: 'Run'
315 assert_no_selector 'a.disabled', text: 'Run'
317 assert_selector 'a', text: object['components']['foo']['script_parameters']['input']['value']
318 user ? (assert_selector 'a', text: 'Run') : (assert_no_selector 'a', text: 'Run')
321 assert_no_text 'This pipeline was created from' # template is not readable
322 input = object['components']['foo']['script_parameters']['input']['value']
323 assert_no_selector 'a', text: input
325 input = input.gsub('/', '\\/')
326 assert_text "One or more inputs provided are not readable"
327 assert_selector "input[type=text][value=#{input}]"
328 assert_selector 'a.disabled', text: 'Run'
330 assert_no_text "One or more inputs provided are not readable"
332 assert_no_selector 'a', text: 'Run'