mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-18 13:56:17 +00:00
cbcdbc8ae1
Отказ от поддержки PHP < 8 Изменена структура файлов Переработана логика работы с моделями Добавлено использование валидатора данных в моделях Массивы объектов заменены на объекты-коллекции
456 lines
14 KiB
PHP
456 lines
14 KiB
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Request\Payouts;
|
|
|
|
use Exception;
|
|
use InvalidArgumentException;
|
|
use PHPUnit\Framework\TestCase;
|
|
use stdClass;
|
|
use YooKassa\Helpers\Random;
|
|
use YooKassa\Model\AmountInterface;
|
|
use YooKassa\Model\CurrencyCode;
|
|
use YooKassa\Model\MonetaryAmount;
|
|
use YooKassa\Model\Payment\PaymentMethodType;
|
|
use YooKassa\Model\Payout\Payout;
|
|
use YooKassa\Model\Payout\PayoutDestinationType;
|
|
use YooKassa\Request\Payouts\CreatePayoutRequestBuilder;
|
|
use YooKassa\Request\Payouts\IncomeReceiptData;
|
|
use YooKassa\Request\Payouts\PayoutDestinationData\PayoutDestinationDataFactory;
|
|
use YooKassa\Request\Payouts\PayoutSelfEmployedInfo;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class CreatePayoutRequestBuilderTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetDeal($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
|
|
if (empty($options['deal'])) {
|
|
self::assertNull($instance->getDeal());
|
|
} else {
|
|
self::assertNotNull($instance->getDeal());
|
|
self::assertEquals($options['deal'], $instance->getDeal()->toArray());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetSelfEmployed($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
|
|
if (empty($options['self_employed'])) {
|
|
self::assertNull($instance->getSelfEmployed());
|
|
} else {
|
|
self::assertNotNull($instance->getSelfEmployed());
|
|
if (is_array($options['self_employed'])) {
|
|
self::assertEquals($options['self_employed'], $instance->getSelfEmployed()->toArray());
|
|
} else {
|
|
self::assertEquals($options['self_employed'], $instance->getSelfEmployed());
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetReceiptData($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
|
|
if (empty($options['receipt_data'])) {
|
|
self::assertNull($instance->getReceiptData());
|
|
} else {
|
|
self::assertNotNull($instance->getReceiptData());
|
|
if (is_array($options['receipt_data'])) {
|
|
self::assertEquals($options['receipt_data'], $instance->getReceiptData()->toArray());
|
|
} else {
|
|
self::assertEquals($options['receipt_data'], $instance->getReceiptData());
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetAmount($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
self::assertNotNull($instance->getAmount());
|
|
|
|
if ($options['amount'] instanceof AmountInterface) {
|
|
self::assertEquals($options['amount']->getValue(), $instance->getAmount()->getValue());
|
|
} else {
|
|
self::assertEquals($options['amount']['value'], $instance->getAmount()->getValue());
|
|
}
|
|
|
|
if (!$options['amount'] instanceof AmountInterface) {
|
|
$builder->setAmount([
|
|
'value' => $options['amount']['value'],
|
|
'currency' => 'EUR',
|
|
]);
|
|
$builder->setPayoutToken($options['payoutDestinationData'] ? null : uniqid('', true));
|
|
$builder->setPayoutDestinationData($options['payoutDestinationData']);
|
|
$instance = $builder->build();
|
|
self::assertEquals($options['amount']['value'], $instance->getAmount()->getValue());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidAmountDataProvider
|
|
*
|
|
* @param mixed $value
|
|
*/
|
|
public function testSetInvalidAmount($value): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setAmount($value);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetPayoutToken($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
|
|
if (empty($options['payoutToken'])) {
|
|
self::assertNull($instance->getPayoutToken());
|
|
} else {
|
|
self::assertNotNull($instance->getPayoutToken());
|
|
self::assertEquals($options['payoutToken'], $instance->getPayoutToken());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetPaymentMethodId($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
|
|
if (empty($options['paymentMethodId'])) {
|
|
self::assertNull($instance->getPaymentMethodId());
|
|
} else {
|
|
self::assertNotNull($instance->getPaymentMethodId());
|
|
self::assertEquals($options['paymentMethodId'], $instance->getPaymentMethodId());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetPayoutDestinationData($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
|
|
if (empty($options['payoutDestinationData'])) {
|
|
self::assertNull($instance->getPayoutDestinationData());
|
|
} else {
|
|
self::assertNotNull($instance->getPayoutDestinationData());
|
|
if (is_array($options['payoutDestinationData'])) {
|
|
self::assertEquals($options['payoutDestinationData'], $instance->getPayoutDestinationData()->toArray());
|
|
} else {
|
|
self::assertEquals($options['payoutDestinationData'], $instance->getPayoutDestinationData());
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetMetadata($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
|
|
if (empty($options['metadata'])) {
|
|
self::assertNull($instance->getMetadata());
|
|
} else {
|
|
self::assertEquals($options['metadata'], $instance->getMetadata()->toArray());
|
|
}
|
|
}
|
|
|
|
public function invalidRecipientDataProvider(): array
|
|
{
|
|
return [
|
|
[null],
|
|
[true],
|
|
[false],
|
|
[1],
|
|
[1.1],
|
|
['test'],
|
|
[new stdClass()],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public static function validDataProvider(): array
|
|
{
|
|
$payoutDestinationData = self::payoutDestinationData();
|
|
|
|
$result = [
|
|
[
|
|
[
|
|
'description' => null,
|
|
'amount' => new MonetaryAmount(Random::int(1, 1000)),
|
|
'currency' => Random::value(CurrencyCode::getValidValues()),
|
|
'payoutToken' => null,
|
|
'paymentMethodId' => null,
|
|
'payoutDestinationData' => Random::value($payoutDestinationData),
|
|
'confirmation' => null,
|
|
'metadata' => null,
|
|
'deal' => [
|
|
'id' => Random::str(36, 50),
|
|
],
|
|
'self_employed' => null,
|
|
'receipt_data' => null,
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'description' => '',
|
|
'amount' => new MonetaryAmount(Random::int(1, 1000)),
|
|
'currency' => Random::value(CurrencyCode::getValidValues()),
|
|
'payoutToken' => uniqid('', true),
|
|
'paymentMethodId' => '',
|
|
'payoutDestinationData' => null,
|
|
'metadata' => [[]],
|
|
'deal' => [
|
|
'id' => Random::str(36, 50),
|
|
],
|
|
'self_employed' => new PayoutSelfEmployedInfo([
|
|
'id' => Random::str(36, 50),
|
|
]),
|
|
'receipt_data' => new IncomeReceiptData([
|
|
'service_name' => Random::str(36, 50),
|
|
'amount' => new MonetaryAmount(Random::int(1, 99)),
|
|
]),
|
|
],
|
|
],
|
|
];
|
|
for ($i = 0; $i < 10; $i++) {
|
|
$even = $i % 3;
|
|
$request = [
|
|
'description' => uniqid('', true),
|
|
'amount' => ['value' => Random::int(1, 99)],
|
|
'currency' => CurrencyCode::RUB,
|
|
'paymentMethodId' => $even === 0 ? uniqid('', true) : null,
|
|
'payoutToken' => $even === 1 ? uniqid('', true) : null,
|
|
'payoutDestinationData' => $even === 2 ? Random::value($payoutDestinationData) : null,
|
|
'metadata' => ['test' => 'test'],
|
|
'deal' => [
|
|
'id' => Random::str(36, 50),
|
|
],
|
|
'self_employed' => new PayoutSelfEmployedInfo([
|
|
'id' => Random::str(36, 50),
|
|
]),
|
|
'receipt_data' => [
|
|
'service_name' => Random::str(36, 50),
|
|
'amount' => ['value' => Random::int(1, 99), 'currency' => CurrencyCode::RUB],
|
|
],
|
|
];
|
|
$result[] = [$request];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
public static function payoutDestinationData(): array
|
|
{
|
|
return [
|
|
[
|
|
'type' => PaymentMethodType::YOO_MONEY,
|
|
'account_number' => Random::str(11, 33, '0123456789'),
|
|
],
|
|
[
|
|
'type' => PaymentMethodType::BANK_CARD,
|
|
'card' => [
|
|
'number' => Random::str(16, 16, '0123456789'),
|
|
],
|
|
],
|
|
[
|
|
'type' => PaymentMethodType::SBP,
|
|
'phone' => Random::str(4, 15, '0123456789'),
|
|
'bank_id' => Random::str(4, 12, '0123456789'),
|
|
],
|
|
];
|
|
}
|
|
|
|
public static function invalidAmountDataProvider(): array
|
|
{
|
|
return [
|
|
[-1],
|
|
[true],
|
|
[false],
|
|
[new stdClass()],
|
|
[0],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetDescription($options): void
|
|
{
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setOptions($options);
|
|
$instance = $builder->build();
|
|
|
|
if (empty($options['description'])) {
|
|
self::assertNull($instance->getDescription());
|
|
} else {
|
|
self::assertEquals($options['description'], $instance->getDescription());
|
|
}
|
|
}
|
|
|
|
public function testSetInvalidLengthDescription(): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$description = Random::str(Payout::MAX_LENGTH_DESCRIPTION + 1);
|
|
$builder->setDescription($description);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public static function invalidDealDataProvider(): array
|
|
{
|
|
return [
|
|
[true],
|
|
[false],
|
|
[new stdClass()],
|
|
[0],
|
|
[7],
|
|
[Random::int(-100, -1)],
|
|
[Random::int(7, 100)],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidDealDataProvider
|
|
*
|
|
* @param mixed $value
|
|
*/
|
|
public function testSetInvalidDeal($value): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setDeal($value);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public static function invalidSelfEmployedProvider(): array
|
|
{
|
|
return [
|
|
[true],
|
|
[false],
|
|
[new stdClass()],
|
|
[0],
|
|
[7],
|
|
[Random::int(-100, -1)],
|
|
[Random::int(7, 100)],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidSelfEmployedProvider
|
|
*
|
|
* @param mixed $value
|
|
*/
|
|
public function testSetInvalidSelfEmployed($value): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreatePayoutRequestBuilder();
|
|
$builder->setSelfEmployed($value);
|
|
}
|
|
|
|
/**
|
|
* @param null $testingProperty
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
protected function getRequiredData($testingProperty = null): array
|
|
{
|
|
$result = [];
|
|
$even = Random::bool();
|
|
if ('amount' !== $testingProperty) {
|
|
$result['amount'] = new MonetaryAmount(Random::int(1, 1000));
|
|
}
|
|
if ('payoutToken' !== $testingProperty) {
|
|
$result['payoutToken'] = $even ? Random::str(36, 50) : null;
|
|
}
|
|
$factory = new PayoutDestinationDataFactory();
|
|
if ('payoutDestinationData' !== $testingProperty) {
|
|
$type = Random::value(PayoutDestinationType::getValidValues());
|
|
$payoutDestination = self::payoutDestinationData();
|
|
$result['payoutDestinationData'] = $even ? null : $factory->factory($type);
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|