discourse-subscriptions/spec/requests/hooks_controller_spec.rb

25 lines
625 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
module DiscourseSubscriptions
RSpec.describe HooksController do
before do
SiteSetting.discourse_subscriptions_webhook_secret = 'zascharoo'
end
2020-01-12 19:10:06 -05:00
it "contructs a webhook event" do
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)
.with('we-want-a-shrubbery', 'stripe-webhook-signature', 'zascharoo')
2020-01-12 19:10:06 -05:00
post "/s/hooks.json", params: payload, headers: headers
2020-01-12 19:10:06 -05:00
expect(response.status).to eq 200
end
end
end