X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2d4263c16812a906589cbc13be26535a85691bd8..4139c5dfde60cdd20d39f385ca36107b0c44906f:/services/api/test/unit/api_client_authorization_test.rb diff --git a/services/api/test/unit/api_client_authorization_test.rb b/services/api/test/unit/api_client_authorization_test.rb index b5b07d1f78..c390a02c04 100644 --- a/services/api/test/unit/api_client_authorization_test.rb +++ b/services/api/test/unit/api_client_authorization_test.rb @@ -1,7 +1,29 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' +require 'sweep_trashed_objects' class ApiClientAuthorizationTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end + include CurrentApiClient + + [:admin_trustedclient, :active_trustedclient].each do |token| + test "ApiClientAuthorization can be created then deleted by #{token}" do + set_user_from_auth token + x = ApiClientAuthorization.create!(user_id: current_user.id, + api_client_id: 0, + scopes: []) + newtoken = x.api_token + assert x.destroy, "Failed to destroy new ApiClientAuth" + assert_empty ApiClientAuthorization.where(api_token: newtoken), "Destroyed ApiClientAuth is still in database" + end + end + + test "delete expired in SweepTrashedObjects" do + assert_not_empty ApiClientAuthorization.where(uuid: api_client_authorizations(:expired).uuid) + SweepTrashedObjects.sweep_now + assert_empty ApiClientAuthorization.where(uuid: api_client_authorizations(:expired).uuid) + end + end