X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5c9aedbd8e623a518f5e1a92e4064a25ddd66353..6ad31a32b13094ce162a2175956232403b13693f:/apps/workbench/test/controllers/projects_controller_test.rb diff --git a/apps/workbench/test/controllers/projects_controller_test.rb b/apps/workbench/test/controllers/projects_controller_test.rb index d31d6e3458..1b19f2f493 100644 --- a/apps/workbench/test/controllers/projects_controller_test.rb +++ b/apps/workbench/test/controllers/projects_controller_test.rb @@ -101,8 +101,9 @@ class ProjectsControllerTest < ActionController::TestCase end test "project admin can remove collections from the project" do - # Deleting an object that supports 'expires_at' should make it - # completely inaccessible to API queries, not simply moved out of the project. + # Deleting an object that supports 'trash_at' should make it + # completely inaccessible to API queries, not simply moved out of + # the project. coll_key = "collection_to_remove_from_subproject" coll_uuid = api_fixture("collections")[coll_key]["uuid"] delete(:remove_item, @@ -116,12 +117,12 @@ class ProjectsControllerTest < ActionController::TestCase use_token :subproject_admin assert_raise ArvadosApiClient::NotFoundException do - Collection.find(coll_uuid) + Collection.find(coll_uuid, cache: false) end end test "project admin can remove items from project other than collections" do - # An object which does not have an expired_at field (e.g. Specimen) + # An object which does not have an trash_at field (e.g. Specimen) # should be implicitly moved to the user's Home project when removed. specimen_uuid = api_fixture('specimens', 'in_asubproject')['uuid'] delete(:remove_item, @@ -490,27 +491,28 @@ class ProjectsControllerTest < ActionController::TestCase ["user1_with_load", 2, ["project_with_10_collections"], "project_with_2_pipelines_and_60_crs"], ["admin", 5, ["anonymously_accessible_project", "subproject_in_anonymous_accessible_project"], "aproject"], ].each do |user, page_size, tree_segment, unexpected| + # Note: this test is sensitive to database collation. It passes + # with en_US.UTF-8. test "build my projects tree for #{user} user and verify #{unexpected} is omitted" do use_token user - ctrl = ProjectsController.new - - current_user = User.find(api_fixture('users')[user]['uuid']) - my_tree = ctrl.send :my_wanted_projects_tree, current_user, page_size + tree, _, _ = @controller.send(:my_wanted_projects_tree, + User.current, + page_size) tree_segment_at_depth_1 = api_fixture('groups')[tree_segment[0]] tree_segment_at_depth_2 = api_fixture('groups')[tree_segment[1]] if tree_segment[1] - tree_nodes = {} - my_tree[0].each do |x| - tree_nodes[x[:object]['uuid']] = x[:depth] + node_depth = {} + tree.each do |x| + node_depth[x[:object]['uuid']] = x[:depth] end - assert_equal(1, tree_nodes[tree_segment_at_depth_1['uuid']]) - assert_equal(2, tree_nodes[tree_segment_at_depth_2['uuid']]) if tree_segment[1] + assert_equal(1, node_depth[tree_segment_at_depth_1['uuid']]) + assert_equal(2, node_depth[tree_segment_at_depth_2['uuid']]) if tree_segment[1] unexpected_project = api_fixture('groups')[unexpected] - assert_nil(tree_nodes[unexpected_project['uuid']]) + assert_nil(node_depth[unexpected_project['uuid']], node_depth.inspect) end end