Automatically remove invalid Web::PushSubscriptions (#35987)
This commit is contained in:
@@ -36,6 +36,9 @@ RSpec.describe Web::PushNotificationWorker do
|
||||
let(:std_input) { 'When I grow up, I want to be a watermelon' }
|
||||
let(:std_ciphertext) { 'DGv6ra1nlYgDCS1FRnbzlwAAEABBBP4z9KsN6nGRTbVYI_c7VJSPQTBtkgcy27mlmlMoZIIgDll6e3vCYLocInmYWAmS6TlzAC8wEqKK6PBru3jl7A_yl95bQpu6cVPTpK4Mqgkf1CXztLVBSt2Ks3oZwbuwXPXLWyouBWLVWGNWQexSgSxsj_Qulcy4a-fN' }
|
||||
|
||||
# Invalid subscription:
|
||||
let(:invalid_subscription) { Fabricate.build(:web_push_subscription, user_id: user.id, key_p256dh: 'invalid', key_auth: 'invalid', endpoint: endpoint, standard: true, data: { alerts: { notification.type => true } }) }
|
||||
|
||||
describe 'perform' do
|
||||
around do |example|
|
||||
original_private = Rails.configuration.x.vapid.private_key
|
||||
@@ -83,6 +86,25 @@ RSpec.describe Web::PushNotificationWorker do
|
||||
end
|
||||
# rubocop:enable RSpec/SubjectStub
|
||||
|
||||
context 'with invalid record that will fail' do
|
||||
before do
|
||||
# Fabricator always runs validation, here we deliberately want to bypass
|
||||
# the validation, simulating an invalid Web::PushSubscription that was
|
||||
# created before PRs #30542, #30540 added validation.
|
||||
invalid_subscription.save(validate: false)
|
||||
end
|
||||
|
||||
it 'removes the record and does not process the request' do
|
||||
expect { subject.perform(invalid_subscription.id, notification.id) }
|
||||
.to_not raise_error
|
||||
|
||||
expect { invalid_subscription.reload }
|
||||
.to raise_error ActiveRecord::RecordNotFound
|
||||
|
||||
expect(a_request(:post, endpoint)).to_not have_been_made
|
||||
end
|
||||
end
|
||||
|
||||
def legacy_web_push_endpoint_request
|
||||
a_request(
|
||||
:post,
|
||||
|
||||
Reference in New Issue
Block a user