mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
84 lines
1.9 KiB
PHP
84 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\ApiClient\Entity;
|
|
|
|
use WooCommerce\PayPalCommerce\TestCase;
|
|
|
|
class PaymentsTest extends TestCase
|
|
{
|
|
public function testAuthorizations()
|
|
{
|
|
$authorization = \Mockery::mock(Authorization::class);
|
|
$authorizations = [$authorization];
|
|
|
|
$testee = new Payments($authorizations, []);
|
|
|
|
$this->assertEquals($authorizations, $testee->authorizations());
|
|
}
|
|
public function testCaptures()
|
|
{
|
|
$capture = \Mockery::mock(Capture::class);
|
|
$captures = [$capture];
|
|
|
|
$testee = new Payments([], $captures);
|
|
|
|
$this->assertEquals($captures, $testee->captures());
|
|
}
|
|
|
|
public function testToArray()
|
|
{
|
|
$authorization = \Mockery::mock(Authorization::class);
|
|
$authorization->shouldReceive('to_array')->andReturn(
|
|
[
|
|
'id' => 'foo',
|
|
'status' => 'CREATED',
|
|
]
|
|
);
|
|
$capture = \Mockery::mock(Capture::class);
|
|
$capture->shouldReceive('to_array')->andReturn(
|
|
[
|
|
'id' => 'capture',
|
|
'status' => 'CREATED',
|
|
]
|
|
);
|
|
$refund = \Mockery::mock(Refund::class);
|
|
$refund->shouldReceive('to_array')->andReturn(
|
|
[
|
|
'id' => 'refund',
|
|
'status' => 'CREATED',
|
|
]
|
|
);
|
|
|
|
$authorizations = [$authorization];
|
|
$captures = [$capture];
|
|
$refunds = [$refund];
|
|
|
|
$testee = new Payments($authorizations, $captures, $refunds);
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'authorizations' => [
|
|
[
|
|
'id' => 'foo',
|
|
'status' => 'CREATED',
|
|
],
|
|
],
|
|
'captures' => [
|
|
[
|
|
'id' => 'capture',
|
|
'status' => 'CREATED',
|
|
],
|
|
],
|
|
'refunds' => [
|
|
[
|
|
'id' => 'refund',
|
|
'status' => 'CREATED',
|
|
],
|
|
],
|
|
],
|
|
$testee->to_array()
|
|
);
|
|
}
|
|
}
|