X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0f644e242ef37c911ad3dc25aca8135c339de349..0145b3654f3af993b03719996385dedd2e803c08:/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 6226ffd16c..cf0261585a 100644 --- a/services/api/test/integration/groups_test.rb +++ b/services/api/test/integration/groups_test.rb @@ -99,7 +99,8 @@ class GroupsTest < ActionDispatch::IntegrationTest test "group contents with include trash collections" do get "/arvados/v1/groups/contents", { include_trash: "true", - filters: [["uuid", "is_a", "arvados#collection"]].to_json + filters: [["uuid", "is_a", "arvados#collection"]].to_json, + limit: 1000 }, auth(:active) assert_response 200 @@ -108,4 +109,65 @@ class GroupsTest < ActionDispatch::IntegrationTest 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 +end + +class NonTransactionalGroupsTest < ActionDispatch::IntegrationTest + # Transactional tests are disabled to be able to test the concurrent + # asynchronous permissions update feature. + # This is needed because nested transactions share the connection pool, so + # one thread is locked while trying to talk to the database, until the other + # one finishes. + self.use_transactional_fixtures = false + + teardown do + # Explicitly reset the database after each test. + post '/database/reset', {}, auth(:admin) + assert_response :success + end + + test "create request with async=true defers permissions update" do + Rails.configuration.async_permissions_update_interval = 1 # second + name = "Random group #{rand(1000)}" + assert_equal nil, Group.find_by_name(name) + + # Trigger the asynchronous permission update by using async=true parameter. + post "/arvados/v1/groups", { + group: { + name: name + }, + async: true + }, auth(:active) + assert_response 202 + + # The group exists on the database, but it's not accessible yet. + assert_not_nil Group.find_by_name(name) + get "/arvados/v1/groups", { + filters: [["name", "=", name]].to_json, + limit: 10 + }, auth(:active) + assert_response 200 + assert_equal 0, json_response['items_available'] + + # Wait a bit and try again. + sleep(1) + 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