mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-31 20:49:20 +00:00
298 lines
11 KiB
PHP
298 lines
11 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\PaymentMethodTest;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\PaymentMethod\AbstractPaymentMethod;
|
||
use YooKassa\Model\PaymentMethod\PaymentMethodFactory;
|
||
use YooKassa\Model\PaymentMethodType;
|
||
|
||
class PaymentMethodFactoryTest extends TestCase
|
||
{
|
||
/**
|
||
* @return PaymentMethodFactory
|
||
*/
|
||
protected function getTestInstance()
|
||
{
|
||
return new PaymentMethodFactory();
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validTypeDataProvider
|
||
* @param string $type
|
||
*/
|
||
public function testFactory($type)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$paymentData = $instance->factory($type);
|
||
self::assertNotNull($paymentData);
|
||
self::assertTrue($paymentData instanceof AbstractPaymentMethod);
|
||
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 AbstractPaymentMethod);
|
||
|
||
foreach ($options as $property => $value) {
|
||
if (is_object($paymentData->{$property})) {
|
||
self::assertEquals($paymentData->{$property}->toArray(), $value);
|
||
} else {
|
||
self::assertEquals($paymentData->{$property}, $value);
|
||
}
|
||
}
|
||
|
||
$type = $options['type'];
|
||
unset($options['type']);
|
||
$paymentData = $instance->factoryFromArray($options, $type);
|
||
self::assertNotNull($paymentData);
|
||
self::assertTrue($paymentData instanceof AbstractPaymentMethod);
|
||
|
||
self::assertEquals($type, $paymentData->getType());
|
||
foreach ($options as $property => $value) {
|
||
if (is_object($paymentData->{$property})) {
|
||
self::assertEquals($paymentData->{$property}->toArray(), $value);
|
||
} else {
|
||
self::assertEquals($paymentData->{$property}, $value);
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataArrayDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $options
|
||
*/
|
||
public function testInvalidFactoryFromArray($options)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->factoryFromArray($options);
|
||
}
|
||
|
||
public function validTypeDataProvider()
|
||
{
|
||
$result = array();
|
||
foreach (PaymentMethodType::getValidValues() as $value) {
|
||
$result[] = array($value);
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidTypeDataProvider()
|
||
{
|
||
return array(
|
||
array(null),
|
||
array(0),
|
||
array(1),
|
||
array(-1),
|
||
array(array()),
|
||
array(new \stdClass()),
|
||
);
|
||
}
|
||
|
||
public function validArrayDataProvider()
|
||
{
|
||
$result = array(
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::ALFABANK,
|
||
'login' => Random::str(10, 20),
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::GOOGLE_PAY,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::APPLE_PAY,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::BANK_CARD,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
'card' => array(
|
||
'last4' => Random::str(4, '0123456789'),
|
||
'first6' => Random::str(6, '0123456789'),
|
||
'expiry_year' => Random::int(2000, 2200),
|
||
'expiry_month' => Random::value(array('01','02','03','04','05','06','07','08','09','10','11','12')),
|
||
'card_type' => Random::str(3, 10),
|
||
),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::BANK_CARD,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
'card' => array(
|
||
'last4' => Random::str(4, '0123456789'),
|
||
'first6' => Random::str(6, '0123456789'),
|
||
'expiry_year' => Random::int(2000, 2200),
|
||
'expiry_month' => Random::value(array('01','02','03','04','05','06','07','08','09','10','11','12')),
|
||
'card_type' => Random::str(3, 10),
|
||
),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::SBERBANK,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
'card' => array(
|
||
'last4' => Random::str(4, '0123456789'),
|
||
'first6' => Random::str(6, '0123456789'),
|
||
'expiry_year' => Random::int(2000, 2200),
|
||
'expiry_month' => Random::value(array('01','02','03','04','05','06','07','08','09','10','11','12')),
|
||
'card_type' => Random::str(3, 10),
|
||
),
|
||
'phone' => Random::str(4, 15, '0123456789'),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::CASH,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::MOBILE_BALANCE,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
'phone' => Random::str(4, 15, '0123456789'),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::SBERBANK,
|
||
'phone' => Random::str(4, 15, '0123456789'),
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::YOO_MONEY,
|
||
'account_number' => Random::str(31, '0123456789'),
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::YOO_MONEY,
|
||
'account_number' => Random::str(31, '0123456789'),
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::INSTALLMENTS,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::B2B_SBERBANK,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::TINKOFF_BANK,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'type' => PaymentMethodType::SBP,
|
||
'id' => Random::str(1, 64),
|
||
'saved' => Random::bool(),
|
||
'title' => Random::str(10, 20),
|
||
),
|
||
),
|
||
);
|
||
foreach (PaymentMethodType::getValidValues() as $value) {
|
||
$result[] = array(array('type' => $value));
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidDataArrayDataProvider()
|
||
{
|
||
return array(
|
||
array(array()),
|
||
);
|
||
}
|
||
}
|