2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-04 18:31:48 -04:00
|
|
|
RSpec.describe PushNotificationPusher do
|
|
|
|
|
|
|
|
it "returns badges url by default" do
|
|
|
|
expect(PushNotificationPusher.get_badge).to eq("/assets/push-notifications/discourse.png")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns custom badges url" do
|
2019-01-02 02:29:17 -05:00
|
|
|
upload = Fabricate(:upload)
|
|
|
|
SiteSetting.push_notifications_icon = upload
|
|
|
|
|
|
|
|
expect(PushNotificationPusher.get_badge)
|
|
|
|
.to eq(UrlHelper.absolute(upload.url))
|
2018-05-04 18:31:48 -04:00
|
|
|
end
|
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
context "with user" do
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
2021-05-26 16:49:20 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
def create_subscription
|
|
|
|
data = <<~JSON
|
2021-05-26 16:49:20 -04:00
|
|
|
{
|
|
|
|
"endpoint": "endpoint",
|
|
|
|
"keys": {
|
|
|
|
"p256dh": "p256dh",
|
|
|
|
"auth": "auth"
|
|
|
|
}
|
|
|
|
}
|
2021-06-07 14:46:07 -04:00
|
|
|
JSON
|
|
|
|
PushSubscription.create!(user_id: user.id, data: data)
|
|
|
|
end
|
2021-05-26 16:49:20 -04:00
|
|
|
|
2022-05-31 22:00:05 -04:00
|
|
|
def execute_push(notification_type: 1)
|
2021-05-26 16:49:20 -04:00
|
|
|
PushNotificationPusher.push(user, {
|
|
|
|
topic_title: 'Topic',
|
|
|
|
username: 'system',
|
|
|
|
excerpt: 'description',
|
|
|
|
topic_id: 1,
|
|
|
|
post_url: "https://example.com/t/1/2",
|
2022-05-31 22:00:05 -04:00
|
|
|
notification_type: notification_type
|
2021-05-26 16:49:20 -04:00
|
|
|
})
|
2021-06-07 14:46:07 -04:00
|
|
|
end
|
2021-05-26 16:49:20 -04:00
|
|
|
|
2022-05-31 22:00:05 -04:00
|
|
|
it "correctly guesses an image if missing" do
|
|
|
|
message = execute_push(notification_type: -1)
|
|
|
|
expect(message[:icon]).to eq("/assets/push-notifications/discourse.png")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "correctly finds image if exists" do
|
|
|
|
message = execute_push(notification_type: 1)
|
|
|
|
expect(message[:icon]).to eq("/assets/push-notifications/mentioned.png")
|
|
|
|
end
|
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
it "sends notification in user's locale" do
|
|
|
|
SiteSetting.allow_user_locale = true
|
|
|
|
user.update!(locale: 'pt_BR')
|
|
|
|
|
2021-07-20 10:03:20 -04:00
|
|
|
TranslationOverride.upsert!("pt_BR", "discourse_push_notifications.popup.mentioned", "pt_BR notification")
|
|
|
|
|
2022-12-27 13:28:13 -05:00
|
|
|
WebPush.expects(:payload_send).with do |*args|
|
2021-07-20 10:03:20 -04:00
|
|
|
JSON.parse(args.first[:message])["title"] == "pt_BR notification"
|
2021-06-07 14:46:07 -04:00
|
|
|
end.once
|
|
|
|
|
|
|
|
create_subscription
|
|
|
|
execute_push
|
2021-05-26 16:49:20 -04:00
|
|
|
end
|
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
it "deletes subscriptions which are erroring regularly" do
|
|
|
|
start = freeze_time
|
2021-05-26 16:49:20 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
sub = create_subscription
|
2021-02-25 13:10:37 -05:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
response = Struct.new(:body, :inspect, :message).new("test", "test", "failed")
|
2022-12-27 13:28:13 -05:00
|
|
|
error = WebPush::ResponseError.new(response, "localhost")
|
2021-05-26 16:49:20 -04:00
|
|
|
|
2022-12-27 13:28:13 -05:00
|
|
|
WebPush.expects(:payload_send).raises(error).times(4)
|
2021-06-07 14:46:07 -04:00
|
|
|
|
|
|
|
# 3 failures in more than 24 hours
|
|
|
|
3.times do
|
|
|
|
execute_push
|
|
|
|
|
|
|
|
freeze_time 1.minute.from_now
|
|
|
|
end
|
|
|
|
|
|
|
|
sub.reload
|
|
|
|
expect(sub.error_count).to eq(3)
|
|
|
|
expect(sub.first_error_at).to eq_time(start)
|
|
|
|
|
|
|
|
freeze_time(2.days.from_now)
|
2021-02-25 13:10:37 -05:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
execute_push
|
2021-03-19 09:24:03 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
expect(PushSubscription.where(id: sub.id).exists?).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "deletes invalid subscriptions during send" do
|
|
|
|
missing_endpoint = PushSubscription.create!(user_id: user.id, data:
|
|
|
|
{ p256dh: "public ECDH key", keys: { auth: "private ECDH key" } }.to_json)
|
2021-03-19 09:24:03 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
missing_p256dh = PushSubscription.create!(user_id: user.id, data:
|
|
|
|
{ endpoint: "endpoint 1", keys: { auth: "private ECDH key" } }.to_json)
|
2021-03-19 09:24:03 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
missing_auth = PushSubscription.create!(user_id: user.id, data:
|
|
|
|
{ endpoint: "endpoint 2", keys: { p256dh: "public ECDH key" } }.to_json)
|
2021-03-19 09:24:03 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
valid_subscription = PushSubscription.create!(user_id: user.id, data:
|
|
|
|
{ endpoint: "endpoint 3", keys: { p256dh: "public ECDH key", auth: "private ECDH key" } }.to_json)
|
2021-03-19 09:24:03 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
expect(PushSubscription.where(user_id: user.id)).to contain_exactly(missing_endpoint, missing_p256dh, missing_auth, valid_subscription)
|
2022-12-27 13:28:13 -05:00
|
|
|
WebPush.expects(:payload_send).with(has_entries(endpoint: "endpoint 3", p256dh: "public ECDH key", auth: "private ECDH key")).once
|
2021-03-19 09:24:03 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
execute_push
|
|
|
|
|
|
|
|
expect(PushSubscription.where(user_id: user.id)).to contain_exactly(valid_subscription)
|
|
|
|
end
|
2021-03-19 09:24:03 -04:00
|
|
|
|
2021-06-07 14:46:07 -04:00
|
|
|
it "handles timeouts" do
|
2022-12-27 13:28:13 -05:00
|
|
|
WebPush.expects(:payload_send).raises(Net::ReadTimeout.new)
|
2021-06-07 14:46:07 -04:00
|
|
|
subscription = create_subscription
|
|
|
|
|
|
|
|
expect { execute_push }.to_not raise_exception
|
|
|
|
|
|
|
|
subscription.reload
|
|
|
|
expect(subscription.error_count).to eq(1)
|
|
|
|
end
|
2021-03-19 09:24:03 -04:00
|
|
|
end
|
2018-05-04 18:31:48 -04:00
|
|
|
end
|