mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-11 03:51:25 +01:00
270 lines
8.0 KiB
PHP
270 lines
8.0 KiB
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class CustomerTest extends TestCase
|
|
{
|
|
const TEST_RESOURCE_ID = 'cus_123';
|
|
const TEST_SOURCE_ID = 'ba_123';
|
|
|
|
public function testIsListable()
|
|
{
|
|
$this->expectsRequest(
|
|
'get',
|
|
'/v1/customers'
|
|
);
|
|
$resources = Customer::all();
|
|
$this->assertTrue(is_array($resources->data));
|
|
$this->assertInstanceOf("Stripe\\Customer", $resources->data[0]);
|
|
}
|
|
|
|
public function testIsRetrievable()
|
|
{
|
|
$this->expectsRequest(
|
|
'get',
|
|
'/v1/customers/' . self::TEST_RESOURCE_ID
|
|
);
|
|
$resource = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->assertInstanceOf("Stripe\\Customer", $resource);
|
|
}
|
|
|
|
public function testIsCreatable()
|
|
{
|
|
$this->expectsRequest(
|
|
'post',
|
|
'/v1/customers'
|
|
);
|
|
$resource = Customer::create();
|
|
$this->assertInstanceOf("Stripe\\Customer", $resource);
|
|
}
|
|
|
|
public function testIsSaveable()
|
|
{
|
|
$resource = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$resource->metadata["key"] = "value";
|
|
$this->expectsRequest(
|
|
'post',
|
|
'/v1/customers/' . $resource->id
|
|
);
|
|
$resource->save();
|
|
$this->assertInstanceOf("Stripe\\Customer", $resource);
|
|
}
|
|
|
|
public function testIsUpdatable()
|
|
{
|
|
$this->expectsRequest(
|
|
'post',
|
|
'/v1/customers/' . self::TEST_RESOURCE_ID
|
|
);
|
|
$resource = Customer::update(self::TEST_RESOURCE_ID, [
|
|
"metadata" => ["key" => "value"],
|
|
]);
|
|
$this->assertInstanceOf("Stripe\\Customer", $resource);
|
|
}
|
|
|
|
public function testIsDeletable()
|
|
{
|
|
$resource = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->expectsRequest(
|
|
'delete',
|
|
'/v1/customers/' . $resource->id
|
|
);
|
|
$resource->delete();
|
|
$this->assertInstanceOf("Stripe\\Customer", $resource);
|
|
}
|
|
|
|
public function testCanAddInvoiceItem()
|
|
{
|
|
$customer = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->expectsRequest(
|
|
'post',
|
|
'/v1/invoiceitems',
|
|
[
|
|
"amount" => 100,
|
|
"currency" => "usd",
|
|
"customer" => $customer->id
|
|
]
|
|
);
|
|
$resource = $customer->addInvoiceItem([
|
|
"amount" => 100,
|
|
"currency" => "usd"
|
|
]);
|
|
$this->assertInstanceOf("Stripe\\InvoiceItem", $resource);
|
|
}
|
|
|
|
public function testCanListInvoices()
|
|
{
|
|
$customer = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->expectsRequest(
|
|
'get',
|
|
'/v1/invoices',
|
|
["customer" => $customer->id]
|
|
);
|
|
$resources = $customer->invoices();
|
|
$this->assertTrue(is_array($resources->data));
|
|
$this->assertInstanceOf("Stripe\\Invoice", $resources->data[0]);
|
|
}
|
|
|
|
public function testCanListInvoiceItems()
|
|
{
|
|
$customer = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->expectsRequest(
|
|
'get',
|
|
'/v1/invoiceitems',
|
|
["customer" => $customer->id]
|
|
);
|
|
$resources = $customer->invoiceItems();
|
|
$this->assertTrue(is_array($resources->data));
|
|
$this->assertInstanceOf("Stripe\\InvoiceItem", $resources->data[0]);
|
|
}
|
|
|
|
public function testCanListCharges()
|
|
{
|
|
$customer = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->expectsRequest(
|
|
'get',
|
|
'/v1/charges',
|
|
["customer" => $customer->id]
|
|
);
|
|
$resources = $customer->charges();
|
|
$this->assertTrue(is_array($resources->data));
|
|
$this->assertInstanceOf("Stripe\\Charge", $resources->data[0]);
|
|
}
|
|
|
|
public function testCanUpdateSubscription()
|
|
{
|
|
$customer = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->stubRequest(
|
|
'post',
|
|
'/v1/customers/' . $customer->id . '/subscription',
|
|
["plan" => "plan"],
|
|
null,
|
|
false,
|
|
[
|
|
"object" => "subscription",
|
|
"id" => "sub_foo"
|
|
]
|
|
);
|
|
$resource = $customer->updateSubscription(["plan" => "plan"]);
|
|
$this->assertInstanceOf("Stripe\\Subscription", $resource);
|
|
$this->assertSame("sub_foo", $customer->subscription->id);
|
|
}
|
|
|
|
public function testCanCancelSubscription()
|
|
{
|
|
$customer = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->stubRequest(
|
|
'delete',
|
|
'/v1/customers/' . $customer->id . '/subscription',
|
|
[],
|
|
null,
|
|
false,
|
|
[
|
|
"object" => "subscription",
|
|
"id" => "sub_foo"
|
|
]
|
|
);
|
|
$resource = $customer->cancelSubscription();
|
|
$this->assertInstanceOf("Stripe\\Subscription", $resource);
|
|
$this->assertSame("sub_foo", $customer->subscription->id);
|
|
}
|
|
|
|
public function testCanDeleteDiscount()
|
|
{
|
|
$customer = Customer::retrieve(self::TEST_RESOURCE_ID);
|
|
$this->stubRequest(
|
|
'delete',
|
|
'/v1/customers/' . $customer->id . '/discount'
|
|
);
|
|
$customer->deleteDiscount();
|
|
$this->assertSame($customer->discount, null);
|
|
}
|
|
|
|
public function testCanCreateSource()
|
|
{
|
|
$this->expectsRequest(
|
|
'post',
|
|
'/v1/customers/' . self::TEST_RESOURCE_ID . '/sources'
|
|
);
|
|
$resource = Customer::createSource(self::TEST_RESOURCE_ID, ["source" => "btok_123"]);
|
|
$this->assertInstanceOf("Stripe\\BankAccount", $resource);
|
|
}
|
|
|
|
public function testCanRetrieveSource()
|
|
{
|
|
$this->expectsRequest(
|
|
'get',
|
|
'/v1/customers/' . self::TEST_RESOURCE_ID . '/sources/' . self::TEST_SOURCE_ID
|
|
);
|
|
$resource = Customer::retrieveSource(self::TEST_RESOURCE_ID, self::TEST_SOURCE_ID);
|
|
$this->assertInstanceOf("Stripe\\BankAccount", $resource);
|
|
}
|
|
|
|
public function testCanUpdateSource()
|
|
{
|
|
$this->expectsRequest(
|
|
'post',
|
|
'/v1/customers/' . self::TEST_RESOURCE_ID . '/sources/' . self::TEST_SOURCE_ID
|
|
);
|
|
$resource = Customer::updateSource(self::TEST_RESOURCE_ID, self::TEST_SOURCE_ID, ["name" => "name"]);
|
|
// stripe-mock returns a Card on this method and not a bank account
|
|
$this->assertInstanceOf("Stripe\\Card", $resource);
|
|
}
|
|
|
|
public function testCanDeleteSource()
|
|
{
|
|
$this->expectsRequest(
|
|
'delete',
|
|
'/v1/customers/' . self::TEST_RESOURCE_ID . '/sources/' . self::TEST_SOURCE_ID
|
|
);
|
|
$resource = Customer::deleteSource(self::TEST_RESOURCE_ID, self::TEST_SOURCE_ID);
|
|
$this->assertInstanceOf("Stripe\\BankAccount", $resource);
|
|
}
|
|
|
|
public function testCanListSources()
|
|
{
|
|
$this->expectsRequest(
|
|
'get',
|
|
'/v1/customers/' . self::TEST_RESOURCE_ID . '/sources'
|
|
);
|
|
$resources = Customer::allSources(self::TEST_RESOURCE_ID);
|
|
$this->assertTrue(is_array($resources->data));
|
|
}
|
|
|
|
public function testSerializeSourceString()
|
|
{
|
|
$obj = Util\Util::convertToStripeObject([
|
|
'object' => 'customer',
|
|
], null);
|
|
$obj->source = 'tok_visa';
|
|
|
|
$expected = [
|
|
'source' => 'tok_visa',
|
|
];
|
|
$this->assertSame($expected, $obj->serializeParameters());
|
|
}
|
|
|
|
public function testSerializeSourceMap()
|
|
{
|
|
$obj = Util\Util::convertToStripeObject([
|
|
'object' => 'customer',
|
|
], null);
|
|
$obj->source = [
|
|
'object' => 'card',
|
|
'number' => '4242424242424242',
|
|
'exp_month' => 12,
|
|
'exp_year' => 2032,
|
|
];
|
|
|
|
$expected = [
|
|
'source' => [
|
|
'object' => 'card',
|
|
'number' => '4242424242424242',
|
|
'exp_month' => 12,
|
|
'exp_year' => 2032,
|
|
],
|
|
];
|
|
$this->assertSame($expected, $obj->serializeParameters());
|
|
}
|
|
}
|