2020-06-04 18:45:50 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Notification::PushNotificationService do
|
|
|
|
let!(:account) { create(:account) }
|
|
|
|
let!(:user) { create(:user, account: account) }
|
|
|
|
let!(:notification) { create(:notification, user: user, account: user.accounts.first) }
|
|
|
|
let(:fcm_double) { double }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(Webpush).to receive(:payload_send).and_return(true)
|
|
|
|
allow(FCM).to receive(:new).and_return(fcm_double)
|
|
|
|
allow(fcm_double).to receive(:send).and_return({ body: { 'results': [] }.to_json })
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#perform' do
|
|
|
|
it 'sends webpush notifications for webpush subscription' do
|
2021-10-25 07:43:25 +00:00
|
|
|
with_modified_env VAPID_PUBLIC_KEY: 'test' do
|
|
|
|
create(:notification_subscription, user: notification.user)
|
2020-06-04 18:45:50 +00:00
|
|
|
|
2021-10-25 07:43:25 +00:00
|
|
|
described_class.new(notification: notification).perform
|
|
|
|
expect(Webpush).to have_received(:payload_send)
|
|
|
|
expect(FCM).not_to have_received(:new)
|
|
|
|
end
|
2020-06-04 18:45:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends a fcm notification for firebase subscription' do
|
2021-10-25 07:43:25 +00:00
|
|
|
with_modified_env FCM_SERVER_KEY: 'test', ENABLE_PUSH_RELAY_SERVER: 'false' do
|
|
|
|
create(:notification_subscription, user: notification.user, subscription_type: 'fcm')
|
2020-06-04 18:45:50 +00:00
|
|
|
|
2021-10-25 07:43:25 +00:00
|
|
|
described_class.new(notification: notification).perform
|
|
|
|
expect(FCM).to have_received(:new)
|
|
|
|
expect(Webpush).not_to have_received(:payload_send)
|
|
|
|
end
|
2020-06-04 18:45:50 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|