mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-26 10:38:17 +00:00
742 lines
26 KiB
PHP
742 lines
26 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;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use stdClass;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\CurrencyCode;
|
||
use YooKassa\Model\Metadata;
|
||
use YooKassa\Model\MonetaryAmount;
|
||
use YooKassa\Model\PaymentMethodType;
|
||
use YooKassa\Model\Payout;
|
||
use YooKassa\Model\Payout\IncomeReceipt;
|
||
use YooKassa\Model\Payout\PayoutCancellationDetails;
|
||
use YooKassa\Model\Payout\PayoutCancellationDetailsPartyCode;
|
||
use YooKassa\Model\Payout\PayoutCancellationDetailsReasonCode;
|
||
use YooKassa\Model\Deal\PayoutDealInfo;
|
||
use YooKassa\Model\Payout\PayoutDestinationFactory;
|
||
use YooKassa\Model\Payout\PayoutSelfEmployed;
|
||
use YooKassa\Model\PayoutStatus;
|
||
|
||
class PayoutTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetId($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getId());
|
||
self::assertNull($instance->id);
|
||
|
||
$instance->setId($options['id']);
|
||
self::assertEquals($options['id'], $instance->getId());
|
||
self::assertEquals($options['id'], $instance->id);
|
||
|
||
$instance = new Payout();
|
||
$instance->id = $options['id'];
|
||
self::assertEquals($options['id'], $instance->getId());
|
||
self::assertEquals($options['id'], $instance->id);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidId($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setId($value['id']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidId($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->id = $value['id'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetStatus($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getStatus());
|
||
self::assertNull($instance->status);
|
||
|
||
$instance->setStatus($options['status']);
|
||
self::assertEquals($options['status'], $instance->getStatus());
|
||
self::assertEquals($options['status'], $instance->status);
|
||
|
||
$instance = new Payout();
|
||
$instance->status = $options['status'];
|
||
self::assertEquals($options['status'], $instance->getStatus());
|
||
self::assertEquals($options['status'], $instance->status);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidStatus($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setStatus($value['status']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidStatus($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->status = $value['status'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetAmount($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getAmount());
|
||
self::assertNull($instance->amount);
|
||
|
||
$instance->setAmount($options['amount']);
|
||
self::assertSame($options['amount'], $instance->getAmount());
|
||
self::assertSame($options['amount'], $instance->amount);
|
||
|
||
$instance = new Payout();
|
||
$instance->amount = $options['amount'];
|
||
self::assertSame($options['amount'], $instance->getAmount());
|
||
self::assertSame($options['amount'], $instance->amount);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidAmount($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setAmount($value['amount']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidAmount($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->amount = $value['amount'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetPayoutDestination($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getPayoutDestination());
|
||
self::assertNull($instance->payout_destination);
|
||
|
||
$instance->setPayoutDestination($options['payout_destination']);
|
||
self::assertEquals($options['payout_destination'], $instance->getPayoutDestination());
|
||
self::assertEquals($options['payout_destination'], $instance->payout_destination);
|
||
|
||
$instance = new Payout();
|
||
$instance->payout_destination = $options['payout_destination'];
|
||
self::assertEquals($options['payout_destination'], $instance->getPayoutDestination());
|
||
self::assertEquals($options['payout_destination'], $instance->payout_destination);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidPayoutDestination($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setPayoutDestination($value['payout_destination']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidPayoutDestination($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->payout_destination = $value['payout_destination'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidCancellationDetails($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setCancellationDetails($value['cancellation_details']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidCancellationDetails($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->payout_destination = $value['cancellation_details'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetCreatedAt($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getCreatedAt());
|
||
self::assertNull($instance->createdAt);
|
||
self::assertNull($instance->created_at);
|
||
|
||
$instance->setCreatedAt($options['created_at']);
|
||
self::assertSame($options['created_at'], $instance->getCreatedAt()->format(YOOKASSA_DATE));
|
||
self::assertSame($options['created_at'], $instance->createdAt->format(YOOKASSA_DATE));
|
||
self::assertSame($options['created_at'], $instance->created_at->format(YOOKASSA_DATE));
|
||
|
||
$instance = new Payout();
|
||
$instance->createdAt = $options['created_at'];
|
||
self::assertSame($options['created_at'], $instance->getCreatedAt()->format(YOOKASSA_DATE));
|
||
self::assertSame($options['created_at'], $instance->createdAt->format(YOOKASSA_DATE));
|
||
self::assertSame($options['created_at'], $instance->created_at->format(YOOKASSA_DATE));
|
||
|
||
$instance = new Payout();
|
||
$instance->created_at = $options['created_at'];
|
||
self::assertSame($options['created_at'], $instance->getCreatedAt()->format(YOOKASSA_DATE));
|
||
self::assertSame($options['created_at'], $instance->createdAt->format(YOOKASSA_DATE));
|
||
self::assertSame($options['created_at'], $instance->created_at->format(YOOKASSA_DATE));
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidCreatedAt($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setCreatedAt($value['created_at']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidCreatedAt($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->createdAt = $value['created_at'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidCreated_at($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->created_at = $value['created_at'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetTest($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getTest());
|
||
self::assertNull($instance->test);
|
||
|
||
$instance->setTest($options['test']);
|
||
self::assertSame($options['test'], $instance->getTest());
|
||
self::assertSame($options['test'], $instance->test);
|
||
|
||
$instance = new Payout();
|
||
$instance->test = $options['test'];
|
||
self::assertSame($options['test'], $instance->getTest());
|
||
self::assertSame($options['test'], $instance->test);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidTest($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setTest($value['test']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidTest($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->test = $value['test'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetDeal($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getDeal());
|
||
self::assertNull($instance->deal);
|
||
|
||
$instance->setDeal($options['deal']);
|
||
|
||
if (empty($options['deal'])) {
|
||
self::assertNull($instance->getSelfEmployed());
|
||
self::assertNull($instance->deal);
|
||
} elseif (is_array($options['deal'])) {
|
||
self::assertSame($options['deal'], $instance->getDeal()->toArray());
|
||
self::assertSame($options['deal'], $instance->deal->toArray());
|
||
} else {
|
||
self::assertSame($options['deal'], $instance->getDeal());
|
||
self::assertSame($options['deal'], $instance->deal);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidDeal($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setDeal($value['deal']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidDeal($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->deal = $value['deal'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetSelfEmployed($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getSelfEmployed());
|
||
self::assertNull($instance->self_employed);
|
||
self::assertNull($instance->selfEmployed);
|
||
|
||
$instance->setSelfEmployed($options['self_employed']);
|
||
|
||
if (empty($options['receipt'])) {
|
||
self::assertNull($instance->getSelfEmployed());
|
||
self::assertNull($instance->self_employed);
|
||
self::assertNull($instance->selfEmployed);
|
||
} elseif (is_array($options['self_employed'])) {
|
||
self::assertSame($options['self_employed'], $instance->getSelfEmployed()->toArray());
|
||
self::assertSame($options['self_employed'], $instance->self_employed->toArray());
|
||
self::assertSame($options['self_employed'], $instance->selfEmployed->toArray());
|
||
} else {
|
||
self::assertSame($options['self_employed'], $instance->getSelfEmployed());
|
||
self::assertSame($options['self_employed'], $instance->self_employed);
|
||
self::assertSame($options['self_employed'], $instance->selfEmployed);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidSelfEmployed($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setSelfEmployed($value['self_employed']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidSelfEmployed($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->self_employed = $value['self_employed'];
|
||
|
||
$instance = new Payout();
|
||
$instance->selfEmployed = $value['self_employed'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetReceipt($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getReceipt());
|
||
self::assertNull($instance->receipt);
|
||
|
||
$instance->setReceipt($options['receipt']);
|
||
|
||
if (empty($options['receipt'])) {
|
||
self::assertNull($instance->getReceipt());
|
||
self::assertNull($instance->receipt);
|
||
} elseif (is_array($options['receipt'])) {
|
||
self::assertSame($options['receipt'], $instance->getReceipt()->toArray());
|
||
self::assertSame($options['receipt'], $instance->receipt->toArray());
|
||
} else {
|
||
self::assertSame($options['receipt'], $instance->getReceipt());
|
||
self::assertSame($options['receipt'], $instance->receipt);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidReceipt($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setReceipt($value['receipt']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidReceipt($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->receipt = $value['receipt'];
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testSetDescription($options)
|
||
{
|
||
$instance = new Payout();
|
||
$instance->setDescription($options['description']);
|
||
|
||
if (empty($options['description']) && ($options['description'] !== '0')) {
|
||
self::assertNull($instance->getDescription());
|
||
} else {
|
||
self::assertEquals($options['description'], $instance->getDescription());
|
||
}
|
||
}
|
||
|
||
/**
|
||
*/
|
||
public function testSetInvalidTypeDescription()
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$instance->setDescription(true);
|
||
}
|
||
|
||
/**
|
||
*/
|
||
public function testSetInvalidLengthDescription()
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new Payout();
|
||
$description = Random::str(Payout::MAX_LENGTH_DESCRIPTION + 1);
|
||
$instance->setDescription($description);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetCancellationDetails($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getCancellationDetails());
|
||
self::assertNull($instance->cancellationDetails);
|
||
self::assertNull($instance->cancellation_details);
|
||
|
||
$instance->setCancellationDetails($options['cancellation_details']);
|
||
self::assertSame($options['cancellation_details'], $instance->getCancellationDetails());
|
||
self::assertSame($options['cancellation_details'], $instance->cancellationDetails);
|
||
self::assertSame($options['cancellation_details'], $instance->cancellation_details);
|
||
|
||
$instance = new Payout();
|
||
$instance->cancellationDetails = $options['cancellation_details'];
|
||
self::assertSame($options['cancellation_details'], $instance->getCancellationDetails());
|
||
self::assertSame($options['cancellation_details'], $instance->cancellationDetails);
|
||
self::assertSame($options['cancellation_details'], $instance->cancellation_details);
|
||
|
||
$instance = new Payout();
|
||
$instance->cancellation_details = $options['cancellation_details'];
|
||
self::assertSame($options['cancellation_details'], $instance->getCancellationDetails());
|
||
self::assertSame($options['cancellation_details'], $instance->cancellationDetails);
|
||
self::assertSame($options['cancellation_details'], $instance->cancellation_details);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetMetadata($options)
|
||
{
|
||
$instance = new Payout();
|
||
|
||
self::assertNull($instance->getMetadata());
|
||
self::assertNull($instance->metadata);
|
||
|
||
if (is_array($options['metadata'])) {
|
||
$instance->setMetadata($options['metadata']);
|
||
self::assertSame($options['metadata'], $instance->getMetadata()->toArray());
|
||
self::assertSame($options['metadata'], $instance->metadata->toArray());
|
||
|
||
$instance = new Payout();
|
||
$instance->metadata = $options['metadata'];
|
||
self::assertSame($options['metadata'], $instance->getMetadata()->toArray());
|
||
self::assertSame($options['metadata'], $instance->metadata->toArray());
|
||
} elseif ($options['metadata'] instanceof Metadata || empty($options['metadata'])) {
|
||
$instance->setMetadata($options['metadata']);
|
||
self::assertSame($options['metadata'], $instance->getMetadata());
|
||
self::assertSame($options['metadata'], $instance->metadata);
|
||
|
||
$instance = new Payout();
|
||
$instance->metadata = $options['metadata'];
|
||
self::assertSame($options['metadata'], $instance->getMetadata());
|
||
self::assertSame($options['metadata'], $instance->metadata);
|
||
}
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
$result = array();
|
||
$cancellationDetailsParties = PayoutCancellationDetailsPartyCode::getValidValues();
|
||
$countCancellationDetailsParties = count($cancellationDetailsParties);
|
||
$cancellationDetailsReasons = PayoutCancellationDetailsReasonCode::getValidValues();
|
||
$countCancellationDetailsReasons = count($cancellationDetailsReasons);
|
||
$payoutDestinationFactory = new PayoutDestinationFactory();
|
||
$payoutDestinations = array(
|
||
PaymentMethodType::YOO_MONEY => $payoutDestinationFactory->factoryFromArray(array(
|
||
'type' => PaymentMethodType::YOO_MONEY,
|
||
'account_number' => Random::str(11, 33, '1234567890')
|
||
)),
|
||
PaymentMethodType::BANK_CARD => $payoutDestinationFactory->factoryFromArray(array(
|
||
'type' => PaymentMethodType::BANK_CARD,
|
||
'card' => array(
|
||
'number' => Random::str(16, 18, '1234567890')
|
||
)
|
||
)),
|
||
);
|
||
|
||
$result[] = array(
|
||
array(
|
||
'id' => Random::str(36, 50),
|
||
'status' => Random::value(PayoutStatus::getValidValues()),
|
||
'amount' => new MonetaryAmount(Random::int(1, 10000), 'RUB'),
|
||
'description' => Random::str(1, Payout::MAX_LENGTH_DESCRIPTION),
|
||
'payout_destination' => $payoutDestinations[Random::value(array(PaymentMethodType::YOO_MONEY, PaymentMethodType::BANK_CARD))],
|
||
'created_at' => date(YOOKASSA_DATE, mt_rand(111111111, time())),
|
||
'test' => true,
|
||
'deal' => null,
|
||
'self_employed' => null,
|
||
'receipt' => array(),
|
||
'metadata' => array('order_id' => '37'),
|
||
'cancellation_details' => new PayoutCancellationDetails(array(
|
||
'party' => Random::value($cancellationDetailsParties),
|
||
'reason' => Random::value($cancellationDetailsReasons)
|
||
)),
|
||
)
|
||
);
|
||
$result[] = array(
|
||
array(
|
||
'id' => Random::str(36, 50),
|
||
'status' => Random::value(PayoutStatus::getValidValues()),
|
||
'amount' => new MonetaryAmount(Random::int(1, 10000), 'RUB'),
|
||
'description' => Random::str(1, Payout::MAX_LENGTH_DESCRIPTION),
|
||
'payout_destination' => null,
|
||
'created_at' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'test' => true,
|
||
'deal' => array('id' => Random::str(36, 50)),
|
||
'receipt' => array(
|
||
'service_name' => Random::str(1, IncomeReceipt::MAX_LENGTH_SERVICE_NAME),
|
||
'npd_receipt_id' => Random::str(1, 50),
|
||
'url' => Random::str(1, 50),
|
||
'amount' => array(
|
||
'value' => number_format(Random::float(1, 99), 2, '.', ''),
|
||
'currency' => Random::value(CurrencyCode::getValidValues())
|
||
),
|
||
),
|
||
'self_employed' => array('id' => Random::str(36, 50)),
|
||
'metadata' => null,
|
||
'cancellation_details' => null,
|
||
)
|
||
);
|
||
|
||
for ($i = 0; $i < 20; $i++) {
|
||
$payment = array(
|
||
'id' => Random::str(36, 50),
|
||
'status' => Random::value(PayoutStatus::getValidValues()),
|
||
'amount' => new MonetaryAmount(Random::int(1, 10000), 'RUB'),
|
||
'description' => ($i == 0 ? null : ($i == 1 ? '' : ($i == 2 ? Random::str(Payout::MAX_LENGTH_DESCRIPTION)
|
||
: Random::str(1, Payout::MAX_LENGTH_DESCRIPTION)))),
|
||
'payout_destination' => $payoutDestinations[Random::value(array(PaymentMethodType::YOO_MONEY, PaymentMethodType::BANK_CARD))],
|
||
'created_at' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'test' => (bool)($i % 2),
|
||
'deal' => new PayoutDealInfo(array('id' => Random::str(36, 50))),
|
||
'self_employed' => new PayoutSelfEmployed(array('id' => Random::str(36, 50))),
|
||
'receipt' => new IncomeReceipt(array(
|
||
'service_name' => Random::str(1, IncomeReceipt::MAX_LENGTH_SERVICE_NAME),
|
||
'npd_receipt_id' => Random::str(1, 50),
|
||
'url' => Random::str(1, 50),
|
||
'amount' => array(
|
||
'value' => number_format(Random::float(1, 99), 2, '.', ''),
|
||
'currency' => Random::value(CurrencyCode::getValidValues())
|
||
),
|
||
)),
|
||
'metadata' => new Metadata(),
|
||
'cancellation_details' => new PayoutCancellationDetails(array(
|
||
'party' => $cancellationDetailsParties[$i % $countCancellationDetailsParties],
|
||
'reason' => $cancellationDetailsReasons[$i % $countCancellationDetailsReasons]
|
||
)),
|
||
);
|
||
$result[] = array($payment);
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidDataProvider()
|
||
{
|
||
$result = array(
|
||
array(
|
||
array(
|
||
'id' => null,
|
||
'status' => null,
|
||
'amount' => null,
|
||
'payout_destination' => time(),
|
||
'test' => null,
|
||
'deal' => time(),
|
||
'self_employed' => time(),
|
||
'receipt' => time(),
|
||
'metadata' => time(),
|
||
'created_at' => null,
|
||
'cancellation_details' => time(),
|
||
)
|
||
),
|
||
array(
|
||
array(
|
||
'id' => '',
|
||
'status' => '',
|
||
'amount' => '',
|
||
'payout_destination' => new stdClass(),
|
||
'test' => '',
|
||
'deal' => new Metadata(),
|
||
'self_employed' => new stdClass(),
|
||
'receipt' => new Metadata(),
|
||
'metadata' => new stdClass(),
|
||
'created_at' => array(),
|
||
'cancellation_details' => new stdClass(),
|
||
),
|
||
),
|
||
);
|
||
for ($i = 0; $i < 10; $i++) {
|
||
$payment = array(
|
||
'id' => Random::str($i < 5 ? mt_rand(1, 35) : mt_rand(51, 64)),
|
||
'status' => Random::str(1, 35),
|
||
'amount' => $i % 2 ? array() : new stdClass(),
|
||
'payout_destination' => $i % 2 ? Random::str(10) : new stdClass(),
|
||
'test' => $i == 0 ? array() : new stdClass(),
|
||
'deal' => $i == 0 ? Random::str(10) : new stdClass(),
|
||
'self_employed' => $i == 0 ? Random::str(10) : new stdClass(),
|
||
'receipt' => $i == 0 ? Random::str(10) : new stdClass(),
|
||
'metadata' => $i == 0 ? Random::str(10) : new stdClass(),
|
||
'cancellation_details' => $i == 0 ? Random::str(10) : new stdClass(),
|
||
'created_at' => $i == 0 ? '23423-234-32' : -Random::int(),
|
||
);
|
||
$result[] = array($payment);
|
||
}
|
||
return $result;
|
||
}
|
||
}
|