mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
113 lines
2.8 KiB
Ruby
113 lines
2.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe PushNotificationController do
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
context "logged out" do
|
|
it "should not allow subscribe" do
|
|
post '/push_notifications/subscribe.json', params: {
|
|
username: "test",
|
|
subscription: {
|
|
endpoint: "endpoint",
|
|
keys: {
|
|
p256dh: "256dh",
|
|
auth: "auth"
|
|
}
|
|
},
|
|
send_confirmation: false
|
|
}
|
|
|
|
expect(response.status).to eq(403)
|
|
end
|
|
end
|
|
|
|
context "logged in" do
|
|
before { sign_in(user) }
|
|
|
|
it "should subscribe" do
|
|
post '/push_notifications/subscribe.json', params: {
|
|
username: user.username,
|
|
subscription: {
|
|
endpoint: "endpoint",
|
|
keys: {
|
|
p256dh: "256dh",
|
|
auth: "auth"
|
|
}
|
|
},
|
|
send_confirmation: false
|
|
}
|
|
|
|
expect(response.status).to eq(200)
|
|
expect(user.push_subscriptions.count).to eq(1)
|
|
end
|
|
|
|
it "should fix duplicate subscriptions" do
|
|
subscription = {
|
|
endpoint: "endpoint",
|
|
keys: {
|
|
p256dh: "256dh",
|
|
auth: "auth"
|
|
}
|
|
}
|
|
PushSubscription.create user: user, data: subscription.to_json
|
|
post '/push_notifications/subscribe.json', params: {
|
|
username: user.username,
|
|
subscription: subscription,
|
|
send_confirmation: false
|
|
}
|
|
|
|
expect(response.status).to eq(200)
|
|
expect(user.push_subscriptions.count).to eq(1)
|
|
end
|
|
|
|
it "should not create duplicate subscriptions" do
|
|
2.times do
|
|
post '/push_notifications/subscribe.json', params: {
|
|
username: user.username,
|
|
subscription: {
|
|
endpoint: "endpoint",
|
|
keys: {
|
|
p256dh: "256dh",
|
|
auth: "auth"
|
|
}
|
|
},
|
|
send_confirmation: false
|
|
}
|
|
end
|
|
|
|
expect(response.status).to eq(200)
|
|
expect(user.push_subscriptions.count).to eq(1)
|
|
end
|
|
|
|
it "should unsubscribe with existing subscription" do
|
|
sub = { endpoint: "endpoint", keys: { p256dh: "256dh", auth: "auth" } }
|
|
PushSubscription.create!(user: user, data: sub.to_json)
|
|
|
|
post '/push_notifications/unsubscribe.json', params: {
|
|
username: user.username,
|
|
subscription: sub
|
|
}
|
|
|
|
expect(response.status).to eq(200)
|
|
expect(user.push_subscriptions).to eq([])
|
|
end
|
|
|
|
it "should unsubscribe without subscription" do
|
|
post '/push_notifications/unsubscribe.json', params: {
|
|
username: user.username,
|
|
subscription: {
|
|
endpoint: "endpoint",
|
|
keys: {
|
|
p256dh: "256dh",
|
|
auth: "auth"
|
|
}
|
|
}
|
|
}
|
|
|
|
expect(response.status).to eq(200)
|
|
expect(user.push_subscriptions).to eq([])
|
|
end
|
|
end
|
|
|
|
end
|