mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-16 21:06:21 +00:00
cbcdbc8ae1
Отказ от поддержки PHP < 8 Изменена структура файлов Переработана логика работы с моделями Добавлено использование валидатора данных в моделях Массивы объектов заменены на объекты-коллекции
250 lines
6.7 KiB
PHP
250 lines
6.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Request\Deals;
|
|
|
|
use Exception;
|
|
use InvalidArgumentException;
|
|
use PHPUnit\Framework\TestCase;
|
|
use stdClass;
|
|
use YooKassa\Helpers\Random;
|
|
use YooKassa\Model\Deal\DealType;
|
|
use YooKassa\Model\Deal\FeeMoment;
|
|
use YooKassa\Model\Deal\SafeDeal;
|
|
use YooKassa\Model\Metadata;
|
|
use YooKassa\Request\Deals\CreateDealRequestBuilder;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class CreateDealRequestBuilderTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetType($options): void
|
|
{
|
|
$builder = new CreateDealRequestBuilder();
|
|
|
|
$builder->setType($options['type']);
|
|
$instance = $builder->build($this->getRequiredData('type'));
|
|
|
|
if (null === $options['type'] || '' === $options['type']) {
|
|
self::assertNull($instance->getType());
|
|
} else {
|
|
self::assertNotNull($instance->getType());
|
|
self::assertEquals($options['type'], $instance->getType());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidDescriptionDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*/
|
|
public function testSetInvalidType($options): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreateDealRequestBuilder();
|
|
$builder->setType($options);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetFeeMoment($options): void
|
|
{
|
|
$builder = new CreateDealRequestBuilder();
|
|
|
|
$builder->setFeeMoment($options['fee_moment']);
|
|
$instance = $builder->build($this->getRequiredData('fee_moment'));
|
|
|
|
if (null === $options['fee_moment'] || '' === $options['fee_moment']) {
|
|
self::assertNull($instance->getFeeMoment());
|
|
} else {
|
|
self::assertNotNull($instance->getFeeMoment());
|
|
self::assertEquals($options['fee_moment'], $instance->getFeeMoment());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidDescriptionDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*/
|
|
public function testSetInvalidFeeMoment($options): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreateDealRequestBuilder();
|
|
$builder->setFeeMoment($options);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetMetadata($options): void
|
|
{
|
|
$builder = new CreateDealRequestBuilder();
|
|
|
|
$instance = $builder->build($this->getRequiredData());
|
|
self::assertNull($instance->getMetadata());
|
|
|
|
$builder->setMetadata($options['metadata']);
|
|
$instance = $builder->build($this->getRequiredData());
|
|
|
|
if (empty($options['metadata'])) {
|
|
self::assertNull($instance->getMetadata());
|
|
} else {
|
|
self::assertEquals($options['metadata'], $instance->getMetadata()->toArray());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*/
|
|
public function testSetInvalidMetadata($options): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreateDealRequestBuilder();
|
|
$builder->setMetadata($options);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function testSetDescription($options): void
|
|
{
|
|
$builder = new CreateDealRequestBuilder();
|
|
|
|
$builder->setDescription($options['description']);
|
|
$instance = $builder->build($this->getRequiredData());
|
|
|
|
if (empty($options['description'])) {
|
|
self::assertNull($instance->getDescription());
|
|
} else {
|
|
self::assertEquals($options['description'], $instance->getDescription());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidDescriptionDataProvider
|
|
*
|
|
* @param mixed $options
|
|
*/
|
|
public function testSetInvalidDescription($options): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreateDealRequestBuilder();
|
|
$builder->setDescription($options);
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
* @throws Exception
|
|
*/
|
|
public function testSetInvalidLengthDescription(): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$builder = new CreateDealRequestBuilder();
|
|
$description = Random::str(SafeDeal::MAX_LENGTH_DESCRIPTION + 1);
|
|
$builder->setDescription($description);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public static function validDataProvider(): array
|
|
{
|
|
$result = [
|
|
[
|
|
[
|
|
'type' => Random::value(DealType::getValidValues()),
|
|
'fee_moment' => Random::value(FeeMoment::getValidValues()),
|
|
'description' => null,
|
|
'metadata' => null,
|
|
],
|
|
],
|
|
[
|
|
[
|
|
'type' => Random::value(DealType::getValidValues()),
|
|
'fee_moment' => Random::value(FeeMoment::getValidValues()),
|
|
'description' => Random::str(1, SafeDeal::MAX_LENGTH_DESCRIPTION),
|
|
'metadata' => [new Metadata()],
|
|
],
|
|
],
|
|
];
|
|
for ($i = 0; $i < 10; $i++) {
|
|
$request = [
|
|
'type' => Random::value(DealType::getValidValues()),
|
|
'fee_moment' => Random::value(FeeMoment::getValidValues()),
|
|
'description' => Random::str(1, SafeDeal::MAX_LENGTH_DESCRIPTION),
|
|
'metadata' => [Random::str(1, 30) => Random::str(1, 128)],
|
|
];
|
|
$result[] = [$request];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function invalidDataProvider(): array
|
|
{
|
|
return [
|
|
[false],
|
|
[true],
|
|
[new stdClass()],
|
|
[new SafeDeal()],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array[]
|
|
* @throws Exception
|
|
*/
|
|
public static function invalidDescriptionDataProvider(): array
|
|
{
|
|
return [
|
|
[Random::str(SafeDeal::MAX_LENGTH_DESCRIPTION + 1)],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param null $testingProperty
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
protected function getRequiredData($testingProperty = null): array
|
|
{
|
|
$result = [];
|
|
|
|
if ('type' !== $testingProperty) {
|
|
$result['type'] = Random::value(DealType::getValidValues());
|
|
}
|
|
|
|
if ('fee_moment' !== $testingProperty) {
|
|
$result['fee_moment'] = Random::value(FeeMoment::getValidValues());
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|