discourse/spec/requests/webhooks_controller_spec.rb

134 lines
3.5 KiB
Ruby
Raw Normal View History

2016-05-30 11:11:17 -04:00
require "rails_helper"
describe WebhooksController do
2016-06-06 13:47:45 -04:00
before { $redis.flushall }
2016-05-30 11:11:17 -04:00
2016-06-01 15:48:06 -04:00
let(:email) { "em@il.com" }
2016-06-08 18:33:13 -04:00
let(:message_id) { "12345@il.com" }
2016-06-01 15:48:06 -04:00
context "mailgun" do
2016-05-30 11:11:17 -04:00
it "works" do
2016-06-06 19:55:24 -04:00
SiteSetting.mailgun_api_key = "key-8221462f0c915af3f6f2e2df7aa5a493"
2016-05-30 11:11:17 -04:00
2016-06-01 15:48:06 -04:00
user = Fabricate(:user, email: email)
email_log = Fabricate(:email_log, user: user, message_id: message_id, to_address: email)
2016-05-30 11:11:17 -04:00
token = "705a8ccd2ce932be8e98c221fe701c1b4a0afcb8bbd57726de"
timestamp = Time.now.to_i
data = "#{timestamp}#{token}"
signature = OpenSSL::HMAC.hexdigest(OpenSSL::Digest::SHA256.new, SiteSetting.mailgun_api_key, data)
2016-05-30 11:11:17 -04:00
post "/webhooks/mailgun.json", params: {
"token" => token,
"timestamp" => timestamp,
"event" => "dropped",
"recipient" => email,
"Message-Id" => "<12345@il.com>",
"signature" => signature
}
2016-05-30 11:11:17 -04:00
expect(response.status).to eq(200)
2016-05-30 11:11:17 -04:00
email_log.reload
expect(email_log.bounced).to eq(true)
expect(email_log.user.user_stat.bounce_score).to eq(2)
end
end
2016-06-01 15:48:06 -04:00
context "sendgrid" do
it "works" do
user = Fabricate(:user, email: email)
email_log = Fabricate(:email_log, user: user, message_id: message_id, to_address: email)
2016-06-01 15:48:06 -04:00
post "/webhooks/sendgrid.json", params: {
"_json" => [
{
"email" => email,
"smtp-id" => "<12345@il.com>",
"event" => "bounce",
"status" => "5.0.0"
}
]
}
2016-06-01 15:48:06 -04:00
expect(response.status).to eq(200)
2016-06-01 15:48:06 -04:00
email_log.reload
expect(email_log.bounced).to eq(true)
expect(email_log.user.user_stat.bounce_score).to eq(2)
end
end
2016-06-06 13:47:45 -04:00
context "mailjet" do
it "works" do
user = Fabricate(:user, email: email)
email_log = Fabricate(:email_log, user: user, message_id: message_id, to_address: email)
2016-06-06 13:47:45 -04:00
post "/webhooks/mailjet.json", params: {
"event" => "bounce",
"email" => email,
"hard_bounce" => true,
"CustomID" => message_id
}
2016-06-06 13:47:45 -04:00
expect(response.status).to eq(200)
2016-06-06 13:47:45 -04:00
email_log.reload
expect(email_log.bounced).to eq(true)
expect(email_log.user.user_stat.bounce_score).to eq(2)
end
end
2016-06-13 06:31:01 -04:00
context "mandrill" do
it "works" do
user = Fabricate(:user, email: email)
email_log = Fabricate(:email_log, user: user, message_id: message_id, to_address: email)
2016-06-13 06:31:01 -04:00
post "/webhooks/mandrill.json", params: {
mandrill_events: [{
"event" => "hard_bounce",
"msg" => {
"email" => email,
"metadata" => {
"message_id" => message_id
}
2016-06-13 06:31:01 -04:00
}
}]
}
2016-06-13 06:31:01 -04:00
expect(response.status).to eq(200)
2016-06-13 06:31:01 -04:00
email_log.reload
expect(email_log.bounced).to eq(true)
expect(email_log.user.user_stat.bounce_score).to eq(2)
end
end
2016-09-27 01:13:34 -04:00
context "sparkpost" do
it "works" do
user = Fabricate(:user, email: email)
email_log = Fabricate(:email_log, user: user, message_id: message_id, to_address: email)
2016-09-27 01:13:34 -04:00
post "/webhooks/sparkpost.json", params: {
"_json" => [{
"msys" => {
"message_event" => {
"bounce_class" => 10,
"rcpt_to" => email,
"rcpt_meta" => {
"message_id" => message_id
}
}
2016-09-27 01:13:34 -04:00
}
}]
}
2016-09-27 01:13:34 -04:00
expect(response.status).to eq(200)
2016-09-27 01:13:34 -04:00
email_log.reload
expect(email_log.bounced).to eq(true)
expect(email_log.user.user_stat.bounce_score).to eq(2)
end
end
2016-05-30 11:11:17 -04:00
end