2017-04-24 17:30:30 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe Oauth::AuthorizedApplicationsController do
|
2017-04-24 17:30:30 +02:00
|
|
|
render_views
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
2017-05-29 18:08:05 +02:00
|
|
|
subject do
|
2017-04-24 17:30:30 +02:00
|
|
|
get :index
|
|
|
|
end
|
|
|
|
|
2017-05-29 18:08:05 +02:00
|
|
|
context 'when signed in' do
|
|
|
|
before do
|
|
|
|
sign_in Fabricate(:user), scope: :user
|
|
|
|
end
|
|
|
|
|
2024-09-25 09:56:08 +02:00
|
|
|
it 'returns http success with private cache control headers' do
|
2017-05-29 18:08:05 +02:00
|
|
|
subject
|
2024-09-25 09:56:08 +02:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
expect(response.headers['Cache-Control'])
|
|
|
|
.to include('private, no-store')
|
|
|
|
expect(controller.stored_location_for(:user))
|
|
|
|
.to eq '/oauth/authorized_applications'
|
2017-05-29 18:08:05 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when not signed in' do
|
|
|
|
it 'redirects' do
|
|
|
|
subject
|
|
|
|
|
2024-09-25 09:56:08 +02:00
|
|
|
expect(response)
|
|
|
|
.to redirect_to '/auth/sign_in'
|
|
|
|
expect(controller.stored_location_for(:user))
|
|
|
|
.to eq '/oauth/authorized_applications'
|
|
|
|
end
|
2017-04-24 17:30:30 +02:00
|
|
|
end
|
|
|
|
end
|
2018-05-19 21:05:08 +02:00
|
|
|
|
|
|
|
describe 'DELETE #destroy' do
|
|
|
|
let!(:user) { Fabricate(:user) }
|
|
|
|
let!(:application) { Fabricate(:application) }
|
|
|
|
let!(:access_token) { Fabricate(:accessible_access_token, application: application, resource_owner_id: user.id) }
|
|
|
|
let!(:web_push_subscription) { Fabricate(:web_push_subscription, user: user, access_token: access_token) }
|
2024-07-04 16:11:28 +02:00
|
|
|
let(:redis_pipeline_stub) { instance_double(Redis::Namespace, publish: nil) }
|
2018-05-19 21:05:08 +02:00
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in user, scope: :user
|
2024-07-04 16:11:28 +02:00
|
|
|
allow(redis).to receive(:pipelined).and_yield(redis_pipeline_stub)
|
2018-05-19 21:05:08 +02:00
|
|
|
end
|
|
|
|
|
2024-09-25 09:56:08 +02:00
|
|
|
it 'revokes access tokens for the application and removes subscriptions and sends kill payload to streaming' do
|
|
|
|
post :destroy, params: { id: application.id }
|
2024-07-04 16:11:28 +02:00
|
|
|
|
2024-09-25 09:56:08 +02:00
|
|
|
expect(Doorkeeper::AccessToken.where(application: application).first.revoked_at)
|
|
|
|
.to_not be_nil
|
|
|
|
expect(Web::PushSubscription.where(user: user).count)
|
|
|
|
.to eq(0)
|
|
|
|
expect { web_push_subscription.reload }
|
|
|
|
.to raise_error(ActiveRecord::RecordNotFound)
|
|
|
|
expect(redis_pipeline_stub)
|
|
|
|
.to have_received(:publish).with("timeline:access_token:#{access_token.id}", '{"event":"kill"}')
|
2024-07-04 16:11:28 +02:00
|
|
|
end
|
2018-05-19 21:05:08 +02:00
|
|
|
end
|
2017-04-24 17:30:30 +02:00
|
|
|
end
|