2025-12-07 05:00:42 +00:00

54 lines
1.2 KiB
PHP

<?php
class Stripe_PlanTest extends StripeTestCase
{
public function testDeletion()
{
self::authorizeFromEnv();
$p = Stripe_Plan::create(
array(
'amount' => 2000,
'interval' => 'month',
'currency' => 'usd',
'name' => 'Plan',
'id' => 'gold-' . self::randomString()
)
);
$p->delete();
$this->assertTrue($p->deleted);
}
public function testFalseyId()
{
try {
$retrievedPlan = Stripe_Plan::retrieve('0');
} catch (Stripe_InvalidRequestError $e) {
// Can either succeed or 404, all other errors are bad
if ($e->httpStatus !== 404) {
$this->fail();
}
}
}
public function testSave()
{
self::authorizeFromEnv();
$planID = 'gold-' . self::randomString();
$p = Stripe_Plan::create(
array(
'amount' => 2000,
'interval' => 'month',
'currency' => 'usd',
'name' => 'Plan',
'id' => $planID
)
);
$p->name = 'A new plan name';
$p->save();
$this->assertEqual($p->name, 'A new plan name');
$stripePlan = Stripe_Plan::retrieve($planID);
$this->assertEqual($p->name, $stripePlan->name);
}
}