X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ad02c4a8569b1cbf7336b5d65beb065e17420d56..94b5a59631f22e4e57561a6244c24b93db77f589:/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 d7595ad9f2..217809ae65 100644 --- a/services/api/test/functional/arvados/v1/groups_controller_test.rb +++ b/services/api/test/functional/arvados/v1/groups_controller_test.rb @@ -16,11 +16,11 @@ class Arvados::V1::GroupsControllerTest < ActionController::TestCase test "get list of projects" do authorize_with :active - get :index, filters: [['group_class', 'in', ['project', 'folder']]], format: :json + get :index, filters: [['group_class', '=', 'project']], format: :json assert_response :success group_uuids = [] json_response['items'].each do |group| - assert_includes ['folder', 'project'], group['group_class'] + assert_equal 'project', group['group_class'] group_uuids << group['uuid'] end assert_includes group_uuids, groups(:aproject).uuid @@ -90,6 +90,46 @@ class Arvados::V1::GroupsControllerTest < ActionController::TestCase check_project_contents_response end + [false, true].each do |include_linked| + test "list objects across projects, include_linked=#{include_linked}" do + authorize_with :project_viewer + get :contents, { + format: :json, + include_linked: include_linked, + 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 + end + + [false, true].each do |include_linked| + test "list objects in home project, include_linked=#{include_linked}" do + authorize_with :active + get :contents, { + format: :json, + id: users(:active).uuid, + include_linked: include_linked, + } + assert_response :success + found_uuids = json_response['items'].collect { |i| i['uuid'] } + if include_linked + assert_includes found_uuids, collections(:empty).uuid, "empty collection did not appear in home project" + end + 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 + end + test "user with project read permission can see project collections" do authorize_with :project_viewer get :contents, {