2020-01-09 18:24:09 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
module DiscourseSubscriptions
|
|
|
|
RSpec.describe HooksController do
|
2020-01-13 23:37:53 -05:00
|
|
|
before do
|
|
|
|
SiteSetting.discourse_subscriptions_webhook_secret = 'zascharoo'
|
|
|
|
end
|
|
|
|
|
2020-01-12 19:10:06 -05:00
|
|
|
it "contructs a webhook event" do
|
2020-01-13 23:37:53 -05:00
|
|
|
payload = 'we-want-a-shrubbery'
|
|
|
|
headers = { 'HTTP_STRIPE_SIGNATURE' => 'stripe-webhook-signature' }
|
|
|
|
|
2020-01-12 19:10:06 -05:00
|
|
|
::Stripe::Webhook
|
|
|
|
.expects(:construct_event)
|
2020-01-13 23:37:53 -05:00
|
|
|
.with('we-want-a-shrubbery', 'stripe-webhook-signature', 'zascharoo')
|
2020-01-12 19:10:06 -05:00
|
|
|
|
2020-01-13 23:37:53 -05:00
|
|
|
post "/s/hooks.json", params: payload, headers: headers
|
2020-01-12 19:10:06 -05:00
|
|
|
|
2020-01-09 18:24:09 -05:00
|
|
|
expect(response.status).to eq 200
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|