mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-23 16:31:57 +00:00
2db9951ff6
Информация про чеки самозанятых в платежах и возвратах удалена - больше не поддерживаем сервисы для самозанятых Добавлена возможность выставления счета по смс и email Добавлена поддержка работы со списками выплат Обновлен Copyright
181 lines
5.3 KiB
PHP
181 lines
5.3 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\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' => [],
|
||
],
|
||
],
|
||
];
|
||
}
|
||
}
|