~cytrogen/masto-fe

ref: c97b611b6bce3b0e2c6b53f4f680787a930e2a69 masto-fe/spec/controllers/oauth/tokens_controller_spec.rb -rw-r--r-- 826 bytes
c97b611b — Matt Jankowski Fix RSpec/InferredSpecType cop (#24736) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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) }

    before do
      post :revoke, params: { client_id: application.uid, token: access_token.token }
    end

    it 'revokes the token' do
      expect(access_token.reload.revoked_at).to_not be_nil
    end

    it 'removes web push subscription for token' do
      expect(Web::PushSubscription.where(access_token: access_token).count).to eq 0
    end
  end
end