mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-19 09:20:19 +00:00
2db9951ff6
Информация про чеки самозанятых в платежах и возвратах удалена - больше не поддерживаем сервисы для самозанятых Добавлена возможность выставления счета по смс и email Добавлена поддержка работы со списками выплат Обновлен Copyright
217 lines
6.4 KiB
PHP
217 lines
6.4 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\Payout;
|
||
|
||
use Exception;
|
||
use InvalidArgumentException;
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\Payment\PaymentMethod\BankCardType;
|
||
use YooKassa\Model\Payment\PaymentMethodType;
|
||
use YooKassa\Model\Payout\AbstractPayoutDestination;
|
||
use YooKassa\Model\Payout\PayoutDestinationFactory;
|
||
use YooKassa\Model\Payout\PayoutDestinationType;
|
||
|
||
/**
|
||
* PayoutDestinationFactoryTest
|
||
*
|
||
* @category ClassTest
|
||
* @author cms@yoomoney.ru
|
||
* @link https://yookassa.ru/developers/api
|
||
*/
|
||
class PayoutDestinationFactoryTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validTypeDataProvider
|
||
*/
|
||
public function testFactory(string $type): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$paymentData = $instance->factory($type);
|
||
self::assertNotNull($paymentData);
|
||
self::assertInstanceOf(AbstractPayoutDestination::class, $paymentData);
|
||
self::assertEquals($type, $paymentData->getType());
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidTypeDataProvider
|
||
*
|
||
* @param mixed $type
|
||
*/
|
||
public function testInvalidFactory($type): void
|
||
{
|
||
$this->expectException(InvalidArgumentException::class);
|
||
$instance = $this->getTestInstance();
|
||
$instance->factory($type);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validArrayDataProvider
|
||
*/
|
||
public function testFactoryFromArray(array $options): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$paymentData = $instance->factoryFromArray($options);
|
||
self::assertNotNull($paymentData);
|
||
self::assertInstanceOf(AbstractPayoutDestination::class, $paymentData);
|
||
|
||
foreach ($options as $property => $value) {
|
||
if (!is_array($value)) {
|
||
self::assertEquals($paymentData->{$property}, $value);
|
||
} else {
|
||
self::assertEquals($paymentData->{$property}->toArray(), $value);
|
||
}
|
||
}
|
||
|
||
$type = $options['type'];
|
||
unset($options['type']);
|
||
$paymentData = $instance->factoryFromArray($options, $type);
|
||
self::assertNotNull($paymentData);
|
||
self::assertInstanceOf(AbstractPayoutDestination::class, $paymentData);
|
||
|
||
self::assertEquals($type, $paymentData->getType());
|
||
foreach ($options as $property => $value) {
|
||
if (!is_array($value)) {
|
||
self::assertEquals($paymentData->{$property}, $value);
|
||
} else {
|
||
self::assertEquals($paymentData->{$property}->toArray(), $value);
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataArrayDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testInvalidFactoryFromArray($options): void
|
||
{
|
||
$this->expectException(InvalidArgumentException::class);
|
||
$instance = $this->getTestInstance();
|
||
$instance->factoryFromArray($options);
|
||
}
|
||
|
||
/**
|
||
* @return array
|
||
*/
|
||
public static function validTypeDataProvider(): array
|
||
{
|
||
$result = [];
|
||
foreach (PayoutDestinationType::getEnabledValues() as $value) {
|
||
$result[] = [$value];
|
||
}
|
||
|
||
return $result;
|
||
}
|
||
|
||
/**
|
||
* @return array
|
||
* @throws Exception
|
||
*/
|
||
public static function invalidTypeDataProvider(): array
|
||
{
|
||
return [
|
||
[''],
|
||
[null],
|
||
[0],
|
||
[1],
|
||
[-1],
|
||
['5'],
|
||
[Random::str(10)],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @return array
|
||
* @throws Exception
|
||
*/
|
||
public static function validArrayDataProvider(): array
|
||
{
|
||
$result = [
|
||
[
|
||
[
|
||
'type' => PaymentMethodType::BANK_CARD,
|
||
'card' => [
|
||
'first6' => Random::str(6, '0123456789'),
|
||
'last4' => Random::str(4, '0123456789'),
|
||
'card_type' => Random::value(BankCardType::getValidValues()),
|
||
'issuer_country' => Random::value(self::validIssuerCountry()),
|
||
'issuer_name' => Random::str(4, 50),
|
||
],
|
||
],
|
||
],
|
||
[
|
||
[
|
||
'type' => PaymentMethodType::YOO_MONEY,
|
||
'account_number' => Random::str(11, 33, '1234567890'),
|
||
],
|
||
],
|
||
[
|
||
[
|
||
'type' => PaymentMethodType::SBP,
|
||
'phone' => Random::str(4, 15, '1234567890'),
|
||
'bank_id' => Random::str(12, 12, '0123456789'),
|
||
],
|
||
],
|
||
];
|
||
foreach (PayoutDestinationType::getEnabledValues() as $value) {
|
||
$result[] = [['type' => $value]];
|
||
}
|
||
|
||
return $result;
|
||
}
|
||
|
||
private static function validIssuerCountry(): array
|
||
{
|
||
return [
|
||
'RU',
|
||
'EN',
|
||
'UK',
|
||
'AU',
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @return array
|
||
*/
|
||
public static function invalidDataArrayDataProvider(): array
|
||
{
|
||
return [
|
||
[[]],
|
||
[['type' => 'test']],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @return PayoutDestinationFactory
|
||
*/
|
||
protected function getTestInstance(): PayoutDestinationFactory
|
||
{
|
||
return new PayoutDestinationFactory();
|
||
}
|
||
}
|