mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-31 04:28:23 +00:00
121 lines
5.1 KiB
PHP
121 lines
5.1 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\Request\Payouts;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\CurrencyCode;
|
||
use YooKassa\Model\Deal\PayoutDealInfo;
|
||
use YooKassa\Model\Metadata;
|
||
use YooKassa\Model\MonetaryAmount;
|
||
use YooKassa\Model\Payout\PayoutDestinationType;
|
||
use YooKassa\Request\Payouts\CreatePayoutRequest;
|
||
use YooKassa\Request\Payouts\CreatePayoutRequestSerializer;
|
||
use YooKassa\Request\Payouts\IncomeReceiptData;
|
||
use YooKassa\Request\Payouts\PayoutDestinationData\PayoutDestinationDataFactory;
|
||
use YooKassa\Request\Payouts\PayoutDestinationData\PayoutDestinationDataYooMoney;
|
||
use YooKassa\Request\Payouts\PayoutPersonalData;
|
||
use YooKassa\Request\Payouts\PayoutSelfEmployedInfo;
|
||
|
||
class CreatePayoutRequestSerializerTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param $options
|
||
*/
|
||
public function testSerialize($options)
|
||
{
|
||
$serializer = new CreatePayoutRequestSerializer();
|
||
$instance = CreatePayoutRequest::builder()->build($options);
|
||
$data = $serializer->serialize($instance);
|
||
|
||
$request = new CreatePayoutRequest($options);
|
||
$expected = $request->toArray();
|
||
|
||
self::assertEquals($expected, $data);
|
||
}
|
||
|
||
/**
|
||
* @return array
|
||
* @throws \Exception
|
||
*/
|
||
public function validDataProvider()
|
||
{
|
||
$metadata = new Metadata();
|
||
$metadata->test = 'test';
|
||
$result = array(
|
||
array(
|
||
array(
|
||
'amount' => new MonetaryAmount(Random::int(1, 1000000)),
|
||
'payoutToken' => uniqid('', true),
|
||
'payoutDestinationData' => null,
|
||
'metadata' => null,
|
||
'description' => null,
|
||
'deal' => null,
|
||
'payment_method_id' => null,
|
||
'self_employed' => null,
|
||
'receipt_data' => null,
|
||
'personal_data' => null,
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'amount' => new MonetaryAmount(Random::int(1, 1000000)),
|
||
'payoutToken' => '',
|
||
'payoutDestinationData' => new PayoutDestinationDataYooMoney(),
|
||
'metadata' => array(),
|
||
'description' => '',
|
||
'deal' => '',
|
||
'payment_method_id' => '',
|
||
'self_employed' => array(),
|
||
'receipt_data' => array(),
|
||
'personal_data' => array(),
|
||
),
|
||
),
|
||
);
|
||
$factory = new PayoutDestinationDataFactory();
|
||
for ($i = 0; $i < 10; $i++) {
|
||
$even = (bool)($i % 2);
|
||
$request = array(
|
||
'amount' => new MonetaryAmount(Random::int(1, 1000000)),
|
||
'payoutToken' => $even ? null : uniqid('', true),
|
||
'payoutDestinationData' => $even ? $factory->factory(Random::value(PayoutDestinationType::getValidValues())) : null,
|
||
'metadata' => $even ? $metadata : array('test' => 'test'),
|
||
'description' => Random::str(5, 128),
|
||
'deal' => $even ? new PayoutDealInfo(array('id' => Random::str(36, 50))) : array('id' => Random::str(36, 50)),
|
||
'payment_method_id' => Random::str(5, 128),
|
||
'self_employed' => $even ? new PayoutSelfEmployedInfo(array('id' => Random::str(36, 50))) : array('id' => Random::str(36, 50)),
|
||
'receipt_data' => $even ? new IncomeReceiptData(array('service_name' => Random::str(36, 50), 'amount' => new MonetaryAmount(Random::int(1, 1000000)))) : array('service_name' => Random::str(36, 50), 'amount' => array('value' => Random::int(1, 1000000).'.00', 'currency' => CurrencyCode::RUB)),
|
||
'personal_data' => array($even ? new PayoutPersonalData(array('id' => Random::str(36, 50))) : array('id' => Random::str(36, 50))),
|
||
);
|
||
$result[] = array($request);
|
||
}
|
||
|
||
return $result;
|
||
}
|
||
}
|