Files
yookassa-sdk-php/tests/Request/Deals/CreateDealRequestBuilderTest.php
2026-07-07 13:02:16 +03:00

251 lines
7.4 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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\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\SafeDeal;
use YooKassa\Request\Deals\CreateDealRequestBuilder;
class CreateDealRequestBuilderTest extends TestCase
{
/**
* @param null $testingProperty
* @param null $paymentType
* @return array
* @throws Exception
*/
protected function getRequiredData($testingProperty = null, $paymentType = null)
{
$result = array();
if ($testingProperty !== 'type') {
$result['type'] = Random::value(DealType::getValidValues());
}
if ($testingProperty !== 'fee_moment') {
$result['fee_moment'] = Random::value(FeeMoment::getValidValues());
}
return $result;
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetType($options)
{
$builder = new CreateDealRequestBuilder();
$builder->setType($options['type']);
$instance = $builder->build($this->getRequiredData('type'));
if ($options['type'] === null || $options['type'] === '') {
self::assertNull($instance->getType());
} else {
self::assertNotNull($instance->getType());
self::assertEquals($options['type'], $instance->getType());
}
}
/**
* @dataProvider invalidDataProvider
*
* @param $options
*/
public function testSetInvalidTypeType($options)
{
$this->expectException('InvalidArgumentException');
$builder = new CreateDealRequestBuilder();
$builder->setType($options);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetFeeMoment($options)
{
$builder = new CreateDealRequestBuilder();
$builder->setFeeMoment($options['fee_moment']);
$instance = $builder->build($this->getRequiredData('fee_moment'));
if ($options['fee_moment'] === null || $options['fee_moment'] === '') {
self::assertNull($instance->getFeeMoment());
} else {
self::assertNotNull($instance->getFeeMoment());
self::assertEquals($options['fee_moment'], $instance->getFeeMoment());
}
}
/**
* @dataProvider invalidDataProvider
*
* @param $options
*/
public function testSetInvalidTypeFeeMoment($options)
{
$this->expectException('InvalidArgumentException');
$builder = new CreateDealRequestBuilder();
$builder->setFeeMoment($options);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetMetadata($options)
{
$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 $options
*/
public function testSetInvalidTypeMetadata($options)
{
$this->expectException('InvalidArgumentException');
$builder = new CreateDealRequestBuilder();
$builder->setMetadata($options);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetDescription($options)
{
$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 invalidDataProvider
*
* @param $options
*/
public function testSetInvalidTypeDescription($options)
{
$this->expectException('InvalidArgumentException');
$builder = new CreateDealRequestBuilder();
$builder->setDescription($options);
}
/**
*/
public function testSetInvalidLengthDescription()
{
$this->expectException('InvalidArgumentException');
$builder = new CreateDealRequestBuilder();
$description = Random::str(SafeDeal::MAX_LENGTH_DESCRIPTION + 1);
$builder->setDescription($description);
}
/**
* @return array
* @throws Exception
*/
public function validDataProvider()
{
$result = array(
array(
array(
'type' => Random::value(DealType::getValidValues()),
'fee_moment' => Random::value(FeeMoment::getValidValues()),
'description' => null,
'metadata' => null,
),
),
array(
array(
'type' => Random::value(DealType::getValidValues()),
'fee_moment' => Random::value(FeeMoment::getValidValues()),
'description' => '',
'metadata' => array(),
),
),
);
for ($i = 0; $i < 10; $i++) {
$request = array(
'type' => Random::value(DealType::getValidValues()),
'fee_moment' => Random::value(FeeMoment::getValidValues()),
'description' => Random::str(1, 128),
'metadata' => array(Random::str(1, 30) => Random::str(1, 128)),
);
$result[] = array($request);
}
return $result;
}
public function invalidDataProvider()
{
return array(
array(false),
array(true),
array(new stdClass()),
array(new SafeDeal()),
);
}
}