CWL spec -> CWL standards
[arvados.git] / apps / workbench / test / integration / anonymous_access_test.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require 'integration_helper'
6
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
12
13   setup do
14     need_javascript
15     Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token']
16   end
17
18   PUBLIC_PROJECT = "/projects/#{api_fixture('groups')['anonymously_accessible_project']['uuid']}"
19
20   def verify_site_navigation_anonymous_enabled user, is_active
21     if user
22       if 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'
31         end
32       else
33         assert_text 'indicate that you have read and accepted the user agreement'
34       end
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'
41         end
42       end
43     else  # anonymous
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'
50       end
51     end
52   end
53
54   [
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
60       if !token
61         visit PUBLIC_PROJECT
62       else
63         visit page_with_token(token, PUBLIC_PROJECT)
64       end
65
66       verify_site_navigation_anonymous_enabled user, is_active
67     end
68   end
69
70   test "selection actions when anonymous user accesses shared project" do
71     visit PUBLIC_PROJECT
72
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'
81
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'
90     end
91   end
92
93   test "anonymous user accesses data collections tab in shared project" do
94     visit PUBLIC_PROJECT
95     click_link 'Data collections'
96     collection = api_fixture('collections')['user_agreement_in_anonymously_accessible_project']
97     assert_text 'GNU General Public License'
98
99     assert_selector 'a', text: 'Data collections'
100
101     # click on show collection
102     within "tr[data-object-uuid=\"#{collection['uuid']}\"]" do
103       click_link 'Show'
104     end
105
106     # in collection page
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'
111
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]'
116     end
117   end
118
119   test 'view file' do
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
126     assert_text magic
127   end
128
129   [
130     'running anonymously accessible cr',
131     'pipelineInstance'
132   ].each do |proc|
133     test "anonymous user accesses pipelines and processes tab in shared project and clicks on '#{proc}'" do
134       visit PUBLIC_PROJECT
135       click_link 'Data collections'
136       assert_text 'GNU General Public License'
137
138       click_link 'Pipelines and processes'
139       assert_text 'Pipeline in publicly accessible project'
140
141       if proc.include? 'pipeline'
142         verify_pipeline_instance_row
143       else
144         verify_container_request_row proc
145       end
146     end
147   end
148
149   def verify_container_request_row look_for
150     within first('tr', text: look_for) do
151       click_link 'Show'
152     end
153     assert_text 'Public Projects Unrestricted public data'
154     assert_text 'command'
155
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'
159   end
160
161   def verify_pipeline_instance_row
162     within first('tr[data-kind="arvados#pipelineInstance"]') do
163       assert_text 'Pipeline in publicly accessible project'
164       click_link 'Show'
165     end
166
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'
172   end
173
174   [
175     'pipelineTemplate',
176     'workflow'
177   ].each do |type|
178     test "anonymous user accesses pipeline templates tab in shared project and click on #{type}" do
179       visit PUBLIC_PROJECT
180       click_link 'Data collections'
181       assert_text 'GNU General Public License'
182
183       assert_selector 'a', text: 'Pipeline templates'
184
185       click_link 'Pipeline templates'
186       assert_text 'Pipeline template in publicly accessible project'
187       assert_text 'Workflow with input specifications'
188
189       if type == 'pipelineTemplate'
190         within first('tr[data-kind="arvados#pipelineTemplate"]') do
191           click_link 'Show'
192         end
193
194         # in template page
195         assert_text 'Public Projects Unrestricted public data'
196         assert_text 'script version'
197         assert_no_selector 'a', text: 'Run this pipeline'
198       else
199         within first('tr[data-kind="arvados#workflow"]') do
200           click_link 'Show'
201         end
202
203         # in workflow page
204         assert_text 'Public Projects Unrestricted public data'
205         assert_text 'this workflow has inputs specified'
206       end
207     end
208   end
209
210   test "anonymous user accesses subprojects tab in shared project" do
211     visit PUBLIC_PROJECT + '#Subprojects'
212
213     assert_text 'Subproject in anonymous accessible project'
214
215     within first('tr[data-kind="arvados#group"]') do
216       click_link 'Show'
217     end
218
219     # in subproject
220     assert_text 'Description for subproject in anonymous accessible project'
221   end
222
223   [
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'],
228
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')
235
236       if pipeline_page
237         object = api_fixture('pipeline_instances')[fixture]
238         page_link = "/pipeline_instances/#{object['uuid']}"
239         expect_log_text = "Log for foo"
240       else      # job
241         object = api_fixture('jobs')[fixture]
242         page_link = "/jobs/#{object['uuid']}"
243         expect_log_text = "stderr crunchstat"
244       end
245
246       if user
247         visit page_with_token user, page_link
248       else
249         visit page_link
250       end
251
252       # click job link, if in pipeline page
253       click_link 'foo' if pipeline_page
254
255       if objects_readable
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)'
259         if pipeline_page
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'
264
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
270         end
271       else
272         assert_selector 'a[data-toggle="disabled"]', text: 'Log'
273         assert_text 'zzzzz-4zz18-bv31uwvy3neko21 (Unavailable)'
274         assert_text object['job']
275         if pipeline_page
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'
279         end
280         find(:xpath, "//a[@href='#Log']").click
281         assert_text 'zzzzz-4zz18-bv31uwvy3neko21 (Unavailable)'
282         assert_no_text expect_log_text
283       end
284     end
285   end
286
287   [
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']}"
300       if user
301         visit page_with_token user, page
302       else
303         visit page
304       end
305
306       # click Components tab
307       click_link 'Components'
308
309       if objects_readable
310         assert_text 'This pipeline was created from'
311         if user == 'admin'
312           assert_text 'input'
313           assert_selector 'a', text: 'Choose'
314           assert_selector 'a', text: 'Run'
315           assert_no_selector 'a.disabled', text: 'Run'
316         else
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')
319         end
320       else
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
324         if user
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'
329         else
330           assert_no_text "One or more inputs provided are not readable"
331           assert_text input
332           assert_no_selector 'a', text: 'Run'
333         end
334       end
335     end
336   end
337 end