Files
yookassa-sdk-php/tests/Request/Refunds/RefundsRequestTest.php
T
Антон Н. Николаев b6bf136dc6 В объект платежа добавлен объект payment_order с типом utilities (оплата жилищно-коммунальных услуг). Для платежей Сбербанк Бизнес Онлайн (СББОЛ) добавлена ставка НДС 5%, а ставка 18% отмечена как deprecated
Добавлено новое значение `PayoutCancellationDetails.reason=self_employed_annual_limit_exceeded` - текущая выплата превысит лимит разрешенного годового дохода самозанятого
В поле `SbpPayerBankDetails.bank_id` изменён паттерн валидации значения
Добавлена поддержка работы со способами оплаты
В объект возврата добавлен объект `refund_authorization_details` - детали авторизации возврата
Обновлен Copyright
Для чеков от ЮKassa (ЮЧеки), параметр `items`: изменено максимальное допустимо количество товаров в чеке (было 100, стало 80)
В номере банковской карты разрешено указывать Diners Club (14 знаков) и American Express (15 знаков)
2025-07-24 14:13:44 +03:00

590 lines
19 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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 Exception;
use Tests\YooKassa\AbstractTestCase;
use Datetime;
use YooKassa\Common\AbstractRequestBuilder;
use YooKassa\Model\Metadata;
use YooKassa\Request\Refunds\RefundsRequest;
/**
* DealsRequestTest
*
* @category ClassTest
* @author cms@yoomoney.ru
* @link https://yookassa.ru/developers/api
*/
class RefundsRequestTest extends AbstractTestCase
{
protected RefundsRequest $object;
/**
* @param mixed|null $value
* @return RefundsRequest
*/
protected function getTestInstance(mixed $value = null): RefundsRequest
{
return new RefundsRequest($value);
}
/**
* @return void
*/
public function testRefundsRequestClassExists(): void
{
$this->object = $this->getMockBuilder(RefundsRequest::class)->getMockForAbstractClass();
$this->assertTrue(class_exists(RefundsRequest::class));
$this->assertInstanceOf(RefundsRequest::class, $this->object);
self::assertTrue($this->object->validate());
}
/**
* Test property "payment_id"
* @dataProvider validPaymentIdDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testPaymentId(mixed $value): void
{
$instance = $this->getTestInstance();
self::assertEmpty($instance->getPaymentId());
self::assertEmpty($instance->payment_id);
$instance->setPaymentId($value);
self::assertEquals($value, is_array($value) ? $instance->getPaymentId()->toArray() : $instance->getPaymentId());
self::assertEquals($value, is_array($value) ? $instance->payment_id->toArray() : $instance->payment_id);
if (!empty($value)) {
self::assertTrue($instance->hasPaymentId());
self::assertLessThanOrEqual(36, is_string($instance->getPaymentId()) ? mb_strlen($instance->getPaymentId()) : $instance->getPaymentId());
self::assertLessThanOrEqual(36, is_string($instance->payment_id) ? mb_strlen($instance->payment_id) : $instance->payment_id);
self::assertGreaterThanOrEqual(36, is_string($instance->getPaymentId()) ? mb_strlen($instance->getPaymentId()) : $instance->getPaymentId());
self::assertGreaterThanOrEqual(36, is_string($instance->payment_id) ? mb_strlen($instance->payment_id) : $instance->payment_id);
}
}
/**
* Test invalid property "payment_id"
* @dataProvider invalidPaymentIdDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidPaymentId(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setPaymentId($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validPaymentIdDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_paymentId'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidPaymentIdDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_paymentId'));
}
/**
* Test property "cursor"
* @dataProvider validCursorDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testCursor(mixed $value): void
{
$instance = $this->getTestInstance();
self::assertEmpty($instance->getCursor());
self::assertEmpty($instance->cursor);
$instance->setCursor($value);
self::assertEquals($value, is_array($value) ? $instance->getCursor()->toArray() : $instance->getCursor());
self::assertEquals($value, is_array($value) ? $instance->cursor->toArray() : $instance->cursor);
if (!empty($value)) {
self::assertTrue($instance->hasCursor());
self::assertNotNull($instance->getCursor());
self::assertNotNull($instance->cursor);
}
}
/**
* Test invalid property "cursor"
* @dataProvider invalidCursorDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidCursor(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setCursor($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validCursorDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_cursor'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidCursorDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_cursor'));
}
/**
* Test property "limit"
* @dataProvider validLimitDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testLimit(mixed $value): void
{
$instance = $this->getTestInstance();
$instance->setLimit($value);
self::assertEquals($value, is_array($value) ? $instance->getLimit()->toArray() : $instance->getLimit());
self::assertEquals($value, is_array($value) ? $instance->limit->toArray() : $instance->limit);
if (!empty($value)) {
self::assertTrue($instance->hasLimit());
self::assertNotNull($instance->getLimit());
self::assertNotNull($instance->limit);
self::assertLessThanOrEqual(100, is_string($instance->getLimit()) ? mb_strlen($instance->getLimit()) : $instance->getLimit());
self::assertLessThanOrEqual(100, is_string($instance->limit) ? mb_strlen($instance->limit) : $instance->limit);
self::assertGreaterThanOrEqual(1, is_string($instance->getLimit()) ? mb_strlen($instance->getLimit()) : $instance->getLimit());
self::assertGreaterThanOrEqual(1, is_string($instance->limit) ? mb_strlen($instance->limit) : $instance->limit);
self::assertIsNumeric($instance->getLimit());
self::assertIsNumeric($instance->limit);
}
}
/**
* Test invalid property "limit"
* @dataProvider invalidCursorDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidLimit(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setCursor($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validLimitDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_limit'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidLimitDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_limit'));
}
/**
* Test property "created_at_gte"
* @dataProvider validCreatedAtGteDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testCreatedAtGte(mixed $value): void
{
$instance = $this->getTestInstance();
self::assertEmpty($instance->getCreatedAtGte());
self::assertEmpty($instance->created_at_gte);
$instance->setCreatedAtGte($value);
if (!empty($value)) {
self::assertTrue($instance->hasCreatedAtGte());
self::assertNotNull($instance->getCreatedAtGte());
self::assertNotNull($instance->created_at_gte);
if ($value instanceof Datetime) {
self::assertEquals($value, $instance->getCreatedAtGte());
self::assertEquals($value, $instance->created_at_gte);
} else {
self::assertEquals(new Datetime($value), $instance->getCreatedAtGte());
self::assertEquals(new Datetime($value), $instance->created_at_gte);
}
}
}
/**
* Test invalid property "created_at_gte"
* @dataProvider invalidCreatedAtGteDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidCreatedAtGte(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setCreatedAtGte($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validCreatedAtGteDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_createdAtGte'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidCreatedAtGteDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_createdAtGte'));
}
/**
* Test property "created_at_gt"
* @dataProvider validCreatedAtGtDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testCreatedAtGt(mixed $value): void
{
$instance = $this->getTestInstance();
self::assertEmpty($instance->getCreatedAtGt());
self::assertEmpty($instance->created_at_gt);
$instance->setCreatedAtGt($value);
if (!empty($value)) {
self::assertTrue($instance->hasCreatedAtGt());
self::assertNotNull($instance->getCreatedAtGt());
self::assertNotNull($instance->created_at_gt);
if ($value instanceof Datetime) {
self::assertEquals($value, $instance->getCreatedAtGt());
self::assertEquals($value, $instance->created_at_gt);
} else {
self::assertEquals(new Datetime($value), $instance->getCreatedAtGt());
self::assertEquals(new Datetime($value), $instance->created_at_gt);
}
}
}
/**
* Test invalid property "created_at_gt"
* @dataProvider invalidCreatedAtGtDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidCreatedAtGt(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setCreatedAtGt($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validCreatedAtGtDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_createdAtGt'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidCreatedAtGtDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_createdAtGt'));
}
/**
* Test property "created_at_lte"
* @dataProvider validCreatedAtLteDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testCreatedAtLte(mixed $value): void
{
$instance = $this->getTestInstance();
self::assertEmpty($instance->getCreatedAtLte());
self::assertEmpty($instance->created_at_lte);
$instance->setCreatedAtLte($value);
if (!empty($value)) {
self::assertTrue($instance->hasCreatedAtLte());
self::assertNotNull($instance->getCreatedAtLte());
self::assertNotNull($instance->created_at_lte);
if ($value instanceof Datetime) {
self::assertEquals($value, $instance->getCreatedAtLte());
self::assertEquals($value, $instance->created_at_lte);
} else {
self::assertEquals(new Datetime($value), $instance->getCreatedAtLte());
self::assertEquals(new Datetime($value), $instance->created_at_lte);
}
}
}
/**
* Test invalid property "created_at_lte"
* @dataProvider invalidCreatedAtLteDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidCreatedAtLte(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setCreatedAtLte($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validCreatedAtLteDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_createdAtLte'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidCreatedAtLteDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_createdAtLte'));
}
/**
* Test property "created_at_lt"
* @dataProvider validCreatedAtLtDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testCreatedAtLt(mixed $value): void
{
$instance = $this->getTestInstance();
self::assertEmpty($instance->getCreatedAtLt());
self::assertEmpty($instance->created_at_lt);
$instance->setCreatedAtLt($value);
if (!empty($value)) {
self::assertTrue($instance->hasCreatedAtLt());
self::assertNotNull($instance->getCreatedAtLt());
self::assertNotNull($instance->created_at_lt);
if ($value instanceof Datetime) {
self::assertEquals($value, $instance->getCreatedAtLt());
self::assertEquals($value, $instance->created_at_lt);
} else {
self::assertEquals(new Datetime($value), $instance->getCreatedAtLt());
self::assertEquals(new Datetime($value), $instance->created_at_lt);
}
}
}
/**
* Test invalid property "created_at_lt"
* @dataProvider invalidCreatedAtLtDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidCreatedAtLt(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setCreatedAtLt($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validCreatedAtLtDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_createdAtLt'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidCreatedAtLtDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_createdAtLt'));
}
/**
* Test property "status"
* @dataProvider validStatusDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testStatus(mixed $value): void
{
$instance = $this->getTestInstance();
self::assertEmpty($instance->getStatus());
self::assertEmpty($instance->status);
$instance->setStatus($value);
if (!empty($value)) {
self::assertTrue($instance->hasStatus());
self::assertNotNull($instance->getStatus());
self::assertNotNull($instance->status);
self::assertEquals($value, is_array($value) ? $instance->getStatus()->toArray() : $instance->getStatus());
self::assertEquals($value, is_array($value) ? $instance->status->toArray() : $instance->status);
self::assertContains($instance->getStatus(), ['canceled', 'succeeded', 'pending']);
self::assertContains($instance->status, ['canceled', 'succeeded', 'pending']);
}
}
/**
* Test invalid property "status"
* @dataProvider invalidStatusDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidStatus(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setStatus($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validStatusDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_status'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidStatusDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_status'));
}
/**
* Test valid method "builder"
* @dataProvider validClassDataProvider
* @param mixed $value
*
* @return void
*/
public function testBuilder(mixed $value): void
{
$instance = $this->getTestInstance($value);
self::assertInstanceOf(AbstractRequestBuilder::class, $instance::builder());
}
/**
* @return array
* @throws Exception
*/
public function validClassDataProvider(): array
{
$instance = $this->getTestInstance();
return [$this->getValidDataProviderByClass($instance)];
}
}