mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 21:12:50 +00:00
57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Stripe;
|
||
|
|
||
|
class InvoiceTest extends TestCase
|
||
|
{
|
||
|
public function testUpcoming()
|
||
|
{
|
||
|
self::authorizeFromEnv();
|
||
|
$customer = self::createTestCustomer();
|
||
|
|
||
|
InvoiceItem::create(array(
|
||
|
'customer' => $customer->id,
|
||
|
'amount' => 0,
|
||
|
'currency' => 'usd',
|
||
|
));
|
||
|
|
||
|
$invoice = Invoice::upcoming(array(
|
||
|
'customer' => $customer->id,
|
||
|
));
|
||
|
$this->assertSame($invoice->customer, $customer->id);
|
||
|
$this->assertSame($invoice->attempted, false);
|
||
|
}
|
||
|
|
||
|
public function testItemsAccessWithParameter()
|
||
|
{
|
||
|
self::authorizeFromEnv();
|
||
|
$customer = self::createTestCustomer();
|
||
|
|
||
|
InvoiceItem::create(array(
|
||
|
'customer' => $customer->id,
|
||
|
'amount' => 100,
|
||
|
'currency' => 'usd',
|
||
|
));
|
||
|
|
||
|
$invoice = Invoice::upcoming(
|
||
|
array(
|
||
|
'customer' => $customer->id,
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$lines = $invoice->lines->all(array('limit' => 10));
|
||
|
|
||
|
$this->assertSame(count($lines->data), 1);
|
||
|
$this->assertSame($lines->data[0]->amount, 100);
|
||
|
}
|
||
|
|
||
|
// This is really just making sure that this operation does not trigger any
|
||
|
// warnings, as it's highly nested.
|
||
|
public function testAll()
|
||
|
{
|
||
|
self::authorizeFromEnv();
|
||
|
$invoices = Invoice::all();
|
||
|
$this->assertGreaterThan(0, count($invoices));
|
||
|
}
|
||
|
}
|