1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
6 require 'helpers/share_object_helper'
8 class ProjectsControllerTest < ActionController::TestCase
9 include ShareObjectHelper
11 test "invited user is asked to sign user agreements on front page" do
12 get :index, params: {}, session: session_for(:inactive)
13 assert_response :redirect
14 assert_match(/^#{Regexp.escape(user_agreements_url)}\b/,
15 @response.redirect_url,
16 "Inactive user was not redirected to user_agreements page")
19 test "uninvited user is asked to wait for activation" do
20 get :index, params: {}, session: session_for(:inactive_uninvited)
21 assert_response :redirect
22 assert_match(/^#{Regexp.escape(inactive_users_url)}\b/,
23 @response.redirect_url,
24 "Uninvited user was not redirected to inactive user page")
28 [:project_viewer, false]].each do |which_user, should_show|
29 test "create subproject button #{'not ' unless should_show} shown to #{which_user}" do
30 readonly_project_uuid = api_fixture('groups')['aproject']['uuid']
32 id: readonly_project_uuid
33 }, session: session_for(which_user)
34 buttons = css_select('[data-method=post]').select do |el|
35 el.attributes['data-remote-href'].value.match /project.*owner_uuid.*#{readonly_project_uuid}/
38 assert_not_empty(buttons, "did not offer to create a subproject")
40 assert_empty(buttons.collect(&:to_s),
41 "offered to create a subproject in a non-writable project")
46 test "sharing a project with a user and group" do
47 uuid_list = [api_fixture("groups")["future_project_viewing_group"]["uuid"],
48 api_fixture("users")["future_project_user"]["uuid"]]
49 post(:share_with, params: {
50 id: api_fixture("groups")["asubproject"]["uuid"],
53 session: session_for(:active))
54 assert_response :success
55 assert_equal(uuid_list, json_response["success"])
58 test "user with project read permission can't add permissions" do
59 share_uuid = api_fixture("users")["spectator"]["uuid"]
60 post(:share_with, params: {
61 id: api_fixture("groups")["aproject"]["uuid"],
64 session: session_for(:project_viewer))
66 assert(json_response["errors"].andand.
67 any? { |msg| msg.start_with?("#{share_uuid}: ") },
68 "JSON response missing properly formatted sharing error")
71 test "admin can_manage aproject" do
72 assert user_can_manage(:admin, api_fixture("groups")["aproject"])
75 test "owner can_manage aproject" do
76 assert user_can_manage(:active, api_fixture("groups")["aproject"])
79 test "owner can_manage asubproject" do
80 assert user_can_manage(:active, api_fixture("groups")["asubproject"])
83 test "viewer can't manage aproject" do
84 refute user_can_manage(:project_viewer, api_fixture("groups")["aproject"])
87 test "viewer can't manage asubproject" do
88 refute user_can_manage(:project_viewer, api_fixture("groups")["asubproject"])
91 test "subproject_admin can_manage asubproject" do
92 assert user_can_manage(:subproject_admin, api_fixture("groups")["asubproject"])
95 test "detect ownership loop in project breadcrumbs" do
96 # This test has an arbitrary time limit -- otherwise we'd just sit
97 # here forever instead of reporting that the loop was not
98 # detected. The test passes quickly, but fails slowly.
99 Timeout::timeout 10 do
101 params: { id: api_fixture("groups")["project_owns_itself"]["uuid"] },
102 session: session_for(:admin))
104 assert_response :success
107 test "project admin can remove collections from the project" do
108 # Deleting an object that supports 'trash_at' should make it
109 # completely inaccessible to API queries, not simply moved out of
111 coll_key = "collection_to_remove_from_subproject"
112 coll_uuid = api_fixture("collections")[coll_key]["uuid"]
114 params: { id: api_fixture("groups")["asubproject"]["uuid"],
115 item_uuid: coll_uuid,
117 session: session_for(:subproject_admin))
118 assert_response :success
119 assert_match(/\b#{coll_uuid}\b/, @response.body,
120 "removed object not named in response")
122 use_token :subproject_admin
123 assert_raise ArvadosApiClient::NotFoundException do
124 Collection.find(coll_uuid, cache: false)
128 test "project admin can remove items from project other than collections" do
129 # An object which does not have an trash_at field (e.g. Specimen)
130 # should be implicitly moved to the user's Home project when removed.
131 specimen_uuid = api_fixture('specimens', 'in_asubproject')['uuid']
133 params: { id: api_fixture('groups', 'asubproject')['uuid'],
134 item_uuid: specimen_uuid,
136 session: session_for(:subproject_admin))
137 assert_response :success
138 assert_match(/\b#{specimen_uuid}\b/, @response.body,
139 "removed object not named in response")
141 use_token :subproject_admin
142 new_specimen = Specimen.find(specimen_uuid)
143 assert_equal api_fixture('users', 'subproject_admin')['uuid'], new_specimen.owner_uuid
146 test 'projects#show tab infinite scroll partial obeys limit' do
147 get_contents_rows(limit: 1, filters: [['uuid','is_a',['arvados#job']]])
148 assert_response :success
149 assert_equal(1, json_response['content'].scan('<tr').count,
150 "Did not get exactly one row")
153 ['', ' asc', ' desc'].each do |direction|
154 test "projects#show tab partial orders correctly by created_at#{direction}" do
155 _test_tab_content_order direction
159 def _test_tab_content_order direction
160 get_contents_rows(limit: 100,
161 order: "created_at#{direction}",
162 filters: [['uuid','is_a',['arvados#job',
163 'arvados#pipelineInstance']]])
164 assert_response :success
165 not_grouped_by_kind = nil
169 json_response['content'].scan /<tr[^>]+>/ do |tr_tag|
171 tr_tag.scan(/\ data-object-created-at=\"(.*?)\"/).each do |t,|
173 correct_operator = / desc$/ =~ direction ? :>= : :<=
174 assert_operator(last_timestamp, correct_operator, t,
175 "Rows are not sorted by created_at#{direction}")
178 found_timestamps += 1
180 assert_equal(1, found_timestamps,
181 "Content row did not have exactly one timestamp")
183 # Confirm that the test for timestamp ordering couldn't have
184 # passed merely because the test fixtures have convenient
185 # timestamps (e.g., there is only one pipeline and one job in
186 # the project being tested, or there are no pipelines at all in
187 # the project being tested):
188 tr_tag.scan /\ data-kind=\"(.*?)\"/ do |kind|
189 if last_kind and last_kind != kind and found_kind[kind]
190 # We saw this kind before, then a different kind, then
191 # this kind again. That means objects are not grouped by
193 not_grouped_by_kind = true
195 found_kind[kind] ||= 0
196 found_kind[kind] += 1
200 assert_equal(true, not_grouped_by_kind,
201 "Could not confirm that results are not grouped by kind")
204 def get_contents_rows params
206 id: api_fixture('users')['active']['uuid'],
207 partial: :contents_rows,
210 encoded_params = Hash[params.map { |k,v|
211 [k, (v.is_a?(Array) || v.is_a?(Hash)) ? v.to_json : v]
213 get :show, params: encoded_params, session: session_for(:active)
216 test "visit non-public project as anonymous when anonymous browsing is enabled and expect page not found" do
217 Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token']
218 get(:show, params: {id: api_fixture('groups')['aproject']['uuid']})
220 assert_match(/log ?in/i, @response.body)
223 test "visit home page as anonymous when anonymous browsing is enabled and expect login" do
224 Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token']
226 assert_response :redirect
227 assert_match /\/users\/welcome/, @response.redirect_url
234 test "visit public projects page when anon config is enabled, as user #{user}, and expect page" do
235 Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token']
238 get :public, params: {}, session: session_for(user)
243 assert_response :success
244 assert_not_nil assigns(:objects)
245 project_names = assigns(:objects).collect(&:name)
246 assert_includes project_names, 'Unrestricted public data'
247 assert_not_includes project_names, 'A Project'
248 refute_empty css_select('[href="/projects/public"]')
252 test "visit public projects page when anon config is not enabled as active user and expect 404" do
253 Rails.configuration.Users.AnonymousUserToken = ""
254 Rails.configuration.Workbench.EnablePublicProjectsPage = false
255 get :public, params: {}, session: session_for(:active)
259 test "visit public projects page when anon config is enabled but public projects page is disabled as active user and expect 404" do
260 Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token']
261 Rails.configuration.Workbench.EnablePublicProjectsPage = false
262 get :public, params: {}, session: session_for(:active)
266 test "visit public projects page when anon config is not enabled as anonymous and expect login page" do
267 Rails.configuration.Users.AnonymousUserToken = ""
268 Rails.configuration.Workbench.EnablePublicProjectsPage = false
270 assert_response :redirect
271 assert_match /\/users\/welcome/, @response.redirect_url
272 assert_empty css_select('[href="/projects/public"]')
275 test "visit public projects page when anon config is enabled and public projects page is disabled and expect login page" do
276 Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token']
277 Rails.configuration.Workbench.EnablePublicProjectsPage = false
279 assert_response :redirect
280 assert_match /\/users\/welcome/, @response.redirect_url
281 assert_empty css_select('[href="/projects/public"]')
284 test "visit public projects page when anon config is not enabled and public projects page is enabled and expect login page" do
285 Rails.configuration.Workbench.EnablePublicProjectsPage = true
287 assert_response :redirect
288 assert_match /\/users\/welcome/, @response.redirect_url
289 assert_empty css_select('[href="/projects/public"]')
292 test "find a project and edit its description" do
293 project = api_fixture('groups')['aproject']
295 found = Group.find(project['uuid'])
296 found.description = 'test description update'
298 get(:show, params: {id: project['uuid']}, session: session_for(:active))
299 assert_includes @response.body, 'test description update'
302 test "find a project and edit description to textile description" do
303 project = api_fixture('groups')['aproject']
305 found = Group.find(project['uuid'])
306 found.description = '*test bold description for textile formatting*'
308 get(:show, params: {id: project['uuid']}, session: session_for(:active))
309 assert_includes @response.body, '<strong>test bold description for textile formatting</strong>'
312 test "find a project and edit description to html description" do
313 project = api_fixture('groups')['aproject']
315 found = Group.find(project['uuid'])
316 found.description = '<b>Textile</b> description with link to home page <a href="/">take me home</a>.'
318 get(:show, params: {id: project['uuid']}, session: session_for(:active))
319 assert_includes @response.body, '<b>Textile</b> description with link to home page <a href="/">take me home</a>.'
322 test "find a project and edit description to unsafe html description" do
323 project = api_fixture('groups')['aproject']
325 found = Group.find(project['uuid'])
326 found.description = 'Textile description with unsafe script tag <script language="javascript">alert("Hello there")</script>.'
328 get(:show, params: {id: project['uuid']}, session: session_for(:active))
329 assert_includes @response.body, 'Textile description with unsafe script tag alert("Hello there").'
333 test "textile table on description renders as table html markup" do
335 project = api_fixture('groups')['aproject']
336 textile_table = <<EOT
337 table(table table-striped table-condensed).
338 |_. First Header |_. Second Header |
339 |Content Cell |Content Cell |
340 |Content Cell |Content Cell |
342 found = Group.find(project['uuid'])
343 found.description = textile_table
345 get(:show, params: {id: project['uuid']}, session: session_for(:active))
346 assert_includes @response.body, '<th>First Header'
347 assert_includes @response.body, '<td>Content Cell'
350 test "find a project and edit description to textile description with link to object" do
351 project = api_fixture('groups')['aproject']
353 found = Group.find(project['uuid'])
355 # uses 'Link to object' as a hyperlink for the object
356 found.description = '"Link to object":' + api_fixture('groups')['asubproject']['uuid']
358 get(:show, params: {id: project['uuid']}, session: session_for(:active))
360 # check that input was converted to textile, not staying as inputted
361 refute_includes @response.body,'"Link to object"'
362 refute_empty css_select('[href="/groups/zzzzz-j7d0g-axqo7eu9pwvna1x"]')
365 test "project viewer can't see project sharing tab" do
366 project = api_fixture('groups')['aproject']
367 get(:show, params: {id: project['uuid']}, session: session_for(:project_viewer))
368 refute_includes @response.body, '<div id="Sharing"'
369 assert_includes @response.body, '<div id="Data_collections"'
376 test "#{username} can see project sharing tab" do
377 project = api_fixture('groups')['aproject']
378 get(:show, params: {id: project['uuid']}, session: session_for(username))
379 assert_includes @response.body, '<div id="Sharing"'
380 assert_includes @response.body, '<div id="Data_collections"'
387 ['project_viewer',false],
388 ].each do |user, can_move|
389 test "#{user} can move subproject from project #{can_move}" do
390 get(:show, params: {id: api_fixture('groups')['aproject']['uuid']}, session: session_for(user))
392 assert_includes @response.body, 'Move project...'
394 refute_includes @response.body, 'Move project...'
399 [:admin, :active].each do |user|
400 test "in dashboard other index page links as #{user}" do
401 get :index, params: {}, session: session_for(user)
403 [["processes", "/all_processes"],
404 ["collections", "/collections"],
405 ].each do |target, path|
406 assert_includes @response.body, "href=\"#{path}\""
407 assert_includes @response.body, "All #{target}"
412 test "dashboard should show the correct status for processes" do
413 get :index, params: {}, session: session_for(:active)
414 assert_select 'div.panel-body.recent-processes' do
417 fixture: 'container_requests',
419 selectors: [['div.progress', false],
420 ['span.label.label-success', true, 'Complete']]
423 fixture: 'container_requests',
424 state: 'uncommitted',
425 selectors: [['div.progress', false],
426 ['span.label.label-default', true, 'Uncommitted']]
429 fixture: 'container_requests',
431 selectors: [['div.progress', false],
432 ['span.label.label-default', true, 'Queued']]
435 fixture: 'container_requests',
437 selectors: [['.label-info', true, 'Running']]
440 fixture: 'pipeline_instances',
441 state: 'new_pipeline',
442 selectors: [['div.progress', false],
443 ['span.label.label-default', true, 'Not started']]
446 fixture: 'pipeline_instances',
447 state: 'pipeline_in_running_state',
448 selectors: [['.label-info', true, 'Running']]
451 uuid = api_fixture(c[:fixture])[c[:state]]['uuid']
452 assert_select "div.dashboard-panel-info-row.row-#{uuid}" do
453 if c.include? :selectors
454 c[:selectors].each do |selector, should_show, label|
455 assert_select selector, should_show, "UUID #{uuid} should #{should_show ? '' : 'not'} show '#{selector}'"
456 if should_show and not label.nil?
457 assert_select selector, label, "UUID #{uuid} state label should show #{label}"
466 test "visit a public project and verify the public projects page link exists" do
467 Rails.configuration.Users.AnonymousUserToken = api_fixture('api_client_authorizations')['anonymous']['api_token']
468 uuid = api_fixture('groups')['anonymously_accessible_project']['uuid']
469 get :show, params: {id: uuid}
470 project = assigns(:object)
471 assert_equal uuid, project['uuid']
472 refute_empty css_select("[href=\"/projects/#{project['uuid']}\"]")
473 assert_includes @response.body, "<a href=\"/projects/public\">Public Projects</a>"
476 test 'all_projects unaffected by params after use by ProjectsController (#6640)' do
477 @controller = ProjectsController.new
478 project_uuid = api_fixture('groups')['aproject']['uuid']
479 get :index, params: {
480 filters: [['uuid', '<', project_uuid]].to_json,
483 }, session: session_for(:active)
484 assert_select "#projects-menu + ul li.divider ~ li a[href=\"/projects/#{project_uuid}\"]"
488 ["active", 5, ["aproject", "asubproject"], "anonymously_accessible_project"],
489 ["user1_with_load", 2, ["project_with_10_collections"], "project_with_2_pipelines_and_60_crs"],
490 ["admin", 5, ["anonymously_accessible_project", "subproject_in_anonymous_accessible_project"], "aproject"],
491 ].each do |user, page_size, tree_segment, unexpected|
492 # Note: this test is sensitive to database collation. It passes
494 test "build my projects tree for #{user} user and verify #{unexpected} is omitted" do
497 tree, _, _ = @controller.send(:my_wanted_projects_tree,
501 tree_segment_at_depth_1 = api_fixture('groups')[tree_segment[0]]
502 tree_segment_at_depth_2 = api_fixture('groups')[tree_segment[1]] if tree_segment[1]
506 node_depth[x[:object]['uuid']] = x[:depth]
509 assert_equal(1, node_depth[tree_segment_at_depth_1['uuid']])
510 assert_equal(2, node_depth[tree_segment_at_depth_2['uuid']]) if tree_segment[1]
512 unexpected_project = api_fixture('groups')[unexpected]
513 assert_nil(node_depth[unexpected_project['uuid']], node_depth.inspect)
519 ["project_viewer", 1],
521 ].each do |user, size|
522 test "starred projects for #{user}" do
524 ctrl = ProjectsController.new
525 current_user = User.find(api_fixture('users')[user]['uuid'])
526 my_starred_project = ctrl.send :my_starred_projects, current_user
527 assert_equal(size, my_starred_project.andand.size)
529 ctrl2 = ProjectsController.new
530 current_user = User.find(api_fixture('users')[user]['uuid'])
531 my_starred_project = ctrl2.send :my_starred_projects, current_user
532 assert_equal(size, my_starred_project.andand.size)
536 test "unshare project and verify that it is no longer included in shared user's starred projects" do
537 # remove sharing link
538 use_token :system_user
539 Link.find(api_fixture('links')['share_starred_project_with_project_viewer']['uuid']).destroy
541 # verify that project is no longer included in starred projects
542 use_token :project_viewer
543 current_user = User.find(api_fixture('users')['project_viewer']['uuid'])
544 ctrl = ProjectsController.new
545 my_starred_project = ctrl.send :my_starred_projects, current_user
546 assert_equal(0, my_starred_project.andand.size)
549 @controller = LinksController.new
550 post :create, params: {
552 link_class: 'permission',
554 head_uuid: api_fixture('groups')['starred_and_shared_active_user_project']['uuid'],
555 tail_uuid: api_fixture('users')['project_viewer']['uuid'],
558 }, session: session_for(:system_user)
560 # verify that the project is again included in starred projects
561 use_token :project_viewer
562 ctrl = ProjectsController.new
563 my_starred_project = ctrl.send :my_starred_projects, current_user
564 assert_equal(1, my_starred_project.andand.size)