X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3c87946740b83f612561f998f7d83586593be830..927524f1be454de021180b74999d682780b8cb6b:/services/api/test/integration/groups_test.rb?ds=sidebyside diff --git a/services/api/test/integration/groups_test.rb b/services/api/test/integration/groups_test.rb index eb97fc1f49..e76f2b5406 100644 --- a/services/api/test/integration/groups_test.rb +++ b/services/api/test/integration/groups_test.rb @@ -64,46 +64,6 @@ class GroupsTest < ActionDispatch::IntegrationTest end end - [ - ['Collection_', true], # collections and pipelines templates - ['hash', true], # pipeline templates - ['fa7aeb5140e2848d39b', false], # script_parameter of pipeline instances - ['fa7aeb5140e2848d39b:*', true], # script_parameter of pipeline instances - ['project pipeline', true], # finds "Completed pipeline in A Project" - ['project pipeli:*', true], # finds "Completed pipeline in A Project" - ['proje pipeli:*', false], # first word is incomplete, so no prefix match - ['no-such-thing', false], # script_parameter of pipeline instances - ].each do |search_filter, expect_results| - test "full text search of group-owned objects for #{search_filter}" do - get "/arvados/v1/groups/contents", - params: { - id: groups(:aproject).uuid, - limit: 5, - :filters => [['any', '@@', search_filter]].to_json - }, - headers: auth(:active) - assert_response :success - if expect_results - refute_empty json_response['items'] - json_response['items'].each do |item| - assert item['uuid'] - assert_equal groups(:aproject).uuid, item['owner_uuid'] - end - else - assert_empty json_response['items'] - end - end - end - - test "full text search is not supported for individual columns" do - get "/arvados/v1/groups/contents", - params: { - :filters => [['name', '@@', 'Private']].to_json - }, - headers: auth(:active) - assert_response 422 - end - test "group contents with include trash collections" do get "/arvados/v1/groups/contents", params: { @@ -177,6 +137,26 @@ class GroupsTest < ActionDispatch::IntegrationTest end assert_equal true, found_projects.include?(groups(:starred_and_shared_active_user_project).uuid) end + + test 'count none works with offset' do + first_results = nil + (0..10).each do |offset| + get "/arvados/v1/groups/contents", params: { + id: groups(:aproject).uuid, + offset: offset, + format: :json, + order: :uuid, + count: :none, + }, headers: auth(:active) + assert_response :success + assert_nil json_response['items_available'] + if first_results.nil? + first_results = json_response['items'] + else + assert_equal first_results[offset]['uuid'], json_response['items'][0]['uuid'] + end + end + end end class NonTransactionalGroupsTest < ActionDispatch::IntegrationTest @@ -193,23 +173,28 @@ class NonTransactionalGroupsTest < ActionDispatch::IntegrationTest assert_response :success end - test "create request with async=true defers permissions update" do + test "create request with async=true does not defer permissions update" do Rails.configuration.API.AsyncPermissionsUpdateInterval = 1 # second name = "Random group #{rand(1000)}" assert_equal nil, Group.find_by_name(name) + # Following the implementation of incremental permission updates + # (#16007) the async flag is now a no-op. Permission changes are + # visible immediately. + # Trigger the asynchronous permission update by using async=true parameter. post "/arvados/v1/groups", params: { group: { - name: name + name: name, + group_class: "project" }, async: true }, headers: auth(:active) assert_response 202 - # The group exists on the database, but it's not accessible yet. + # The group exists in the database assert_not_nil Group.find_by_name(name) get "/arvados/v1/groups", params: { @@ -218,7 +203,7 @@ class NonTransactionalGroupsTest < ActionDispatch::IntegrationTest }, headers: auth(:active) assert_response 200 - assert_equal 0, json_response['items_available'] + assert_equal 1, json_response['items_available'] # Wait a bit and try again. sleep(1)