mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-25 11:57:59 +00:00
2db9951ff6
Информация про чеки самозанятых в платежах и возвратах удалена - больше не поддерживаем сервисы для самозанятых Добавлена возможность выставления счета по смс и email Добавлена поддержка работы со списками выплат Обновлен Copyright
407 lines
13 KiB
PHP
407 lines
13 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\PaymentMethods;
|
||
|
||
use Exception;
|
||
use Tests\YooKassa\AbstractTestCase;
|
||
use Datetime;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\Metadata;
|
||
use YooKassa\Model\SavePaymentMethod\Confirmation\ConfirmationType;
|
||
use YooKassa\Model\SavePaymentMethod\SavePaymentMethodType;
|
||
use YooKassa\Request\PaymentMethods\ConfirmationData\ConfirmationRedirect;
|
||
use YooKassa\Request\PaymentMethods\CreatePaymentMethodRequest;
|
||
use YooKassa\Request\PaymentMethods\PaymentMethodCard;
|
||
use YooKassa\Request\PaymentMethods\PaymentMethodHolder;
|
||
|
||
/**
|
||
* CreatePaymentMethodRequestBuilderTest
|
||
*
|
||
* @category ClassTest
|
||
* @author cms@yoomoney.ru
|
||
* @link https://yookassa.ru/developers/api
|
||
*/
|
||
class CreatePaymentMethodRequestBuilderTest extends AbstractTestCase
|
||
{
|
||
protected CreatePaymentMethodRequest $object;
|
||
|
||
/**
|
||
* @return CreatePaymentMethodRequest
|
||
*/
|
||
protected function getTestInstance(): CreatePaymentMethodRequest
|
||
{
|
||
return new CreatePaymentMethodRequest();
|
||
}
|
||
|
||
/**
|
||
* Test property "type"
|
||
* @dataProvider validTypeDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testType(mixed $value): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$builder->setType($value);
|
||
$instance = $builder->build();
|
||
self::assertNotNull($instance->getType());
|
||
self::assertNotNull($instance->type);
|
||
self::assertEquals($value, is_array($value) ? $instance->getType()->toArray() : $instance->getType());
|
||
self::assertEquals($value, is_array($value) ? $instance->type->toArray() : $instance->type);
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "type"
|
||
* @dataProvider invalidTypeDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidType(mixed $value, string $exceptionClass): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$this->expectException($exceptionClass);
|
||
$builder->setType($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validTypeDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_type'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidTypeDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_type'));
|
||
}
|
||
|
||
/**
|
||
* Test property "card"
|
||
* @dataProvider validCardDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testCard(mixed $value): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$builder->setOptions(['type' => SavePaymentMethodType::BANK_CARD]);
|
||
$builder->setCard($value);
|
||
$instance = $builder->build();
|
||
if (!empty($value)) {
|
||
self::assertNotNull($instance->getCard());
|
||
self::assertNotNull($instance->card);
|
||
} else {
|
||
self::assertEquals($value, is_array($value) ? $instance->getCard()->toArray() : $instance->getCard());
|
||
self::assertEquals($value, is_array($value) ? $instance->card->toArray() : $instance->card);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "card"
|
||
* @dataProvider invalidCardDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidCard(mixed $value, string $exceptionClass): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$this->expectException($exceptionClass);
|
||
$builder->setCard($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validCardDataProvider(): array
|
||
{
|
||
return [
|
||
[null],
|
||
[new PaymentMethodCard([
|
||
'number' => Random::str(16, 19, '0123456789'),
|
||
'expiry_year' => (string) Random::int(2023, 2045),
|
||
'expiry_month' => str_pad((string) Random::int(1, 12), 2, '0', STR_PAD_LEFT),
|
||
'cardholder' => Random::str(1, 26, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ \'-'),
|
||
'csc' => Random::str(3, 4, '0123456789'),
|
||
])],
|
||
[''],
|
||
[[
|
||
'number' => Random::str(16, 19, '0123456789'),
|
||
'expiry_year' => (string) Random::int(2023, 2030),
|
||
'expiry_month' => str_pad((string) Random::int(1, 12), 2, '0', STR_PAD_LEFT),
|
||
'cardholder' => Random::str(1, 26, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ \'-'),
|
||
]],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidCardDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_card'));
|
||
}
|
||
|
||
/**
|
||
* Test property "holder"
|
||
* @dataProvider validHolderDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testHolder(mixed $value): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$builder->setOptions(['type' => SavePaymentMethodType::BANK_CARD]);
|
||
$builder->setHolder($value);
|
||
$instance = $builder->build();
|
||
|
||
self::assertEquals($value, is_array($value) ? $instance->getHolder()->toArray() : $instance->getHolder());
|
||
self::assertEquals($value, is_array($value) ? $instance->holder->toArray() : $instance->holder);
|
||
if (!empty($value)) {
|
||
self::assertNotNull($instance->getHolder());
|
||
self::assertNotNull($instance->holder);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "holder"
|
||
* @dataProvider invalidHolderDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidHolder(mixed $value, string $exceptionClass): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$this->expectException($exceptionClass);
|
||
$builder->setHolder($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validHolderDataProvider(): array
|
||
{
|
||
return [
|
||
[null],
|
||
[new PaymentMethodHolder([
|
||
'gateway_id' => Random::str(1, 256),
|
||
])],
|
||
[''],
|
||
[[
|
||
'gateway_id' => Random::str(1, 256),
|
||
]],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidHolderDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_holder'));
|
||
}
|
||
|
||
/**
|
||
* Test property "client_ip"
|
||
* @dataProvider validClientIpDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testClientIp(mixed $value): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$builder->setOptions($this->getRequiredData('client_ip'));
|
||
$builder->setClientIp($value);
|
||
|
||
$instance = $builder->build();
|
||
|
||
self::assertEquals($value, is_array($value) ? $instance->getClientIp()->toArray() : $instance->getClientIp());
|
||
self::assertEquals($value, is_array($value) ? $instance->client_ip->toArray() : $instance->client_ip);
|
||
if (!empty($value)) {
|
||
self::assertNotNull($instance->getClientIp());
|
||
self::assertNotNull($instance->client_ip);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "client_ip"
|
||
* @dataProvider invalidClientIpDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidClientIp(mixed $value, string $exceptionClass): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$builder->setOptions($this->getRequiredData('client_ip'));
|
||
|
||
$this->expectException($exceptionClass);
|
||
$builder->setClientIp($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validClientIpDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_client_ip'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidClientIpDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_client_ip'));
|
||
}
|
||
|
||
/**
|
||
* Test property "confirmation"
|
||
* @dataProvider validConfirmationDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testConfirmation(mixed $value): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$builder->setOptions($this->getRequiredData('confirmation'));
|
||
$builder->setConfirmation($value);
|
||
|
||
$instance = $builder->build();
|
||
|
||
self::assertEquals($value, is_array($value) ? $instance->getConfirmation()->toArray() : $instance->getConfirmation());
|
||
self::assertEquals($value, is_array($value) ? $instance->confirmation->toArray() : $instance->confirmation);
|
||
if (!empty($value)) {
|
||
self::assertNotNull($instance->getConfirmation());
|
||
self::assertNotNull($instance->confirmation);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "confirmation"
|
||
* @dataProvider invalidConfirmationDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidConfirmation(mixed $value, string $exceptionClass): void
|
||
{
|
||
$builder = CreatePaymentMethodRequest::builder();
|
||
$builder->setOptions($this->getRequiredData('confirmation'));
|
||
|
||
$this->expectException($exceptionClass);
|
||
$builder->setConfirmation($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validConfirmationDataProvider(): array
|
||
{
|
||
return [
|
||
[null],
|
||
[new ConfirmationRedirect([
|
||
'type' => ConfirmationType::REDIRECT,
|
||
'enforce' => Random::bool(),
|
||
'return_url' => Random::str(1,2048),
|
||
'locale' => Random::value(['ru_RU', 'en_US']),
|
||
])],
|
||
[''],
|
||
[[
|
||
'type' => ConfirmationType::REDIRECT,
|
||
'enforce' => Random::bool(),
|
||
'return_url' => Random::str(1,2048),
|
||
'locale' => Random::value(['ru_RU', 'en_US']),
|
||
]],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidConfirmationDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_confirmation'));
|
||
}
|
||
|
||
/**
|
||
* @param string|null $testingProperty
|
||
*
|
||
* @return array
|
||
*/
|
||
protected function getRequiredData(?string $testingProperty = null): array
|
||
{
|
||
$result = [];
|
||
if ('type' !== $testingProperty) {
|
||
$result['type'] = SavePaymentMethodType::BANK_CARD;
|
||
}
|
||
if ('holder' !== $testingProperty) {
|
||
$result['holder'] = new PaymentMethodHolder(['gateway_id' => Random::str(1, 256)]);
|
||
}
|
||
|
||
return $result;
|
||
}
|
||
}
|