X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f4ca9ad94a6bb006d1f3c7ba207837f1736d1247..5b863886118890cc81b728a3a606ea823c836f2b:/services/api/test/integration/groups_test.rb diff --git a/services/api/test/integration/groups_test.rb b/services/api/test/integration/groups_test.rb index 2afece9563..6b1bf795ed 100644 --- a/services/api/test/integration/groups_test.rb +++ b/services/api/test/integration/groups_test.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' class GroupsTest < ActionDispatch::IntegrationTest @@ -91,4 +95,63 @@ class GroupsTest < ActionDispatch::IntegrationTest }, auth(:active) assert_response 422 end + + test "group contents with include trash collections" do + get "/arvados/v1/groups/contents", { + include_trash: "true", + filters: [["uuid", "is_a", "arvados#collection"]].to_json, + limit: 1000 + }, auth(:active) + assert_response 200 + + coll_uuids = [] + json_response['items'].each { |c| coll_uuids << c['uuid'] } + assert_includes coll_uuids, collections(:foo_collection_in_aproject).uuid + assert_includes coll_uuids, collections(:expired_collection).uuid + end + + test "group contents without trash collections" do + get "/arvados/v1/groups/contents", { + filters: [["uuid", "is_a", "arvados#collection"]].to_json, + limit: 1000 + }, auth(:active) + assert_response 200 + + coll_uuids = [] + json_response['items'].each { |c| coll_uuids << c['uuid'] } + assert_includes coll_uuids, collections(:foo_collection_in_aproject).uuid + assert_not_includes coll_uuids, collections(:expired_collection).uuid + end + + test "create request with async=true defers permissions update" do + Rails.configuration.async_permissions_update_interval = 1 # seconds + name = "Random group #{rand(1000)}" + assert_equal nil, Group.find_by_name(name) + post "/arvados/v1/groups", { + group: { + name: name + }, + async: true + }, auth(:active) + assert_response 202 + g = Group.find_by_name(name) + assert_not_nil g + get "/arvados/v1/groups", { + filters: [["name", "=", name]].to_json, + limit: 10 + }, auth(:active) + assert_response 200 + assert_equal 0, json_response['items_available'] + + # Unblock the thread doing the permissions update + ActiveRecord::Base.clear_active_connections! + + sleep(3) + get "/arvados/v1/groups", { + filters: [["name", "=", name]].to_json, + limit: 10 + }, auth(:active) + assert_response 200 + assert_equal 1, json_response['items_available'] + end end