84 lines
1.9 KiB
PHP
84 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Base class for Stripe test cases, provides some utility methods for creating
|
|
* objects.
|
|
*/
|
|
abstract class StripeTestCase extends UnitTestCase
|
|
{
|
|
|
|
/**
|
|
* Create a valid test customer.
|
|
*/
|
|
protected static function createTestCustomer(array $attributes = array())
|
|
{
|
|
authorizeFromEnv();
|
|
|
|
return Stripe_Customer::create(
|
|
$attributes + array(
|
|
'card' => array(
|
|
'number' => '4242424242424242',
|
|
'exp_month' => 5,
|
|
'exp_year' => date('Y') + 3,
|
|
),
|
|
));
|
|
}
|
|
|
|
/**
|
|
* Create a valid test recipient
|
|
*/
|
|
protected static function createTestRecipient(array $attributes = array())
|
|
{
|
|
authorizeFromEnv();
|
|
|
|
return Stripe_Recipient::create(
|
|
$attributes + array(
|
|
'name' => 'PHP Test',
|
|
'type' => 'individual',
|
|
'tax_id' => '000000000',
|
|
'bank_account' => array(
|
|
'country' => 'US',
|
|
'routing_number' => '110000000',
|
|
'account_number' => '000123456789'
|
|
),
|
|
));
|
|
}
|
|
|
|
/**
|
|
* Generate a random 8-character string. Useful for ensuring
|
|
* multiple test suite runs don't conflict
|
|
*/
|
|
protected static function randomString()
|
|
{
|
|
$chars = "abcdefghijklmnopqrstuvwxyz";
|
|
$str = "";
|
|
for ($i = 0; $i < 10; $i++) {
|
|
$str .= $chars[rand(0, strlen($chars)-1)];
|
|
}
|
|
return $str;
|
|
}
|
|
|
|
/**
|
|
* Verify that a plan with a given ID exists, or create a new one if it does
|
|
* not.
|
|
*/
|
|
protected static function retrieveOrCreatePlan($id)
|
|
{
|
|
authorizeFromEnv();
|
|
|
|
try {
|
|
$plan = Stripe_Plan::retrieve($id);
|
|
} catch (Stripe_InvalidRequestError $exception) {
|
|
$plan = Stripe_Plan::create(
|
|
array(
|
|
'id' => $id,
|
|
'amount' => 0,
|
|
'currency' => 'usd',
|
|
'interval' => 'month',
|
|
'name' => 'Gold Test Plan',
|
|
));
|
|
}
|
|
}
|
|
|
|
}
|