Files
yookassa-sdk-php/tests/Model/Notification/NotificationPayoutCanceledTest.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

181 lines
5.3 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\Model\Notification;
use Exception;
use InvalidArgumentException;
use Tests\YooKassa\AbstractTestCase;
use Datetime;
use YooKassa\Model\Metadata;
use YooKassa\Model\Notification\NotificationCanceled;
use YooKassa\Model\Notification\NotificationPayoutCanceled;
use YooKassa\Model\Receipt\SettlementType;
/**
* NotificationPayoutCanceledTest
*
* @category ClassTest
* @author cms@yoomoney.ru
* @link https://yookassa.ru/developers/api
*/
class NotificationPayoutCanceledTest extends AbstractTestCase
{
protected NotificationPayoutCanceled $object;
/**
* @param mixed|null $value
* @return NotificationPayoutCanceled
*/
protected function getTestInstance(mixed $value = null): NotificationPayoutCanceled
{
return new NotificationPayoutCanceled($value);
}
/**
* @return void
*/
public function testNotificationPayoutCanceledClassExists(): void
{
$this->object = $this->getMockBuilder(NotificationPayoutCanceled::class)->getMockForAbstractClass();
$this->assertTrue(class_exists(NotificationPayoutCanceled::class));
$this->assertInstanceOf(NotificationPayoutCanceled::class, $this->object);
}
/**
* Test property "object"
* @dataProvider validObjectDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testAmount(mixed $value): void
{
$instance = $this->getTestInstance();
$instance->setObject($value);
self::assertNotNull($instance->getObject());
self::assertNotNull($instance->object);
self::assertEquals($value, is_array($value) ? $instance->getObject()->toArray() : $instance->getObject());
self::assertEquals($value, is_array($value) ? $instance->object->toArray() : $instance->object);
}
/**
* Test invalid property "object"
* @dataProvider invalidObjectDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidObject(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setObject($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validObjectDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_object'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidObjectDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_object'));
}
/**
* Test valid method "fromArray"
* @dataProvider validClassDataProvider
* @param mixed $value
*
* @return void
*/
public function testFromArray(mixed $value): void
{
$instance = $this->getTestInstance();
$instance->fromArray($value->toArray());
self::assertEquals($value['object'], $instance->getObject());
}
/**
* @return array
* @throws Exception
*/
public function validClassDataProvider(): array
{
$instance = $this->getTestInstance();
$objects = $this->validObjectDataProvider();
$instance->setObject(array_shift($objects[0]));
return [[$instance]];
}
/**
* @dataProvider invalidDataProvider
*/
public function testInvalidFromArray(array $options): void
{
$this->expectException(InvalidArgumentException::class);
$this->getTestInstance($options);
}
/**
* @return \array[][]
*/
public static function invalidDataProvider(): array
{
return [
[
[
'type' => SettlementType::PREPAYMENT,
],
],
[
[
'event' => SettlementType::PREPAYMENT,
],
],
[
[
'object' => [],
],
],
];
}
}