meraproject/vendor/yoomoney/yookassa-sdk-php/tests/Model/Payout/PayoutDestinationFactoryTest.php

156 lines
4.6 KiB
PHP
Raw Permalink Normal View History

<?php
namespace Tests\YooKassa\Model\Payout;
use PHPUnit\Framework\TestCase;
use YooKassa\Helpers\Random;
use YooKassa\Model\Payout\AbstractPayoutDestination;
use YooKassa\Model\Payout\PayoutDestinationFactory;
use YooKassa\Model\Payout\PayoutDestinationType;
use YooKassa\Model\PaymentMethodType;
class PayoutDestinationFactoryTest extends TestCase
{
protected function getTestInstance()
{
return new PayoutDestinationFactory();
}
/**
* @dataProvider validTypeDataProvider
* @param string $type
*/
public function testFactory($type)
{
$instance = $this->getTestInstance();
$paymentData = $instance->factory($type);
self::assertNotNull($paymentData);
self::assertTrue($paymentData instanceof AbstractPayoutDestination);
self::assertEquals($type, $paymentData->getType());
}
/**
* @dataProvider invalidTypeDataProvider
* @expectedException \InvalidArgumentException
* @param $type
*/
public function testInvalidFactory($type)
{
$instance = $this->getTestInstance();
$instance->factory($type);
}
/**
* @dataProvider validArrayDataProvider
* @param array $options
*/
public function testFactoryFromArray($options)
{
$instance = $this->getTestInstance();
$paymentData = $instance->factoryFromArray($options);
self::assertNotNull($paymentData);
self::assertTrue($paymentData instanceof AbstractPayoutDestination);
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::assertTrue($paymentData instanceof AbstractPayoutDestination);
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
* @expectedException \InvalidArgumentException
* @param $options
*/
public function testInvalidFactoryFromArray($options)
{
$instance = $this->getTestInstance();
$instance->factoryFromArray($options);
}
public function validTypeDataProvider()
{
$result = array();
foreach (PayoutDestinationType::getEnabledValues() as $value) {
$result[] = array($value);
}
return $result;
}
public function invalidTypeDataProvider()
{
return array(
array(''),
array(null),
array(0),
array(1),
array(-1),
array('5'),
array(array()),
array(new \stdClass()),
array(Random::str(10)),
);
}
public function validArrayDataProvider()
{
$result = array(
array(
array(
'type' => PaymentMethodType::BANK_CARD,
'card' => array(
'first6' => Random::str(6, '0123456789'),
'last4' => Random::str(4, '0123456789'),
'card_type' => Random::str(3, 20),
'issuer_country' => Random::str(2),
'issuer_name' => Random::str(4, 50),
),
),
),
array(
array(
'type' => PaymentMethodType::YOO_MONEY,
'account_number' => Random::str(11, 33, '1234567890'),
),
),
array(
array(
'type' => PaymentMethodType::SBP,
'phone' => Random::str(4, 16, '1234567890'),
'bank_id' => Random::str(4, 12),
),
),
);
foreach (PayoutDestinationType::getEnabledValues() as $value) {
$result[] = array(array('type' => $value));
}
return $result;
}
public function invalidDataArrayDataProvider()
{
return array(
array(array()),
array(array('type' => 'test')),
);
}
}