2 require 'helpers/share_object_helper'
4 class ProjectsControllerTest < ActionController::TestCase
5 include ShareObjectHelper
7 test "invited user is asked to sign user agreements on front page" do
8 get :index, {}, session_for(:inactive)
9 assert_response :redirect
10 assert_match(/^#{Regexp.escape(user_agreements_url)}\b/,
11 @response.redirect_url,
12 "Inactive user was not redirected to user_agreements page")
15 test "uninvited user is asked to wait for activation" do
16 get :index, {}, session_for(:inactive_uninvited)
17 assert_response :redirect
18 assert_match(/^#{Regexp.escape(inactive_users_url)}\b/,
19 @response.redirect_url,
20 "Uninvited user was not redirected to inactive user page")
24 [:project_viewer, false]].each do |which_user, should_show|
25 test "create subproject button #{'not ' unless should_show} shown to #{which_user}" do
26 readonly_project_uuid = api_fixture('groups')['aproject']['uuid']
28 id: readonly_project_uuid
29 }, session_for(which_user)
30 buttons = css_select('[data-method=post]').select do |el|
31 el.attributes['data-remote-href'].match /project.*owner_uuid.*#{readonly_project_uuid}/
34 assert_not_empty(buttons, "did not offer to create a subproject")
36 assert_empty(buttons.collect(&:to_s),
37 "offered to create a subproject in a non-writable project")
42 test "sharing a project with a user and group" do
43 uuid_list = [api_fixture("groups")["future_project_viewing_group"]["uuid"],
44 api_fixture("users")["future_project_user"]["uuid"]]
46 id: api_fixture("groups")["asubproject"]["uuid"],
50 assert_response :success
51 assert_equal(uuid_list, json_response["success"])
54 test "user with project read permission can't add permissions" do
55 share_uuid = api_fixture("users")["spectator"]["uuid"]
57 id: api_fixture("groups")["aproject"]["uuid"],
60 session_for(:project_viewer))
62 assert(json_response["errors"].andand.
63 any? { |msg| msg.start_with?("#{share_uuid}: ") },
64 "JSON response missing properly formatted sharing error")
67 test "admin can_manage aproject" do
68 assert user_can_manage(:admin, api_fixture("groups")["aproject"])
71 test "owner can_manage aproject" do
72 assert user_can_manage(:active, api_fixture("groups")["aproject"])
75 test "owner can_manage asubproject" do
76 assert user_can_manage(:active, api_fixture("groups")["asubproject"])
79 test "viewer can't manage aproject" do
80 refute user_can_manage(:project_viewer, api_fixture("groups")["aproject"])
83 test "viewer can't manage asubproject" do
84 refute user_can_manage(:project_viewer, api_fixture("groups")["asubproject"])
87 test "subproject_admin can_manage asubproject" do
88 assert user_can_manage(:subproject_admin, api_fixture("groups")["asubproject"])
91 test "detect ownership loop in project breadcrumbs" do
92 # This test has an arbitrary time limit -- otherwise we'd just sit
93 # here forever instead of reporting that the loop was not
94 # detected. The test passes quickly, but fails slowly.
95 Timeout::timeout 10 do
97 { id: api_fixture("groups")["project_owns_itself"]["uuid"] },
100 assert_response :success
103 test "project admin can remove collections from the project" do
104 # Deleting an object that supports 'trash_at' should make it
105 # completely inaccessible to API queries, not simply moved out of
107 coll_key = "collection_to_remove_from_subproject"
108 coll_uuid = api_fixture("collections")[coll_key]["uuid"]
110 { id: api_fixture("groups")["asubproject"]["uuid"],
111 item_uuid: coll_uuid,
113 session_for(:subproject_admin))
114 assert_response :success
115 assert_match(/\b#{coll_uuid}\b/, @response.body,
116 "removed object not named in response")
118 use_token :subproject_admin
119 assert_raise ArvadosApiClient::NotFoundException do
120 Collection.find(coll_uuid, cache: false)
124 test "project admin can remove items from project other than collections" do
125 # An object which does not have an trash_at field (e.g. Specimen)
126 # should be implicitly moved to the user's Home project when removed.
127 specimen_uuid = api_fixture('specimens', 'in_asubproject')['uuid']
129 { id: api_fixture('groups', 'asubproject')['uuid'],
130 item_uuid: specimen_uuid,
132 session_for(:subproject_admin))
133 assert_response :success
134 assert_match(/\b#{specimen_uuid}\b/, @response.body,
135 "removed object not named in response")
137 use_token :subproject_admin
138 new_specimen = Specimen.find(specimen_uuid)
139 assert_equal api_fixture('users', 'subproject_admin')['uuid'], new_specimen.owner_uuid
142 # An object which does not offer an expired_at field but has a xx_owner_uuid_name_unique constraint
143 # will be renamed when removed and another object with the same name exists in user's home project.
145 ['groups', 'subproject_in_asubproject_with_same_name_as_one_in_active_user_home'],
146 ['pipeline_templates', 'template_in_asubproject_with_same_name_as_one_in_active_user_home'],
147 ].each do |dm, fixture|
148 test "removing #{dm} from a subproject results in renaming it when there is another such object with same name in home project" do
149 object = api_fixture(dm, fixture)
151 { id: api_fixture('groups', 'asubproject')['uuid'],
152 item_uuid: object['uuid'],
154 session_for(:active))
155 assert_response :success
156 assert_match(/\b#{object['uuid']}\b/, @response.body,
157 "removed object not named in response")
160 found = Group.find(object['uuid'])
162 found = PipelineTemplate.find(object['uuid'])
164 assert_equal api_fixture('users', 'active')['uuid'], found.owner_uuid
165 assert_equal true, found.name.include?(object['name'] + ' removed from ')
169 test 'projects#show tab infinite scroll partial obeys limit' do
170 get_contents_rows(limit: 1, filters: [['uuid','is_a',['arvados#job']]])
171 assert_response :success
172 assert_equal(1, json_response['content'].scan('<tr').count,
173 "Did not get exactly one row")
176 ['', ' asc', ' desc'].each do |direction|
177 test "projects#show tab partial orders correctly by #{direction}" do
178 _test_tab_content_order direction
182 def _test_tab_content_order direction
183 get_contents_rows(limit: 100,
184 order: "created_at#{direction}",
185 filters: [['uuid','is_a',['arvados#job',
186 'arvados#pipelineInstance']]])
187 assert_response :success
188 not_grouped_by_kind = nil
192 json_response['content'].scan /<tr[^>]+>/ do |tr_tag|
194 tr_tag.scan(/\ data-object-created-at=\"(.*?)\"/).each do |t,|
196 correct_operator = / desc$/ =~ direction ? :>= : :<=
197 assert_operator(last_timestamp, correct_operator, t,
198 "Rows are not sorted by created_at#{direction}")
201 found_timestamps += 1
203 assert_equal(1, found_timestamps,
204 "Content row did not have exactly one timestamp")
206 # Confirm that the test for timestamp ordering couldn't have
207 # passed merely because the test fixtures have convenient
208 # timestamps (e.g., there is only one pipeline and one job in
209 # the project being tested, or there are no pipelines at all in
210 # the project being tested):
211 tr_tag.scan /\ data-kind=\"(.*?)\"/ do |kind|
212 if last_kind and last_kind != kind and found_kind[kind]
213 # We saw this kind before, then a different kind, then
214 # this kind again. That means objects are not grouped by
216 not_grouped_by_kind = true
218 found_kind[kind] ||= 0
219 found_kind[kind] += 1
223 assert_equal(true, not_grouped_by_kind,
224 "Could not confirm that results are not grouped by kind")
227 def get_contents_rows params
229 id: api_fixture('users')['active']['uuid'],
230 partial: :contents_rows,
233 encoded_params = Hash[params.map { |k,v|
234 [k, (v.is_a?(Array) || v.is_a?(Hash)) ? v.to_json : v]
236 get :show, encoded_params, session_for(:active)
239 test "visit non-public project as anonymous when anonymous browsing is enabled and expect page not found" do
240 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
241 get(:show, {id: api_fixture('groups')['aproject']['uuid']})
243 assert_match(/log ?in/i, @response.body)
246 test "visit home page as anonymous when anonymous browsing is enabled and expect login" do
247 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
249 assert_response :redirect
250 assert_match /\/users\/welcome/, @response.redirect_url
257 test "visit public projects page when anon config is enabled, as user #{user}, and expect page" do
258 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
261 get :public, {}, session_for(user)
266 assert_response :success
267 assert_not_nil assigns(:objects)
268 project_names = assigns(:objects).collect(&:name)
269 assert_includes project_names, 'Unrestricted public data'
270 assert_not_includes project_names, 'A Project'
271 refute_empty css_select('[href="/projects/public"]')
275 test "visit public projects page when anon config is not enabled as active user and expect 404" do
276 get :public, {}, session_for(:active)
280 test "visit public projects page when anon config is enabled but public projects page is disabled as active user and expect 404" do
281 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
282 Rails.configuration.enable_public_projects_page = false
283 get :public, {}, session_for(:active)
287 test "visit public projects page when anon config is not enabled as anonymous and expect login page" do
289 assert_response :redirect
290 assert_match /\/users\/welcome/, @response.redirect_url
291 assert_empty css_select('[href="/projects/public"]')
294 test "visit public projects page when anon config is enabled and public projects page is disabled and expect login page" do
295 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
296 Rails.configuration.enable_public_projects_page = false
298 assert_response :redirect
299 assert_match /\/users\/welcome/, @response.redirect_url
300 assert_empty css_select('[href="/projects/public"]')
303 test "visit public projects page when anon config is not enabled and public projects page is enabled and expect login page" do
304 Rails.configuration.enable_public_projects_page = true
306 assert_response :redirect
307 assert_match /\/users\/welcome/, @response.redirect_url
308 assert_empty css_select('[href="/projects/public"]')
311 test "find a project and edit its description" do
312 project = api_fixture('groups')['aproject']
314 found = Group.find(project['uuid'])
315 found.description = 'test description update'
317 get(:show, {id: project['uuid']}, session_for(:active))
318 assert_includes @response.body, 'test description update'
321 test "find a project and edit description to textile description" do
322 project = api_fixture('groups')['aproject']
324 found = Group.find(project['uuid'])
325 found.description = '*test bold description for textile formatting*'
327 get(:show, {id: project['uuid']}, session_for(:active))
328 assert_includes @response.body, '<strong>test bold description for textile formatting</strong>'
331 test "find a project and edit description to html description" do
332 project = api_fixture('groups')['aproject']
334 found = Group.find(project['uuid'])
335 found.description = 'Textile description with link to home page <a href="/">take me home</a>.'
337 get(:show, {id: project['uuid']}, session_for(:active))
338 assert_includes @response.body, 'Textile description with link to home page <a href="/">take me home</a>.'
341 test "find a project and edit description to textile description with link to object" do
342 project = api_fixture('groups')['aproject']
344 found = Group.find(project['uuid'])
346 # uses 'Link to object' as a hyperlink for the object
347 found.description = '"Link to object":' + api_fixture('groups')['asubproject']['uuid']
349 get(:show, {id: project['uuid']}, session_for(:active))
351 # check that input was converted to textile, not staying as inputted
352 refute_includes @response.body,'"Link to object"'
353 refute_empty css_select('[href="/groups/zzzzz-j7d0g-axqo7eu9pwvna1x"]')
356 test "project viewer can't see project sharing tab" do
357 project = api_fixture('groups')['aproject']
358 get(:show, {id: project['uuid']}, session_for(:project_viewer))
359 refute_includes @response.body, '<div id="Sharing"'
360 assert_includes @response.body, '<div id="Data_collections"'
367 test "#{username} can see project sharing tab" do
368 project = api_fixture('groups')['aproject']
369 get(:show, {id: project['uuid']}, session_for(username))
370 assert_includes @response.body, '<div id="Sharing"'
371 assert_includes @response.body, '<div id="Data_collections"'
378 ['project_viewer',false],
379 ].each do |user, can_move|
380 test "#{user} can move subproject from project #{can_move}" do
381 get(:show, {id: api_fixture('groups')['aproject']['uuid']}, session_for(user))
383 assert_includes @response.body, 'Move project...'
385 refute_includes @response.body, 'Move project...'
393 ].each do |user, expect_all_nodes|
394 test "in dashboard other index page links as #{user}" do
395 get :index, {}, session_for(user)
397 [["processes", "/all_processes"],
398 ["collections", "/collections"],
399 ].each do |target, path|
400 assert_includes @response.body, "href=\"#{path}\""
401 assert_includes @response.body, "All #{target}"
405 assert_includes @response.body, "href=\"/nodes\""
406 assert_includes @response.body, "All nodes"
408 assert_not_includes @response.body, "href=\"/nodes\""
409 assert_not_includes @response.body, "All nodes"
414 test "dashboard should show the correct status for processes" do
415 get :index, {}, session_for(:active)
416 assert_select 'div.panel-body.recent-processes' do
419 fixture: 'container_requests',
421 selectors: [['div.progress', false],
422 ['span.label.label-success', true, 'Complete']]
425 fixture: 'container_requests',
426 state: 'uncommitted',
427 selectors: [['div.progress', false],
428 ['span.label.label-default', true, 'Uncommitted']]
431 fixture: 'container_requests',
433 selectors: [['div.progress', false],
434 ['span.label.label-default', true, 'Queued']]
437 fixture: 'container_requests',
439 selectors: [['div.progress', true]]
442 fixture: 'pipeline_instances',
443 state: 'new_pipeline',
444 selectors: [['div.progress', false],
445 ['span.label.label-default', true, 'Not started']]
448 fixture: 'pipeline_instances',
449 state: 'pipeline_in_running_state',
450 selectors: [['div.progress', true]]
453 uuid = api_fixture(c[:fixture])[c[:state]]['uuid']
454 assert_select "div.dashboard-panel-info-row.row-#{uuid}" do
455 if c.include? :selectors
456 c[:selectors].each do |selector, should_show, label|
457 assert_select selector, should_show, "UUID #{uuid} should #{should_show ? '' : 'not'} show '#{selector}'"
458 if should_show and not label.nil?
459 assert_select selector, label, "UUID #{uuid} state label should show #{label}"
468 test "visit a public project and verify the public projects page link exists" do
469 Rails.configuration.anonymous_user_token = api_fixture('api_client_authorizations')['anonymous']['api_token']
470 uuid = api_fixture('groups')['anonymously_accessible_project']['uuid']
471 get :show, {id: uuid}
472 project = assigns(:object)
473 assert_equal uuid, project['uuid']
474 refute_empty css_select("[href=\"/projects/#{project['uuid']}\"]")
475 assert_includes @response.body, "<a href=\"/projects/public\">Public Projects</a>"
478 test 'all_projects unaffected by params after use by ProjectsController (#6640)' do
479 @controller = ProjectsController.new
480 project_uuid = api_fixture('groups')['aproject']['uuid']
482 filters: [['uuid', '<', project_uuid]].to_json,
485 }, session_for(:active)
486 assert_select "#projects-menu + ul li.divider ~ li a[href=/projects/#{project_uuid}]"
490 ["active", 5, ["aproject", "asubproject"], "anonymously_accessible_project"],
491 ["user1_with_load", 2, ["project_with_10_collections"], "project_with_2_pipelines_and_60_crs"],
492 ["admin", 5, ["anonymously_accessible_project", "subproject_in_anonymous_accessible_project"], "aproject"],
493 ].each do |user, page_size, tree_segment, unexpected|
494 # Note: this test is sensitive to database collation. It passes
496 test "build my projects tree for #{user} user and verify #{unexpected} is omitted" do
499 tree, _, _ = @controller.send(:my_wanted_projects_tree,
503 tree_segment_at_depth_1 = api_fixture('groups')[tree_segment[0]]
504 tree_segment_at_depth_2 = api_fixture('groups')[tree_segment[1]] if tree_segment[1]
508 node_depth[x[:object]['uuid']] = x[:depth]
511 assert_equal(1, node_depth[tree_segment_at_depth_1['uuid']])
512 assert_equal(2, node_depth[tree_segment_at_depth_2['uuid']]) if tree_segment[1]
514 unexpected_project = api_fixture('groups')[unexpected]
515 assert_nil(node_depth[unexpected_project['uuid']], node_depth.inspect)
521 ["project_viewer", 1],
523 ].each do |user, size|
524 test "starred projects for #{user}" do
526 ctrl = ProjectsController.new
527 current_user = User.find(api_fixture('users')[user]['uuid'])
528 my_starred_project = ctrl.send :my_starred_projects, current_user
529 assert_equal(size, my_starred_project.andand.size)
531 ctrl2 = ProjectsController.new
532 current_user = User.find(api_fixture('users')[user]['uuid'])
533 my_starred_project = ctrl2.send :my_starred_projects, current_user
534 assert_equal(size, my_starred_project.andand.size)
538 test "unshare project and verify that it is no longer included in shared user's starred projects" do
539 # remove sharing link
540 use_token :system_user
541 Link.find(api_fixture('links')['share_starred_project_with_project_viewer']['uuid']).destroy
543 # verify that project is no longer included in starred projects
544 use_token :project_viewer
545 current_user = User.find(api_fixture('users')['project_viewer']['uuid'])
546 ctrl = ProjectsController.new
547 my_starred_project = ctrl.send :my_starred_projects, current_user
548 assert_equal(0, my_starred_project.andand.size)
551 @controller = LinksController.new
554 link_class: 'permission',
556 head_uuid: api_fixture('groups')['starred_and_shared_active_user_project']['uuid'],
557 tail_uuid: api_fixture('users')['project_viewer']['uuid'],
560 }, session_for(:system_user)
562 # verify that the project is again included in starred projects
563 use_token :project_viewer
564 ctrl = ProjectsController.new
565 my_starred_project = ctrl.send :my_starred_projects, current_user
566 assert_equal(1, my_starred_project.andand.size)