1 require 'integration_helper'
3 class AnonymousAccessTest < ActionDispatch::IntegrationTest
4 # These tests don't do state-changing API calls. Save some time by
5 # skipping the database reset.
6 reset_api_fixtures :after_each_test, false
7 reset_api_fixtures :after_suite, true
11 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
14 PUBLIC_PROJECT = "/projects/#{api_fixture('groups')['anonymously_accessible_project']['uuid']}"
16 def verify_site_navigation_anonymous_enabled user, is_active
19 assert_text 'Unrestricted public data'
20 assert_selector 'a', text: 'Projects'
21 page.find("#projects-menu").click
22 within('.dropdown-menu') do
23 assert_selector 'a', text: 'Search all projects'
24 assert_selector "a[href=\"/projects/public\"]", text: 'Browse public projects'
25 assert_selector 'a', text: 'Add a new project'
26 assert_selector 'li[class="dropdown-header"]', text: 'My projects'
29 assert_text 'indicate that you have read and accepted the user agreement'
31 within('.navbar-fixed-top') do
32 assert_selector 'a', text: Rails.configuration.site_name.downcase
33 assert(page.has_link?("notifications-menu"), 'no user menu')
34 page.find("#notifications-menu").click
35 within('.dropdown-menu') do
36 assert_selector 'a', text: 'Log out'
40 assert_text 'Unrestricted public data'
41 within('.navbar-fixed-top') do
42 assert_text Rails.configuration.site_name.downcase
43 assert_no_selector 'a', text: Rails.configuration.site_name.downcase
44 assert_selector 'a', text: 'Log in'
45 assert_selector 'a', text: 'Browse public projects'
51 [nil, nil, false, false],
52 ['inactive', api_fixture('users')['inactive'], false, false],
53 ['active', api_fixture('users')['active'], true, true],
54 ].each do |token, user, is_active|
55 test "visit public project as user #{token.inspect} when anonymous browsing is enabled" do
59 visit page_with_token(token, PUBLIC_PROJECT)
62 verify_site_navigation_anonymous_enabled user, is_active
66 test "selection actions when anonymous user accesses shared project" do
69 assert_selector 'a', text: 'Description'
70 assert_selector 'a', text: 'Data collections'
71 assert_selector 'a', text: 'Pipelines and processes'
72 assert_selector 'a', text: 'Pipeline templates'
73 assert_selector 'a', text: 'Subprojects'
74 assert_selector 'a', text: 'Advanced'
75 assert_no_selector 'a', text: 'Other objects'
76 assert_no_selector 'button', text: 'Add data'
78 click_link 'Data collections'
79 click_button 'Selection'
80 within('.selection-action-container') do
81 assert_selector 'li', text: 'Compare selected'
82 assert_no_selector 'li', text: 'Create new collection with selected collections'
83 assert_no_selector 'li', text: 'Copy selected'
84 assert_no_selector 'li', text: 'Move selected'
85 assert_no_selector 'li', text: 'Remove selected'
89 test "anonymous user accesses data collections tab in shared project" do
91 click_link 'Data collections'
92 collection = api_fixture('collections')['user_agreement_in_anonymously_accessible_project']
93 assert_text 'GNU General Public License'
95 assert_selector 'a', text: 'Data collections'
97 # click on show collection
98 within "tr[data-object-uuid=\"#{collection['uuid']}\"]" do
103 assert_no_selector 'input', text: 'Create sharing link'
104 assert_no_text 'Sharing and permissions'
105 assert_no_selector 'a', text: 'Upload'
106 assert_no_selector 'button', 'Selection'
108 within '#collection_files tr,li', text: 'GNU_General_Public_License,_version_3.pdf' do
109 assert page.has_no_selector?('[value*="GNU_General_Public_License"]')
110 find 'a[title~=View]'
111 find 'a[title~=Download]'
116 magic = rand(2**512).to_s 36
117 CollectionsController.any_instance.stubs(:file_enumerator).returns([magic])
118 collection = api_fixture('collections')['public_text_file']
119 visit '/collections/' + collection['uuid']
120 find('tr,li', text: 'Hello world.txt').
121 find('a[title~=View]').click
126 'running anonymously accessible cr',
129 test "anonymous user accesses pipelines and processes tab in shared project and clicks on '#{proc}'" do
131 click_link 'Data collections'
132 assert_text 'GNU General Public License'
134 click_link 'Pipelines and processes'
135 assert_text 'Pipeline in publicly accessible project'
137 if proc.include? 'pipeline'
138 verify_pipeline_instance_row
140 verify_container_request_row proc
145 def verify_container_request_row look_for
146 within first('tr', text: look_for) do
149 assert_text 'Public Projects Unrestricted public data'
150 assert_text 'command'
152 assert_text 'zzzzz-tpzed-xurymjxw79nv3jz' # modified by user
153 assert_no_selector 'a', text: 'zzzzz-tpzed-xurymjxw79nv3jz'
154 assert_no_selector 'button', text: 'Cancel'
157 def verify_pipeline_instance_row
158 within first('tr[data-kind="arvados#pipelineInstance"]') do
159 assert_text 'Pipeline in publicly accessible project'
163 # in pipeline instance page
164 assert_text 'Public Projects Unrestricted public data'
165 assert_text 'This pipeline is complete'
166 assert_no_selector 'a', text: 'Re-run with latest'
167 assert_no_selector 'a', text: 'Re-run options'
170 test "anonymous user accesses pipeline templates tab in shared project" do
172 click_link 'Data collections'
173 assert_text 'GNU General Public License'
175 assert_selector 'a', text: 'Pipeline templates'
177 click_link 'Pipeline templates'
178 assert_text 'Pipeline template in publicly accessible project'
180 within first('tr[data-kind="arvados#pipelineTemplate"]') do
185 assert_text 'Public Projects Unrestricted public data'
186 assert_text 'script version'
187 assert_no_selector 'a', text: 'Run this pipeline'
190 test "anonymous user accesses subprojects tab in shared project" do
191 visit PUBLIC_PROJECT + '#Subprojects'
193 assert_text 'Subproject in anonymous accessible project'
195 within first('tr[data-kind="arvados#group"]') do
200 assert_text 'Description for subproject in anonymous accessible project'
204 ['pipeline_in_publicly_accessible_project', true],
205 ['pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false],
206 ['pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false, 'spectator'],
207 ['pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', true, 'admin'],
209 ['completed_job_in_publicly_accessible_project', true],
210 ['running_job_in_publicly_accessible_project', true],
211 ['job_in_publicly_accessible_project_but_other_objects_elsewhere', false],
212 ].each do |fixture, objects_readable, user=nil|
213 test "access #{fixture} in public project with objects readable=#{objects_readable} with user #{user}" do
214 pipeline_page = true if fixture.include?('pipeline')
217 object = api_fixture('pipeline_instances')[fixture]
218 page_link = "/pipeline_instances/#{object['uuid']}"
219 expect_log_text = "Log for foo"
221 object = api_fixture('jobs')[fixture]
222 page_link = "/jobs/#{object['uuid']}"
223 expect_log_text = "stderr crunchstat"
227 visit page_with_token user, page_link
232 # click job link, if in pipeline page
233 click_link 'foo' if pipeline_page
236 assert_selector 'a[href="#Log"]', text: 'Log'
237 assert_no_selector 'a[data-toggle="disabled"]', text: 'Log'
238 assert_no_text 'Output data not available'
240 assert_text 'This pipeline was created from'
241 job_id = object['components']['foo']['job']['uuid']
242 assert_selector 'a', text: job_id
243 assert_selector "a[href=\"/jobs/#{job_id}#Log\"]", text: 'Log'
245 # We'd like to test the Log tab on job pages too, but we can't right
246 # now because Poltergeist 1.x doesn't support JavaScript's
247 # Function.prototype.bind, which is used by job_log_graph.js.
248 find(:xpath, "//a[@href='#Log']").click
249 assert_text expect_log_text
252 assert_selector 'a[data-toggle="disabled"]', text: 'Log'
253 assert_text 'Output data not available'
254 assert_text object['job']
256 assert_no_text 'This pipeline was created from' # template is not readable
257 assert_no_selector 'a', text: object['components']['foo']['job']['uuid']
258 assert_text 'Log unavailable'
260 find(:xpath, "//a[@href='#Log']").click
261 assert_text 'Output data not available'
262 assert_no_text expect_log_text
268 ['new_pipeline_in_publicly_accessible_project', true],
269 ['new_pipeline_in_publicly_accessible_project', true, 'spectator'],
270 ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false],
271 ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', false, 'spectator'],
272 ['new_pipeline_in_publicly_accessible_project_but_other_objects_elsewhere', true, 'admin'],
273 ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', false],
274 ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', false, 'spectator'],
275 ['new_pipeline_in_publicly_accessible_project_with_dataclass_file_and_other_objects_elsewhere', true, 'admin'],
276 ].each do |fixture, objects_readable, user=nil|
277 test "access #{fixture} in public project with objects readable=#{objects_readable} with user #{user}" do
278 object = api_fixture('pipeline_instances')[fixture]
279 page = "/pipeline_instances/#{object['uuid']}"
281 visit page_with_token user, page
286 # click Components tab
287 click_link 'Components'
290 assert_text 'This pipeline was created from'
293 assert_selector 'a', text: 'Choose'
294 assert_selector 'a', text: 'Run'
295 assert_no_selector 'a.disabled', text: 'Run'
297 assert_selector 'a', text: object['components']['foo']['script_parameters']['input']['value']
298 user ? (assert_selector 'a', text: 'Run') : (assert_no_selector 'a', text: 'Run')
301 assert_no_text 'This pipeline was created from' # template is not readable
302 input = object['components']['foo']['script_parameters']['input']['value']
303 assert_no_selector 'a', text: input
305 input = input.gsub('/', '\\/')
306 assert_text "One or more inputs provided are not readable"
307 assert_selector "input[type=text][value=#{input}]"
308 assert_selector 'a.disabled', text: 'Run'
310 assert_no_text "One or more inputs provided are not readable"
312 assert_no_selector 'a', text: 'Run'