mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 18:48:06 +01:00
23 lines
888 B
Ruby
23 lines
888 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Oauth::TokensController do
|
|
describe 'POST #revoke' do
|
|
let!(:user) { Fabricate(:user) }
|
|
let!(:application) { Fabricate(:application, confidential: false) }
|
|
let!(:access_token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, application: application) }
|
|
let!(:web_push_subscription) { Fabricate(:web_push_subscription, user: user, access_token: access_token) }
|
|
|
|
it 'revokes the token and removes subscriptions' do
|
|
post :revoke, params: { client_id: application.uid, token: access_token.token }
|
|
|
|
expect(access_token.reload.revoked_at)
|
|
.to_not be_nil
|
|
expect(Web::PushSubscription.where(access_token: access_token).count)
|
|
.to eq(0)
|
|
expect { web_push_subscription.reload }
|
|
.to raise_error(ActiveRecord::RecordNotFound)
|
|
end
|
|
end
|
|
end
|