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, {}, 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, {}, 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_for(which_user)
34 buttons = css_select('[data-method=post]').select do |el|
35 el.attributes['data-remote-href'].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"]]
50 id: api_fixture("groups")["asubproject"]["uuid"],
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"]
61 id: api_fixture("groups")["aproject"]["uuid"],
64 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 { id: api_fixture("groups")["project_owns_itself"]["uuid"] },
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 { id: api_fixture("groups")["asubproject"]["uuid"],
115 item_uuid: coll_uuid,
117 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 { id: api_fixture('groups', 'asubproject')['uuid'],
134 item_uuid: specimen_uuid,
136 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 # An object which does not offer an expired_at field but has a xx_owner_uuid_name_unique constraint
147 # will be renamed when removed and another object with the same name exists in user's home project.
149 ['groups', 'subproject_in_asubproject_with_same_name_as_one_in_active_user_home'],
150 ['pipeline_templates', 'template_in_asubproject_with_same_name_as_one_in_active_user_home'],
151 ].each do |dm, fixture|
152 test "removing #{dm} from a subproject results in renaming it when there is another such object with same name in home project" do
153 object = api_fixture(dm, fixture)
155 { id: api_fixture('groups', 'asubproject')['uuid'],
156 item_uuid: object['uuid'],
158 session_for(:active))
159 assert_response :success
160 assert_match(/\b#{object['uuid']}\b/, @response.body,
161 "removed object not named in response")
164 found = Group.find(object['uuid'])
166 found = PipelineTemplate.find(object['uuid'])
168 assert_equal api_fixture('users', 'active')['uuid'], found.owner_uuid
169 assert_equal true, found.name.include?(object['name'] + ' removed from ')
173 test 'projects#show tab infinite scroll partial obeys limit' do
174 get_contents_rows(limit: 1, filters: [['uuid','is_a',['arvados#job']]])
175 assert_response :success
176 assert_equal(1, json_response['content'].scan('<tr').count,
177 "Did not get exactly one row")
180 ['', ' asc', ' desc'].each do |direction|
181 test "projects#show tab partial orders correctly by #{direction}" do
182 _test_tab_content_order direction
186 def _test_tab_content_order direction
187 get_contents_rows(limit: 100,
188 order: "created_at#{direction}",
189 filters: [['uuid','is_a',['arvados#job',
190 'arvados#pipelineInstance']]])
191 assert_response :success
192 not_grouped_by_kind = nil
196 json_response['content'].scan /<tr[^>]+>/ do |tr_tag|
198 tr_tag.scan(/\ data-object-created-at=\"(.*?)\"/).each do |t,|
200 correct_operator = / desc$/ =~ direction ? :>= : :<=
201 assert_operator(last_timestamp, correct_operator, t,
202 "Rows are not sorted by created_at#{direction}")
205 found_timestamps += 1
207 assert_equal(1, found_timestamps,
208 "Content row did not have exactly one timestamp")
210 # Confirm that the test for timestamp ordering couldn't have
211 # passed merely because the test fixtures have convenient
212 # timestamps (e.g., there is only one pipeline and one job in
213 # the project being tested, or there are no pipelines at all in
214 # the project being tested):
215 tr_tag.scan /\ data-kind=\"(.*?)\"/ do |kind|
216 if last_kind and last_kind != kind and found_kind[kind]
217 # We saw this kind before, then a different kind, then
218 # this kind again. That means objects are not grouped by
220 not_grouped_by_kind = true
222 found_kind[kind] ||= 0
223 found_kind[kind] += 1
227 assert_equal(true, not_grouped_by_kind,
228 "Could not confirm that results are not grouped by kind")
231 def get_contents_rows params
233 id: api_fixture('users')['active']['uuid'],
234 partial: :contents_rows,
237 encoded_params = Hash[params.map { |k,v|
238 [k, (v.is_a?(Array) || v.is_a?(Hash)) ? v.to_json : v]
240 get :show, encoded_params, session_for(:active)
243 test "visit non-public project as anonymous when anonymous browsing is enabled and expect page not found" do
244 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
245 get(:show, {id: api_fixture('groups')['aproject']['uuid']})
247 assert_match(/log ?in/i, @response.body)
250 test "visit home page as anonymous when anonymous browsing is enabled and expect login" do
251 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
253 assert_response :redirect
254 assert_match /\/users\/welcome/, @response.redirect_url
261 test "visit public projects page when anon config is enabled, as user #{user}, and expect page" do
262 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
265 get :public, {}, session_for(user)
270 assert_response :success
271 assert_not_nil assigns(:objects)
272 project_names = assigns(:objects).collect(&:name)
273 assert_includes project_names, 'Unrestricted public data'
274 assert_not_includes project_names, 'A Project'
275 refute_empty css_select('[href="/projects/public"]')
279 test "visit public projects page when anon config is not enabled as active user and expect 404" do
280 get :public, {}, session_for(:active)
284 test "visit public projects page when anon config is enabled but public projects page is disabled as active user and expect 404" do
285 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
286 Rails.configuration.enable_public_projects_page = false
287 get :public, {}, session_for(:active)
291 test "visit public projects page when anon config is not enabled as anonymous and expect login page" do
293 assert_response :redirect
294 assert_match /\/users\/welcome/, @response.redirect_url
295 assert_empty css_select('[href="/projects/public"]')
298 test "visit public projects page when anon config is enabled and public projects page is disabled and expect login page" do
299 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
300 Rails.configuration.enable_public_projects_page = false
302 assert_response :redirect
303 assert_match /\/users\/welcome/, @response.redirect_url
304 assert_empty css_select('[href="/projects/public"]')
307 test "visit public projects page when anon config is not enabled and public projects page is enabled and expect login page" do
308 Rails.configuration.enable_public_projects_page = true
310 assert_response :redirect
311 assert_match /\/users\/welcome/, @response.redirect_url
312 assert_empty css_select('[href="/projects/public"]')
315 test "find a project and edit its description" do
316 project = api_fixture('groups')['aproject']
318 found = Group.find(project['uuid'])
319 found.description = 'test description update'
321 get(:show, {id: project['uuid']}, session_for(:active))
322 assert_includes @response.body, 'test description update'
325 test "find a project and edit description to textile description" do
326 project = api_fixture('groups')['aproject']
328 found = Group.find(project['uuid'])
329 found.description = '*test bold description for textile formatting*'
331 get(:show, {id: project['uuid']}, session_for(:active))
332 assert_includes @response.body, '<strong>test bold description for textile formatting</strong>'
335 test "find a project and edit description to html description" do
336 project = api_fixture('groups')['aproject']
338 found = Group.find(project['uuid'])
339 found.description = 'Textile description with link to home page <a href="/">take me home</a>.'
341 get(:show, {id: project['uuid']}, session_for(:active))
342 assert_includes @response.body, 'Textile description with link to home page <a href="/">take me home</a>.'
345 test "find a project and edit description to textile description with link to object" do
346 project = api_fixture('groups')['aproject']
348 found = Group.find(project['uuid'])
350 # uses 'Link to object' as a hyperlink for the object
351 found.description = '"Link to object":' + api_fixture('groups')['asubproject']['uuid']
353 get(:show, {id: project['uuid']}, session_for(:active))
355 # check that input was converted to textile, not staying as inputted
356 refute_includes @response.body,'"Link to object"'
357 refute_empty css_select('[href="/groups/zzzzz-j7d0g-axqo7eu9pwvna1x"]')
360 test "project viewer can't see project sharing tab" do
361 project = api_fixture('groups')['aproject']
362 get(:show, {id: project['uuid']}, session_for(:project_viewer))
363 refute_includes @response.body, '<div id="Sharing"'
364 assert_includes @response.body, '<div id="Data_collections"'
371 test "#{username} can see project sharing tab" do
372 project = api_fixture('groups')['aproject']
373 get(:show, {id: project['uuid']}, session_for(username))
374 assert_includes @response.body, '<div id="Sharing"'
375 assert_includes @response.body, '<div id="Data_collections"'
382 ['project_viewer',false],
383 ].each do |user, can_move|
384 test "#{user} can move subproject from project #{can_move}" do
385 get(:show, {id: api_fixture('groups')['aproject']['uuid']}, session_for(user))
387 assert_includes @response.body, 'Move project...'
389 refute_includes @response.body, 'Move project...'
397 ].each do |user, expect_all_nodes|
398 test "in dashboard other index page links as #{user}" do
399 get :index, {}, session_for(user)
401 [["processes", "/all_processes"],
402 ["collections", "/collections"],
403 ].each do |target, path|
404 assert_includes @response.body, "href=\"#{path}\""
405 assert_includes @response.body, "All #{target}"
409 assert_includes @response.body, "href=\"/nodes\""
410 assert_includes @response.body, "All nodes"
412 assert_not_includes @response.body, "href=\"/nodes\""
413 assert_not_includes @response.body, "All nodes"
418 test "dashboard should show the correct status for processes" do
419 get :index, {}, session_for(:active)
420 assert_select 'div.panel-body.recent-processes' do
423 fixture: 'container_requests',
425 selectors: [['div.progress', false],
426 ['span.label.label-success', true, 'Complete']]
429 fixture: 'container_requests',
430 state: 'uncommitted',
431 selectors: [['div.progress', false],
432 ['span.label.label-default', true, 'Uncommitted']]
435 fixture: 'container_requests',
437 selectors: [['div.progress', false],
438 ['span.label.label-default', true, 'Queued']]
441 fixture: 'container_requests',
443 selectors: [['div.progress', true]]
446 fixture: 'pipeline_instances',
447 state: 'new_pipeline',
448 selectors: [['div.progress', false],
449 ['span.label.label-default', true, 'Not started']]
452 fixture: 'pipeline_instances',
453 state: 'pipeline_in_running_state',
454 selectors: [['div.progress', true]]
457 uuid = api_fixture(c[:fixture])[c[:state]]['uuid']
458 assert_select "div.dashboard-panel-info-row.row-#{uuid}" do
459 if c.include? :selectors
460 c[:selectors].each do |selector, should_show, label|
461 assert_select selector, should_show, "UUID #{uuid} should #{should_show ? '' : 'not'} show '#{selector}'"
462 if should_show and not label.nil?
463 assert_select selector, label, "UUID #{uuid} state label should show #{label}"
472 test "visit a public project and verify the public projects page link exists" do
473 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
474 uuid = api_fixture('groups')['anonymously_accessible_project']['uuid']
475 get :show, {id: uuid}
476 project = assigns(:object)
477 assert_equal uuid, project['uuid']
478 refute_empty css_select("[href=\"/projects/#{project['uuid']}\"]")
479 assert_includes @response.body, "<a href=\"/projects/public\">Public Projects</a>"
482 test 'all_projects unaffected by params after use by ProjectsController (#6640)' do
483 @controller = ProjectsController.new
484 project_uuid = api_fixture('groups')['aproject']['uuid']
486 filters: [['uuid', '<', project_uuid]].to_json,
489 }, session_for(:active)
490 assert_select "#projects-menu + ul li.divider ~ li a[href=/projects/#{project_uuid}]"
494 ["active", 5, ["aproject", "asubproject"], "anonymously_accessible_project"],
495 ["user1_with_load", 2, ["project_with_10_collections"], "project_with_2_pipelines_and_60_crs"],
496 ["admin", 5, ["anonymously_accessible_project", "subproject_in_anonymous_accessible_project"], "aproject"],
497 ].each do |user, page_size, tree_segment, unexpected|
498 # Note: this test is sensitive to database collation. It passes
500 test "build my projects tree for #{user} user and verify #{unexpected} is omitted" do
503 tree, _, _ = @controller.send(:my_wanted_projects_tree,
507 tree_segment_at_depth_1 = api_fixture('groups')[tree_segment[0]]
508 tree_segment_at_depth_2 = api_fixture('groups')[tree_segment[1]] if tree_segment[1]
512 node_depth[x[:object]['uuid']] = x[:depth]
515 assert_equal(1, node_depth[tree_segment_at_depth_1['uuid']])
516 assert_equal(2, node_depth[tree_segment_at_depth_2['uuid']]) if tree_segment[1]
518 unexpected_project = api_fixture('groups')[unexpected]
519 assert_nil(node_depth[unexpected_project['uuid']], node_depth.inspect)
525 ["project_viewer", 1],
527 ].each do |user, size|
528 test "starred projects for #{user}" do
530 ctrl = ProjectsController.new
531 current_user = User.find(api_fixture('users')[user]['uuid'])
532 my_starred_project = ctrl.send :my_starred_projects, current_user
533 assert_equal(size, my_starred_project.andand.size)
535 ctrl2 = ProjectsController.new
536 current_user = User.find(api_fixture('users')[user]['uuid'])
537 my_starred_project = ctrl2.send :my_starred_projects, current_user
538 assert_equal(size, my_starred_project.andand.size)
542 test "unshare project and verify that it is no longer included in shared user's starred projects" do
543 # remove sharing link
544 use_token :system_user
545 Link.find(api_fixture('links')['share_starred_project_with_project_viewer']['uuid']).destroy
547 # verify that project is no longer included in starred projects
548 use_token :project_viewer
549 current_user = User.find(api_fixture('users')['project_viewer']['uuid'])
550 ctrl = ProjectsController.new
551 my_starred_project = ctrl.send :my_starred_projects, current_user
552 assert_equal(0, my_starred_project.andand.size)
555 @controller = LinksController.new
558 link_class: 'permission',
560 head_uuid: api_fixture('groups')['starred_and_shared_active_user_project']['uuid'],
561 tail_uuid: api_fixture('users')['project_viewer']['uuid'],
564 }, session_for(:system_user)
566 # verify that the project is again included in starred projects
567 use_token :project_viewer
568 ctrl = ProjectsController.new
569 my_starred_project = ctrl.send :my_starred_projects, current_user
570 assert_equal(1, my_starred_project.andand.size)