mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
42 lines
1.1 KiB
CoffeeScript
42 lines
1.1 KiB
CoffeeScript
'use strict'
|
|
|
|
payments = require("../../website/src/controllers/payments")
|
|
app = require("../../website/src/server")
|
|
|
|
describe "Subscriptions", ->
|
|
|
|
before (done) ->
|
|
registerNewUser(done, true)
|
|
|
|
it "Handles unsubscription", (done) ->
|
|
cron = ->
|
|
user.lastCron = moment().subtract(1, "d")
|
|
user.fns.cron()
|
|
|
|
expect(user.purchased.plan.customerId).to.not.exist
|
|
payments.createSubscription
|
|
user: user
|
|
customerId: "123"
|
|
paymentMethod: "Stripe"
|
|
sub: {key: 'basic_6mo'}
|
|
|
|
expect(user.purchased.plan.customerId).to.exist
|
|
shared.wrap user
|
|
cron()
|
|
expect(user.purchased.plan.customerId).to.exist
|
|
payments.cancelSubscription user: user
|
|
cron()
|
|
expect(user.purchased.plan.customerId).to.exist
|
|
expect(user.purchased.plan.dateTerminated).to.exist
|
|
user.purchased.plan.dateTerminated = moment().subtract(2, "d")
|
|
cron()
|
|
expect(user.purchased.plan.customerId).to.not.exist
|
|
payments.createSubscription
|
|
user: user
|
|
customerId: "123"
|
|
paymentMethod: "Stripe"
|
|
sub: {key: 'basic_6mo'}
|
|
|
|
expect(user.purchased.plan.dateTerminated).to.not.exist
|
|
done()
|