| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/Dolibarr/htdocs/includes/stripe/tests/Stripe/ |
Upload File : |
<?php
namespace Stripe;
class CollectionTest extends TestCase
{
/**
* @before
*/
public function setUpFixture()
{
$this->fixture = Collection::constructFrom([
'data' => [['id' => 1]],
'has_more' => true,
'url' => '/things',
]);
}
public function testCanList()
{
$this->stubRequest(
'GET',
'/things',
[],
null,
false,
[
'data' => [['id' => 1]],
'has_more' => true,
'url' => '/things',
]
);
$resources = $this->fixture->all();
$this->assertTrue(is_array($resources->data));
}
public function testCanRetrieve()
{
$this->stubRequest(
'GET',
'/things/1',
[],
null,
false,
[
'id' => 1,
]
);
$this->fixture->retrieve(1);
}
public function testCanCreate()
{
$this->stubRequest(
'POST',
'/things',
[
'foo' => 'bar',
],
null,
false,
[
'id' => 2,
]
);
$this->fixture->create([
'foo' => 'bar',
]);
}
public function testProvidesAutoPagingIterator()
{
$this->stubRequest(
'GET',
'/things',
[
'starting_after' => 1,
],
null,
false,
[
'data' => [['id' => 2], ['id' => 3]],
'has_more' => false,
]
);
$seen = [];
foreach ($this->fixture->autoPagingIterator() as $item) {
array_push($seen, $item['id']);
}
$this->assertSame([1, 2, 3], $seen);
}
public function testSupportsIteratorToArray()
{
$this->stubRequest(
'GET',
'/things',
[
'starting_after' => 1,
],
null,
false,
[
'data' => [['id' => 2], ['id' => 3]],
'has_more' => false,
]
);
$seen = [];
foreach (iterator_to_array($this->fixture->autoPagingIterator()) as $item) {
array_push($seen, $item['id']);
}
$this->assertSame([1, 2, 3], $seen);
}
public function testHeaders()
{
$this->stubRequest(
'POST',
'/things',
[
'foo' => 'bar',
],
[
'Stripe-Account: acct_foo',
'Idempotency-Key: qwertyuiop',
],
false,
[
'id' => 2,
]
);
$this->fixture->create([
'foo' => 'bar',
], [
'stripe_account' => 'acct_foo',
'idempotency_key' => 'qwertyuiop',
]);
}
}