X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d325f035a861d1421f6e2fe0d2f01e9f3e93d749..1a4282c6d30b209a882c255e0d5777851ff6f034:/services/api/test/functional/arvados/v1/groups_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/groups_controller_test.rb b/services/api/test/functional/arvados/v1/groups_controller_test.rb index 5b0fd59b30..c974076c6f 100644 --- a/services/api/test/functional/arvados/v1/groups_controller_test.rb +++ b/services/api/test/functional/arvados/v1/groups_controller_test.rb @@ -14,64 +14,358 @@ class Arvados::V1::GroupsControllerTest < ActionController::TestCase assert_response 403 end - test "get list of folders" do + test "get list of projects" do authorize_with :active - get :index, filters: [['group_class', '=', 'folder']], format: :json + get :index, filters: [['group_class', '=', 'project']], format: :json assert_response :success group_uuids = [] - jresponse['items'].each do |group| - assert_equal 'folder', group['group_class'] + json_response['items'].each do |group| + assert_equal 'project', group['group_class'] group_uuids << group['uuid'] end - assert_not_nil group_uuids.index groups(:afolder).uuid - assert_not_nil group_uuids.index groups(:asubfolder).uuid + assert_includes group_uuids, groups(:aproject).uuid + assert_includes group_uuids, groups(:asubproject).uuid + assert_not_includes group_uuids, groups(:system_group).uuid + assert_not_includes group_uuids, groups(:private).uuid + end + + test "get list of groups that are not projects" do + authorize_with :active + get :index, filters: [['group_class', '!=', 'project']], format: :json + assert_response :success + group_uuids = [] + json_response['items'].each do |group| + assert_not_equal 'project', group['group_class'] + group_uuids << group['uuid'] + end + assert_not_includes group_uuids, groups(:aproject).uuid + assert_not_includes group_uuids, groups(:asubproject).uuid + assert_includes group_uuids, groups(:private).uuid + end + + test "get list of groups with bogus group_class" do + authorize_with :active + get :index, { + filters: [['group_class', '=', 'nogrouphasthislittleclass']], + format: :json, + } + assert_response :success + assert_equal [], json_response['items'] + assert_equal 0, json_response['items_available'] + end + + def check_project_contents_response + assert_response :success + assert_operator 2, :<=, json_response['items_available'] + assert_operator 2, :<=, json_response['items'].count + kinds = json_response['items'].collect { |i| i['kind'] }.uniq + expect_kinds = %w'arvados#group arvados#specimen arvados#pipelineTemplate arvados#job' + assert_equal expect_kinds, (expect_kinds & kinds) + + json_response['items'].each do |i| + if i['kind'] == 'arvados#group' + assert(i['group_class'] == 'project', + "group#contents returned a non-project group") + end + end end test 'get group-owned objects' do authorize_with :active - get :owned_items, { - id: groups(:afolder).uuid, + get :contents, { + id: groups(:aproject).uuid, + format: :json, + include_linked: true, + } + check_project_contents_response + end + + test "user with project read permission can see project objects" do + authorize_with :project_viewer + get :contents, { + id: groups(:aproject).uuid, + format: :json, + include_linked: true, + } + check_project_contents_response + end + + test "list objects across projects" do + authorize_with :project_viewer + get :contents, { + format: :json, + filters: [['uuid', 'is_a', 'arvados#specimen']] + } + assert_response :success + found_uuids = json_response['items'].collect { |i| i['uuid'] } + [[:in_aproject, true], + [:in_asubproject, true], + [:owned_by_private_group, false]].each do |specimen_fixture, should_find| + if should_find + assert_includes found_uuids, specimens(specimen_fixture).uuid, "did not find specimen fixture '#{specimen_fixture}'" + else + refute_includes found_uuids, specimens(specimen_fixture).uuid, "found specimen fixture '#{specimen_fixture}'" + end + end + end + + test "list objects in home project" do + authorize_with :active + get :contents, { format: :json, + id: users(:active).uuid } assert_response :success - assert_operator 2, :<=, jresponse['items_available'] - assert_operator 2, :<=, jresponse['items'].count + found_uuids = json_response['items'].collect { |i| i['uuid'] } + assert_includes found_uuids, specimens(:owned_by_active_user).uuid, "specimen did not appear in home project" + refute_includes found_uuids, specimens(:in_asubproject).uuid, "specimen appeared unexpectedly in home project" + end + + test "user with project read permission can see project collections" do + authorize_with :project_viewer + get :contents, { + id: groups(:asubproject).uuid, + format: :json, + } + ids = json_response['items'].map { |item| item["uuid"] } + assert_includes ids, collections(:baz_file_in_asubproject).uuid + end + + [['asc', :<=], + ['desc', :>=]].each do |order, operator| + test "user with project read permission can sort project collections #{order}" do + authorize_with :project_viewer + get :contents, { + id: groups(:asubproject).uuid, + format: :json, + filters: [['uuid', 'is_a', "arvados#collection"]], + order: "collections.name #{order}" + } + sorted_names = json_response['items'].collect { |item| item["name"] } + # Here we avoid assuming too much about the database + # collation. Both "alice"<"Bob" and "alice">"Bob" can be + # correct. Hopefully it _is_ safe to assume that if "a" comes + # before "b" in the ascii alphabet, "aX">"bY" is never true for + # any strings X and Y. + reliably_sortable_names = sorted_names.select do |name| + name[0] >= 'a' and name[0] <= 'z' + end.uniq do |name| + name[0] + end + # Preserve order of sorted_names. But do not use &=. If + # sorted_names has out-of-order duplicates, we want to preserve + # them here, so we can detect them and fail the test below. + sorted_names.select! do |name| + reliably_sortable_names.include? name + end + actually_checked_anything = false + previous = nil + sorted_names.each do |entry| + if previous + assert_operator(previous, operator, entry, + "Entries sorted incorrectly.") + actually_checked_anything = true + end + previous = entry + end + assert actually_checked_anything, "Didn't even find two names to compare." + end + end + + test 'list objects across multiple projects' do + authorize_with :project_viewer + get :contents, { + format: :json, + include_linked: false, + filters: [['uuid', 'is_a', 'arvados#specimen']] + } + assert_response :success + found_uuids = json_response['items'].collect { |i| i['uuid'] } + [[:in_aproject, true], + [:in_asubproject, true], + [:owned_by_private_group, false]].each do |specimen_fixture, should_find| + if should_find + assert_includes found_uuids, specimens(specimen_fixture).uuid, "did not find specimen fixture '#{specimen_fixture}'" + else + refute_includes found_uuids, specimens(specimen_fixture).uuid, "found specimen fixture '#{specimen_fixture}'" + end + end + end + + # Even though the project_viewer tests go through other controllers, + # I'm putting them here so they're easy to find alongside the other + # project tests. + def check_new_project_link_fails(link_attrs) + @controller = Arvados::V1::LinksController.new + post :create, link: { + link_class: "permission", + name: "can_read", + head_uuid: groups(:aproject).uuid, + }.merge(link_attrs) + assert_includes(403..422, response.status) + end + + test "user with project read permission can't add users to it" do + authorize_with :project_viewer + check_new_project_link_fails(tail_uuid: users(:spectator).uuid) + end + + test "user with project read permission can't add items to it" do + authorize_with :project_viewer + check_new_project_link_fails(tail_uuid: collections(:baz_file).uuid) + end + + test "user with project read permission can't rename items in it" do + authorize_with :project_viewer + @controller = Arvados::V1::LinksController.new + post :update, { + id: jobs(:running).uuid, + name: "Denied test name", + } + assert_includes(403..404, response.status) + end + + test "user with project read permission can't remove items from it" do + @controller = Arvados::V1::PipelineTemplatesController.new + authorize_with :project_viewer + post :update, { + id: pipeline_templates(:two_part).uuid, + pipeline_template: { + owner_uuid: users(:project_viewer).uuid, + } + } + assert_response 403 + end + + test "user with project read permission can't delete it" do + authorize_with :project_viewer + post :destroy, {id: groups(:aproject).uuid} + assert_response 403 end test 'get group-owned objects with limit' do authorize_with :active - get :owned_items, { - id: groups(:afolder).uuid, + get :contents, { + id: groups(:aproject).uuid, limit: 1, format: :json, } assert_response :success - assert_operator 1, :<, jresponse['items_available'] - assert_equal 1, jresponse['items'].count + assert_operator 1, :<, json_response['items_available'] + assert_equal 1, json_response['items'].count end test 'get group-owned objects with limit and offset' do authorize_with :active - get :owned_items, { - id: groups(:afolder).uuid, + get :contents, { + id: groups(:aproject).uuid, limit: 1, offset: 12345, format: :json, } assert_response :success - assert_operator 1, :<, jresponse['items_available'] - assert_equal 0, jresponse['items'].count + assert_operator 1, :<, json_response['items_available'] + assert_equal 0, json_response['items'].count end test 'get group-owned objects with additional filter matching nothing' do authorize_with :active - get :owned_items, { - id: groups(:afolder).uuid, + get :contents, { + id: groups(:aproject).uuid, filters: [['uuid', 'in', ['foo_not_a_uuid','bar_not_a_uuid']]], format: :json, } assert_response :success - assert_equal [], jresponse['items'] - assert_equal 0, jresponse['items_available'] + assert_equal [], json_response['items'] + assert_equal 0, json_response['items_available'] + end + + %w(offset limit).each do |arg| + ['foo', '', '1234five', '0x10', '-8'].each do |val| + test "Raise error on bogus #{arg} parameter #{val.inspect}" do + authorize_with :active + get :contents, { + :id => groups(:aproject).uuid, + :format => :json, + arg => val, + } + assert_response 422 + end + end + end + + test 'get writable_by list for owned group' do + authorize_with :active + get :show, { + id: groups(:aproject).uuid, + format: :json + } + assert_response :success + assert_not_nil(json_response['writable_by'], + "Should receive uuid list in 'writable_by' field") + assert_includes(json_response['writable_by'], users(:active).uuid, + "owner should be included in writable_by list") + end + + test 'no writable_by list for group with read-only access' do + authorize_with :rominiadmin + get :show, { + id: groups(:testusergroup_admins).uuid, + format: :json + } + assert_response :success + assert_equal([json_response['owner_uuid']], + json_response['writable_by'], + "Should only see owner_uuid in 'writable_by' field") + end + + test 'get writable_by list by admin user' do + authorize_with :admin + get :show, { + id: groups(:testusergroup_admins).uuid, + format: :json + } + assert_response :success + assert_not_nil(json_response['writable_by'], + "Should receive uuid list in 'writable_by' field") + assert_includes(json_response['writable_by'], + users(:admin).uuid, + "Current user should be included in 'writable_by' field") + end + + test 'creating subproject with duplicate name fails' do + authorize_with :active + post :create, { + group: { + name: 'A Project', + owner_uuid: users(:active).uuid, + group_class: 'project', + }, + } + assert_response 422 + response_errors = json_response['errors'] + assert_not_nil response_errors, 'Expected error in response' + assert(response_errors.first.include?('duplicate key'), + "Expected 'duplicate key' error in #{response_errors.first}") + end + + test 'creating duplicate named subproject succeeds with ensure_unique_name' do + authorize_with :active + post :create, { + group: { + name: 'A Project', + owner_uuid: users(:active).uuid, + group_class: 'project', + }, + ensure_unique_name: true + } + assert_response :success + new_project = json_response + assert_not_equal(new_project['uuid'], + groups(:aproject).uuid, + "create returned same uuid as existing project") + assert_equal(new_project['name'], + 'A Project (2)', + "new project name '#{new_project['name']}' was expected to be 'A Project (2)'") end end