discourse-subscriptions/spec/requests/admin/plans_controller_spec.rb

100 lines
3.1 KiB
Ruby
Raw Normal View History

2019-10-09 21:08:52 -04:00
# frozen_string_literal: true
require 'rails_helper'
module DiscoursePatrons
module Admin
RSpec.describe PlansController do
2019-10-09 21:31:32 -04:00
it 'is a subclass of AdminController' do
expect(DiscoursePatrons::Admin::PlansController < ::Admin::AdminController).to eq(true)
2019-10-09 21:08:52 -04:00
end
2019-10-09 21:31:32 -04:00
context 'not authenticated' do
describe "index" do
it "does not get the plans" do
::Stripe::Plan.expects(:list).never
get "/patrons/admin/plans.json"
end
2019-10-09 21:08:52 -04:00
2019-10-09 21:31:32 -04:00
it "not ok" do
get "/patrons/admin/plans.json"
expect(response.status).to eq 403
end
2019-10-09 21:08:52 -04:00
end
2019-10-09 21:31:32 -04:00
describe "create" do
it "does not create a plan" do
::Stripe::Plan.expects(:create).never
post "/patrons/admin/plans.json", params: { name: 'Rick Astley', amount: 1, interval: 'week' }
end
it "is not ok" do
post "/patrons/admin/plans.json", params: { name: 'Rick Astley', amount: 1, interval: 'week' }
expect(response.status).to eq 403
end
2019-10-09 21:08:52 -04:00
end
2019-10-09 21:31:32 -04:00
describe "delete" do
it "does not delete a plan" do
::Stripe::Plan.expects(:delete).never
delete "/patrons/admin/plans/plan_12345.json"
end
it "is not ok" do
delete "/patrons/admin/plans/plan_12345.json"
expect(response.status).to eq 403
end
2019-10-09 21:08:52 -04:00
end
2019-10-09 21:31:32 -04:00
end
2019-10-09 21:08:52 -04:00
2019-10-09 21:31:32 -04:00
context 'authenticated' do
let(:admin) { Fabricate(:admin) }
before { sign_in(admin) }
describe "index" do
2019-10-09 22:52:55 -04:00
it "lists the plans" do
2019-10-09 21:31:32 -04:00
::Stripe::Plan.expects(:list)
get "/patrons/admin/plans.json"
end
2019-10-09 21:08:52 -04:00
end
2019-10-09 21:31:32 -04:00
describe "create" do
it "creates a plan with a currency" do
SiteSetting.stubs(:discourse_patrons_currency).returns('aud')
::Stripe::Plan.expects(:create).with(has_entry(:currency, 'aud'))
post "/patrons/admin/plans.json", params: {}
end
it "creates a plan with an interval" do
::Stripe::Plan.expects(:create).with(has_entry(:interval, 'week'))
post "/patrons/admin/plans.json", params: { interval: 'week' }
end
it "creates a plan with an amount" do
::Stripe::Plan.expects(:create).with(has_entry(:amount, '102'))
post "/patrons/admin/plans.json", params: { amount: '102' }
end
it "creates a plan with a title" do
::Stripe::Plan.expects(:create).with(has_entry(:product, name: 'Rick Astley'))
post "/patrons/admin/plans.json", params: { name: 'Rick Astley' }
end
it "creates a plan with an id" do
::Stripe::Plan.expects(:create).with(has_entry(id: 'rick-astley'))
post "/patrons/admin/plans.json", params: { name: 'Rick Astley' }
end
2019-10-09 21:08:52 -04:00
end
2019-10-09 21:31:32 -04:00
describe "delete" do
it "deletes a plan" do
::Stripe::Plan.expects(:delete).with('plan_12345')
delete "/patrons/admin/plans/plan_12345.json"
end
2019-10-09 21:08:52 -04:00
end
end
end
end
end