303 lines
14 KiB
PHP
303 lines
14 KiB
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Request\Payments;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use YooKassa\Helpers\Random;
|
|
use YooKassa\Model\CancellationDetailsPartyCode;
|
|
use YooKassa\Model\CancellationDetailsReasonCode;
|
|
use YooKassa\Model\ConfirmationType;
|
|
use YooKassa\Model\CurrencyCode;
|
|
use YooKassa\Model\PaymentInterface;
|
|
use YooKassa\Model\PaymentMethodType;
|
|
use YooKassa\Model\PaymentStatus;
|
|
use YooKassa\Model\ReceiptRegistrationStatus;
|
|
use YooKassa\Request\Payments\PaymentsResponse;
|
|
|
|
class PaymentsResponseTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
* @param array $options
|
|
*/
|
|
public function testGetItems($options)
|
|
{
|
|
$instance = new PaymentsResponse($options);
|
|
self::assertEquals(count($options['items']), count($instance->getItems()));
|
|
foreach ($instance->getItems() as $index => $item) {
|
|
self::assertTrue($item instanceof PaymentInterface);
|
|
self::assertArrayHasKey($index, $options['items']);
|
|
self::assertEquals($options['items'][$index]['id'], $item->getId());
|
|
self::assertEquals($options['items'][$index]['status'], $item->getStatus());
|
|
self::assertEquals($options['items'][$index]['amount']['value'], $item->getAmount()->getValue());
|
|
self::assertEquals($options['items'][$index]['amount']['currency'], $item->getAmount()->getCurrency());
|
|
self::assertEquals($options['items'][$index]['created_at'], $item->getCreatedAt()->format(YOOKASSA_DATE));
|
|
self::assertEquals($options['items'][$index]['payment_method']['type'], $item->getPaymentMethod()->getType());
|
|
self::assertEquals($options['items'][$index]['paid'], $item->getPaid());
|
|
self::assertEquals($options['items'][$index]['refundable'], $item->getRefundable());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
* @param array $options
|
|
*/
|
|
public function testGetNextCursor($options)
|
|
{
|
|
$instance = new PaymentsResponse($options);
|
|
if (empty($options['next_cursor'])) {
|
|
self::assertNull($instance->getNextCursor());
|
|
} else {
|
|
self::assertEquals($options['next_cursor'], $instance->getNextCursor());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
* @param array $options
|
|
*/
|
|
public function testHasNext($options)
|
|
{
|
|
$instance = new PaymentsResponse($options);
|
|
if (empty($options['next_cursor'])) {
|
|
self::assertFalse($instance->hasNextCursor());
|
|
} else {
|
|
self::assertTrue($instance->hasNextCursor());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidDataProvider
|
|
* @param array $options
|
|
* @expectedException \InvalidArgumentException
|
|
*/
|
|
public function testInvalidData($options)
|
|
{
|
|
new PaymentsResponse($options);
|
|
}
|
|
|
|
public function validDataProvider()
|
|
{
|
|
return array(
|
|
array(
|
|
array(
|
|
'items' => array(),
|
|
),
|
|
),
|
|
array(
|
|
array(
|
|
'items' => array(
|
|
array(
|
|
'id' => Random::str(36),
|
|
'status' => PaymentStatus::SUCCEEDED,
|
|
'amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => CurrencyCode::EUR,
|
|
),
|
|
'description' => Random::str(20),
|
|
'created_at' => date(YOOKASSA_DATE),
|
|
'payment_method' => array(
|
|
'type' => PaymentMethodType::QIWI,
|
|
),
|
|
'paid' => false,
|
|
'refundable' => false,
|
|
'confirmation' => array(
|
|
'type' => ConfirmationType::EXTERNAL,
|
|
),
|
|
)
|
|
),
|
|
'next_cursor' => uniqid(),
|
|
),
|
|
),
|
|
array(
|
|
array(
|
|
'items' => array(
|
|
array(
|
|
'id' => Random::str(36),
|
|
'status' => PaymentStatus::SUCCEEDED,
|
|
'amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => CurrencyCode::EUR,
|
|
),
|
|
'created_at' => date(YOOKASSA_DATE),
|
|
'payment_method' => array(
|
|
'type' => PaymentMethodType::QIWI,
|
|
),
|
|
'paid' => true,
|
|
'refundable' => true,
|
|
'confirmation' => array(
|
|
'type' => ConfirmationType::EXTERNAL,
|
|
),
|
|
),
|
|
array(
|
|
'id' => Random::str(36),
|
|
'status' => PaymentStatus::SUCCEEDED,
|
|
'amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => CurrencyCode::EUR,
|
|
),
|
|
'description' => Random::str(20),
|
|
'created_at' => date(YOOKASSA_DATE),
|
|
'payment_method' => array(
|
|
'type' => PaymentMethodType::QIWI,
|
|
),
|
|
'paid' => false,
|
|
'refundable' => false,
|
|
'recipient' => array(
|
|
'account_id' => uniqid(),
|
|
'gateway_id' => uniqid(),
|
|
),
|
|
'reference_id' => uniqid(),
|
|
'captured_at' => date(YOOKASSA_DATE),
|
|
'charge' => array('value' => Random::int(1, 100000), 'currency' => CurrencyCode::RUB),
|
|
'income' => array('value' => Random::int(1, 100000), 'currency' => CurrencyCode::USD),
|
|
'refunded' => array('value' => Random::int(1, 100000), 'currency' => CurrencyCode::EUR),
|
|
'metadata' => array('test_key' => 'test_value'),
|
|
'cancellation_details' => array('party' => CancellationDetailsPartyCode::PAYMENT_NETWORK, 'reason' => CancellationDetailsReasonCode::INVALID_CSC),
|
|
'authorization_details' => array('rrn' => Random::str(20), 'auth_code' => Random::str(20)),
|
|
'refunded_amount' => array('value' => Random::int(1, 100000), 'currency' => CurrencyCode::RUB),
|
|
'confirmation' => array(
|
|
'type' => ConfirmationType::EXTERNAL,
|
|
),
|
|
'receipt_registration' => ReceiptRegistrationStatus::PENDING,
|
|
),
|
|
),
|
|
'next_cursor' => uniqid(),
|
|
),
|
|
),
|
|
array(
|
|
array(
|
|
'items' => array(
|
|
array(
|
|
'id' => Random::str(36),
|
|
'status' => PaymentStatus::SUCCEEDED,
|
|
'amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => CurrencyCode::EUR,
|
|
),
|
|
'description' => Random::str(20),
|
|
'created_at' => date(YOOKASSA_DATE),
|
|
'payment_method' => array(
|
|
'type' => PaymentMethodType::QIWI,
|
|
),
|
|
'paid' => true,
|
|
'refundable' => true,
|
|
'confirmation' => array(
|
|
'type' => ConfirmationType::REDIRECT,
|
|
'confirmation_url' => Random::str(10),
|
|
'return_url' => Random::str(10),
|
|
'enforce' => false,
|
|
),
|
|
'income_amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => Random::value(CurrencyCode::getValidValues()),
|
|
)
|
|
),
|
|
array(
|
|
'id' => Random::str(36),
|
|
'status' => PaymentStatus::SUCCEEDED,
|
|
'amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => CurrencyCode::EUR,
|
|
),
|
|
'description' => Random::str(20),
|
|
'created_at' => date(YOOKASSA_DATE),
|
|
'payment_method' => array(
|
|
'type' => PaymentMethodType::QIWI,
|
|
),
|
|
'paid' => true,
|
|
'refundable' => true,
|
|
'confirmation' => array(
|
|
'type' => ConfirmationType::REDIRECT,
|
|
'confirmation_url' => Random::str(10),
|
|
),
|
|
'income_amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => Random::value(CurrencyCode::getValidValues()),
|
|
)
|
|
),
|
|
array(
|
|
'id' => Random::str(36),
|
|
'status' => PaymentStatus::SUCCEEDED,
|
|
'amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => CurrencyCode::EUR,
|
|
),
|
|
'description' => Random::str(20),
|
|
'created_at' => date(YOOKASSA_DATE),
|
|
'payment_method' => array(
|
|
'type' => PaymentMethodType::QIWI,
|
|
),
|
|
'paid' => true,
|
|
'refundable' => true,
|
|
'confirmation' => array(
|
|
'type' => ConfirmationType::CODE_VERIFICATION,
|
|
'confirmation_url' => Random::str(10),
|
|
),
|
|
'income_amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => Random::value(CurrencyCode::getValidValues()),
|
|
)
|
|
),
|
|
array(
|
|
'id' => Random::str(36),
|
|
'status' => PaymentStatus::SUCCEEDED,
|
|
'amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => CurrencyCode::EUR,
|
|
),
|
|
'description' => Random::str(20),
|
|
'created_at' => date(YOOKASSA_DATE),
|
|
'payment_method' => array(
|
|
'type' => PaymentMethodType::QIWI,
|
|
),
|
|
'paid' => true,
|
|
'refundable' => true,
|
|
'confirmation' => array(
|
|
'type' => ConfirmationType::EMBEDDED,
|
|
'confirmation_token' => Random::str(10),
|
|
'confirmation_url' => Random::str(10),
|
|
),
|
|
'income_amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => Random::value(CurrencyCode::getValidValues()),
|
|
)
|
|
),
|
|
),
|
|
'next_cursor' => uniqid(),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
public function invalidDataProvider()
|
|
{
|
|
return array(
|
|
array(
|
|
array(
|
|
'items' => array(
|
|
array(
|
|
'id' => Random::str(36),
|
|
'status' => PaymentStatus::SUCCEEDED,
|
|
'amount' => array(
|
|
'value' => Random::int(1, 100000),
|
|
'currency' => CurrencyCode::EUR,
|
|
),
|
|
'description' => Random::str(20),
|
|
'created_at' => date(YOOKASSA_DATE),
|
|
'payment_method' => array(
|
|
'type' => PaymentMethodType::QIWI,
|
|
),
|
|
'paid' => true,
|
|
'refundable' => true,
|
|
'confirmation' => array(
|
|
'confirmation_url' => Random::str(10),
|
|
)
|
|
)
|
|
),
|
|
),
|
|
)
|
|
);
|
|
}
|
|
}
|