mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-25 20:58:02 +00:00
240 lines
8.8 KiB
PHP
240 lines
8.8 KiB
PHP
<?php
|
||
|
||
/*
|
||
* The MIT License
|
||
*
|
||
* Copyright (c) 2025 "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 DateTime;
|
||
use Exception;
|
||
use PHPUnit\Framework\TestCase;
|
||
use Tests\YooKassa\AbstractTestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\AmountInterface;
|
||
use YooKassa\Model\CurrencyCode;
|
||
use YooKassa\Model\Deal\RefundDealInfo;
|
||
use YooKassa\Model\Deal\SettlementPayoutPaymentType;
|
||
use YooKassa\Model\Metadata;
|
||
use YooKassa\Model\MonetaryAmount;
|
||
use YooKassa\Model\Payment\ReceiptRegistrationStatus;
|
||
use YooKassa\Model\Refund\RefundStatus;
|
||
use YooKassa\Model\Refund\Source;
|
||
use YooKassa\Request\Refunds\AbstractRefundResponse;
|
||
|
||
/**
|
||
* AbstractTestRefundResponse
|
||
*
|
||
* @category ClassTest
|
||
* @author cms@yoomoney.ru
|
||
* @link https://yookassa.ru/developers/api
|
||
*/
|
||
abstract class AbstractTestRefundResponse extends AbstractTestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetId(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
self::assertEquals($options['id'], $instance->getId());
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetPaymentId(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
self::assertEquals($options['payment_id'], $instance->getPaymentId());
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetStatus(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
self::assertEquals($options['status'], $instance->getStatus());
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetCreatedAt(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
self::assertInstanceOf(DateTime::class, $instance->getCreatedAt());
|
||
self::assertEquals($options['created_at'], $instance->getCreatedAt()->format(YOOKASSA_DATE));
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetAmount(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
self::assertInstanceOf(AmountInterface::class, $instance->getAmount());
|
||
self::assertEquals($options['amount']['value'], $instance->getAmount()->getValue());
|
||
self::assertEquals($options['amount']['currency'], $instance->getAmount()->getCurrency());
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetReceiptRegistered(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
if (empty($options['receipt_registration'])) {
|
||
self::assertNull($instance->getReceiptRegistration());
|
||
} else {
|
||
self::assertEquals($options['receipt_registration'], $instance->getReceiptRegistration());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetDescription(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
if (empty($options['description'])) {
|
||
self::assertNull($instance->getDescription());
|
||
} else {
|
||
self::assertEquals($options['description'], $instance->getDescription());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetSources(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
if (empty($options['sources'])) {
|
||
self::assertEmpty($instance->getSources());
|
||
} else {
|
||
foreach ($instance->getSources() as $sources) {
|
||
self::assertInstanceOf(Source::class, $sources);
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*/
|
||
public function testGetDeal(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
self::assertInstanceOf(RefundDealInfo::class, $instance->getDeal());
|
||
|
||
self::assertEquals($options['deal']['id'], $instance->getDeal()->getId());
|
||
$settlements = $instance->getDeal()->getRefundSettlements();
|
||
if (!empty($settlements)) {
|
||
self::assertEquals($options['deal']['refund_settlements'][0], $settlements[0]->toArray());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test property "metadata"
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testMetadata(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance($options);
|
||
$instance->setMetadata($options['metadata']);
|
||
if (!empty($options['metadata'])) {
|
||
self::assertNotNull($instance->getMetadata());
|
||
self::assertNotNull($instance->metadata);
|
||
foreach ($options['metadata'] as $key => $element) {
|
||
if (!empty($element)) {
|
||
self::assertEquals($element, $instance->getMetadata()[$key]);
|
||
self::assertEquals($element, $instance->metadata[$key]);
|
||
self::assertIsObject($instance->getMetadata());
|
||
self::assertIsObject($instance->metadata);
|
||
}
|
||
}
|
||
self::assertCount(count($options['metadata']), $instance->getMetadata());
|
||
self::assertCount(count($options['metadata']), $instance->metadata);
|
||
if ($instance->getMetadata() instanceof Metadata) {
|
||
self::assertEquals($options['metadata'], is_array($options['metadata']) ? $instance->getMetadata()->toArray() : $instance->getMetadata());
|
||
self::assertEquals($options['metadata'], is_array($options['metadata']) ? $instance->metadata->toArray() : $instance->getMetadata());
|
||
self::assertCount(count($options['metadata']), $instance->getMetadata());
|
||
self::assertCount(count($options['metadata']), $instance->metadata);
|
||
}
|
||
}
|
||
}
|
||
|
||
public static function validDataProvider(): array
|
||
{
|
||
$result = [];
|
||
$metadata = new Metadata();
|
||
$metadata->test = 'test';
|
||
$metadata->key = 'val';
|
||
for ($i = 0; $i < 10; $i++) {
|
||
$payment = [
|
||
'id' => Random::str(36),
|
||
'payment_id' => Random::str(36),
|
||
'status' => Random::value(RefundStatus::getValidValues()),
|
||
'created_at' => date(YOOKASSA_DATE, Random::int(1, time())),
|
||
'authorized_at' => date(YOOKASSA_DATE, Random::int(1, time())),
|
||
'amount' => [
|
||
'value' => Random::int(100, 100000),
|
||
'currency' => Random::value(CurrencyCode::getValidValues()),
|
||
],
|
||
'receipt_registration' => Random::value(ReceiptRegistrationStatus::getValidValues()),
|
||
'description' => uniqid('', true),
|
||
'sources' => [
|
||
new Source([
|
||
'account_id' => Random::str(36),
|
||
'amount' => new MonetaryAmount(Random::int(1, 1000), 'RUB'),
|
||
'platform_fee_amount' => new MonetaryAmount(Random::int(1, 1000), 'RUB'),
|
||
]),
|
||
],
|
||
'deal' => [
|
||
'id' => 'dl-285e5ee7-0022-5000-8000-01516a44b147',
|
||
'refund_settlements' => [
|
||
[
|
||
'type' => SettlementPayoutPaymentType::PAYOUT,
|
||
'amount' => [
|
||
'value' => 123.00,
|
||
'currency' => 'RUB',
|
||
],
|
||
],
|
||
],
|
||
],
|
||
'metadata' => Random::bool() ? ['key' => 'val'] : $metadata,
|
||
];
|
||
$result[] = [$payment];
|
||
}
|
||
|
||
return $result;
|
||
}
|
||
|
||
abstract protected function getTestInstance(array $options): AbstractRefundResponse;
|
||
}
|