mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-30 03:58:43 +00:00
144 lines
5.8 KiB
PHP
144 lines
5.8 KiB
PHP
<?php
|
||
/*
|
||
* The MIT License
|
||
*
|
||
* Copyright (c) 2026 "YooMoney", NBСO LLC
|
||
*
|
||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
* of this software and associated documentation files (the "Software"), to deal
|
||
* in the Software without restriction, including without limitation the rights
|
||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
* copies of the Software, and to permit persons to whom the Software is
|
||
* furnished to do so, subject to the following conditions:
|
||
*
|
||
* The above copyright notice and this permission notice shall be included in
|
||
* all copies or substantial portions of the Software.
|
||
*
|
||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
* THE SOFTWARE.
|
||
*/
|
||
|
||
namespace Tests\YooKassa\Request\Refunds;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\CurrencyCode;
|
||
use YooKassa\Model\ReceiptRegistrationStatus;
|
||
use YooKassa\Model\RefundInterface;
|
||
use YooKassa\Model\RefundStatus;
|
||
use YooKassa\Request\Refunds\RefundsResponse;
|
||
|
||
class RefundsResponseTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetItems($options)
|
||
{
|
||
$instance = new RefundsResponse($options);
|
||
self::assertEquals(count($options['items']), count($instance->getItems()));
|
||
foreach ($instance->getItems() as $index => $item) {
|
||
self::assertTrue($item instanceof RefundInterface);
|
||
self::assertArrayHasKey($index, $options['items']);
|
||
self::assertEquals($options['items'][$index]['id'], $item->getId());
|
||
self::assertEquals($options['items'][$index]['payment_id'], $item->getPaymentId());
|
||
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));
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetNextCursor($options)
|
||
{
|
||
$instance = new RefundsResponse($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 testHasNextCursor($options)
|
||
{
|
||
$instance = new RefundsResponse($options);
|
||
if (empty($options['next_cursor'])) {
|
||
self::assertFalse($instance->hasNextCursor());
|
||
} else {
|
||
self::assertTrue($instance->hasNextCursor());
|
||
}
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
return array(
|
||
array(
|
||
array(
|
||
'items' => array(),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'items' => array(
|
||
array(
|
||
'id' => Random::str(36),
|
||
'payment_id' => Random::str(36),
|
||
'status' => RefundStatus::SUCCEEDED,
|
||
'amount' => array(
|
||
'value' => Random::int(1, 100),
|
||
'currency' => Random::value(CurrencyCode::getValidValues()),
|
||
),
|
||
'created_at' => date(YOOKASSA_DATE, Random::int(0, time())),
|
||
)
|
||
),
|
||
'next_cursor' => Random::str(1, 64),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'items' => array(
|
||
array(
|
||
'id' => Random::str(36),
|
||
'payment_id' => Random::str(36),
|
||
'status' => RefundStatus::SUCCEEDED,
|
||
'amount' => array(
|
||
'value' => Random::int(1, 100),
|
||
'currency' => Random::value(CurrencyCode::getValidValues()),
|
||
),
|
||
'created_at' => date(YOOKASSA_DATE),
|
||
),
|
||
array(
|
||
'id' => Random::str(36),
|
||
'payment_id' => Random::str(36),
|
||
'status' => RefundStatus::SUCCEEDED,
|
||
'amount' => array(
|
||
'value' => Random::int(1, 100),
|
||
'currency' => Random::value(CurrencyCode::getValidValues()),
|
||
),
|
||
'created_at' => date(YOOKASSA_DATE, Random::int(0, time())),
|
||
'authorized_at' => date(YOOKASSA_DATE, Random::int(0, time())),
|
||
'receipt_registered' => Random::value(ReceiptRegistrationStatus::getValidValues()),
|
||
'description' => Random::str(64, 250),
|
||
),
|
||
),
|
||
'next_cursor' => Random::str(1, 64),
|
||
),
|
||
),
|
||
);
|
||
}
|
||
}
|