mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-18 15:53:06 +00:00
cbcdbc8ae1
Отказ от поддержки PHP < 8 Изменена структура файлов Переработана логика работы с моделями Добавлено использование валидатора данных в моделях Массивы объектов заменены на объекты-коллекции
171 lines
4.7 KiB
PHP
171 lines
4.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\SelfEmployed;
|
|
|
|
use InvalidArgumentException;
|
|
use PHPUnit\Framework\TestCase;
|
|
use stdClass;
|
|
use YooKassa\Helpers\Random;
|
|
use YooKassa\Model\SelfEmployed\SelfEmployedConfirmation;
|
|
use YooKassa\Model\SelfEmployed\SelfEmployedConfirmationFactory;
|
|
use YooKassa\Model\SelfEmployed\SelfEmployedConfirmationType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ConfirmationFactoryTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider validTypeDataProvider
|
|
*/
|
|
public function testFactory(string $type): void
|
|
{
|
|
$instance = $this->getTestInstance();
|
|
$confirmation = $instance->factory($type);
|
|
self::assertNotNull($confirmation);
|
|
self::assertInstanceOf(SelfEmployedConfirmation::class, $confirmation);
|
|
self::assertEquals($type, $confirmation->getType());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidFactoryDataProvider
|
|
*
|
|
* @param mixed $type
|
|
*/
|
|
public function testInvalidFactory($type): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$instance = $this->getTestInstance();
|
|
$instance->factory($type);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validArrayDataProvider
|
|
*/
|
|
public function testFactoryFromArray(array $options): void
|
|
{
|
|
$instance = $this->getTestInstance();
|
|
$confirmation = $instance->factoryFromArray($options);
|
|
self::assertNotNull($confirmation);
|
|
self::assertInstanceOf(SelfEmployedConfirmation::class, $confirmation);
|
|
|
|
foreach ($options as $property => $value) {
|
|
self::assertEquals($confirmation->{$property}, $value);
|
|
}
|
|
|
|
$type = $options['type'];
|
|
unset($options['type']);
|
|
$confirmation = $instance->factoryFromArray($options, $type);
|
|
self::assertNotNull($confirmation);
|
|
self::assertInstanceOf(SelfEmployedConfirmation::class, $confirmation);
|
|
|
|
self::assertEquals($type, $confirmation->getType());
|
|
foreach ($options as $property => $value) {
|
|
self::assertEquals($confirmation->{$property}, $value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidDataArrayDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*/
|
|
public function testInvalidFactoryFromArray($options): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$instance = $this->getTestInstance();
|
|
$instance->factoryFromArray($options);
|
|
}
|
|
|
|
public static function validTypeDataProvider(): array
|
|
{
|
|
$result = [];
|
|
foreach (SelfEmployedConfirmationType::getValidValues() as $value) {
|
|
$result[] = [$value];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
public static function invalidFactoryDataProvider(): array
|
|
{
|
|
return [
|
|
[''],
|
|
['123'],
|
|
['test'],
|
|
];
|
|
}
|
|
|
|
public static function invalidTypeDataProvider(): array
|
|
{
|
|
return [
|
|
[''],
|
|
[null],
|
|
[0],
|
|
[1],
|
|
[-1],
|
|
['5'],
|
|
[[]],
|
|
[new stdClass()],
|
|
[Random::str(10)],
|
|
];
|
|
}
|
|
|
|
public static function validArrayDataProvider(): array
|
|
{
|
|
$result = [
|
|
[
|
|
[
|
|
'type' => SelfEmployedConfirmationType::REDIRECT,
|
|
'confirmationUrl' => 'https://' . Random::str(1, 10, 'abcdefghijklmnopqrstuvwxyz') . '.com',
|
|
]
|
|
],
|
|
[
|
|
[
|
|
'type' => SelfEmployedConfirmationType::REDIRECT,
|
|
'confirmationUrl' => 'https://' . Random::str(1, 10, 'abcdefghijklmnopqrstuvwxyz') . '.ru',
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'type' => SelfEmployedConfirmationType::REDIRECT,
|
|
'confirmationUrl' => 'https://' . Random::str(1, 10, 'abcdefghijklmnopqrstuvwxyz') . '.en',
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'type' => SelfEmployedConfirmationType::REDIRECT,
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'type' => SelfEmployedConfirmationType::REDIRECT,
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'type' => SelfEmployedConfirmationType::REDIRECT,
|
|
],
|
|
],
|
|
];
|
|
foreach (SelfEmployedConfirmationType::getValidValues() as $value) {
|
|
$result[] = [['type' => $value]];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
public static function invalidDataArrayDataProvider(): array
|
|
{
|
|
return [
|
|
[[]],
|
|
[['type' => 'test']],
|
|
];
|
|
}
|
|
|
|
protected function getTestInstance(): SelfEmployedConfirmationFactory
|
|
{
|
|
return new SelfEmployedConfirmationFactory();
|
|
}
|
|
}
|