mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-03 22:18:59 +00:00
252 lines
8.4 KiB
PHP
252 lines
8.4 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\Deals;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use stdClass;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\Deal\DealType;
|
||
use YooKassa\Model\Deal\FeeMoment;
|
||
use YooKassa\Model\Metadata;
|
||
use YooKassa\Request\Deals\CreateDealRequest;
|
||
use YooKassa\Request\Deals\CreateDealRequestBuilder;
|
||
|
||
class CreateDealRequestTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testMetadata($options)
|
||
{
|
||
$instance = new CreateDealRequest();
|
||
|
||
self::assertFalse($instance->hasMetadata());
|
||
self::assertNull($instance->getMetadata());
|
||
self::assertNull($instance->metadata);
|
||
|
||
$expected = $options['metadata'];
|
||
if ($expected instanceof Metadata) {
|
||
$expected = $expected->toArray();
|
||
}
|
||
|
||
$instance->setMetadata($options['metadata']);
|
||
if (empty($options['metadata'])) {
|
||
self::assertFalse($instance->hasMetadata());
|
||
self::assertNull($instance->getMetadata());
|
||
self::assertNull($instance->metadata);
|
||
} else {
|
||
self::assertTrue($instance->hasMetadata());
|
||
self::assertSame($expected, $instance->getMetadata()->toArray());
|
||
self::assertSame($expected, $instance->metadata->toArray());
|
||
}
|
||
|
||
$instance->setMetadata(null);
|
||
self::assertFalse($instance->hasMetadata());
|
||
self::assertNull($instance->getMetadata());
|
||
self::assertNull($instance->metadata);
|
||
|
||
$instance->metadata = $options['metadata'];
|
||
if (empty($options['metadata'])) {
|
||
self::assertFalse($instance->hasMetadata());
|
||
self::assertNull($instance->getMetadata());
|
||
self::assertNull($instance->metadata);
|
||
} else {
|
||
self::assertTrue($instance->hasMetadata());
|
||
self::assertSame($expected, $instance->getMetadata()->toArray());
|
||
self::assertSame($expected, $instance->metadata->toArray());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testType($options)
|
||
{
|
||
$instance = new CreateDealRequest();
|
||
|
||
self::assertFalse($instance->hasType());
|
||
self::assertNull($instance->getType());
|
||
self::assertNull($instance->type);
|
||
|
||
$instance->setType($options['type']);
|
||
|
||
if (empty($options['type'])) {
|
||
self::assertFalse($instance->hasType());
|
||
self::assertNull($instance->getType());
|
||
self::assertNull($instance->type);
|
||
} else {
|
||
self::assertTrue($instance->hasType());
|
||
self::assertSame($options['type'], $instance->getType());
|
||
self::assertSame($options['type'], $instance->type);
|
||
}
|
||
|
||
$instance->type = $options['type'];
|
||
if (empty($options['type'])) {
|
||
self::assertFalse($instance->hasType());
|
||
self::assertNull($instance->getType());
|
||
self::assertNull($instance->type);
|
||
} else {
|
||
self::assertTrue($instance->hasType());
|
||
self::assertSame($options['type'], $instance->getType());
|
||
self::assertSame($options['type'], $instance->type);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testFeeMoment($options)
|
||
{
|
||
$instance = new CreateDealRequest();
|
||
|
||
self::assertFalse($instance->hasFeeMoment());
|
||
self::assertNull($instance->getFeeMoment());
|
||
self::assertNull($instance->fee_moment);
|
||
self::assertNull($instance->feeMoment);
|
||
|
||
$instance->setFeeMoment($options['fee_moment']);
|
||
|
||
if (empty($options['fee_moment'])) {
|
||
self::assertFalse($instance->hasFeeMoment());
|
||
self::assertNull($instance->getFeeMoment());
|
||
self::assertNull($instance->fee_moment);
|
||
self::assertNull($instance->feeMoment);
|
||
} else {
|
||
self::assertTrue($instance->hasFeeMoment());
|
||
self::assertSame($options['fee_moment'], $instance->getFeeMoment());
|
||
self::assertSame($options['fee_moment'], $instance->fee_moment);
|
||
self::assertSame($options['fee_moment'], $instance->feeMoment);
|
||
}
|
||
|
||
$instance->fee_moment = $options['fee_moment'];
|
||
if (empty($options['fee_moment'])) {
|
||
self::assertFalse($instance->hasFeeMoment());
|
||
self::assertNull($instance->getFeeMoment());
|
||
self::assertNull($instance->fee_moment);
|
||
self::assertNull($instance->feeMoment);
|
||
} else {
|
||
self::assertTrue($instance->hasFeeMoment());
|
||
self::assertSame($options['fee_moment'], $instance->getFeeMoment());
|
||
self::assertSame($options['fee_moment'], $instance->fee_moment);
|
||
self::assertSame($options['fee_moment'], $instance->feeMoment);
|
||
}
|
||
}
|
||
|
||
public function testValidate()
|
||
{
|
||
$instance = new CreateDealRequest();
|
||
|
||
self::assertFalse($instance->validate());
|
||
|
||
$instance->setType(Random::value(DealType::getValidValues()));
|
||
self::assertFalse($instance->validate());
|
||
|
||
$instance->setFeeMoment(Random::value(FeeMoment::getValidValues()));
|
||
self::assertTrue($instance->validate());
|
||
}
|
||
|
||
public function testBuilder()
|
||
{
|
||
$builder = CreateDealRequest::builder();
|
||
self::assertTrue($builder instanceof CreateDealRequestBuilder);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidFeeMomentDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidFeeMoment($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new CreateDealRequest();
|
||
$instance->setFeeMoment($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidMetadataDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidMetadata($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new CreateDealRequest();
|
||
$instance->setMetadata($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidMetadataDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidType($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new CreateDealRequest();
|
||
$instance->setType($value);
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
$result = array();
|
||
$metadata = new Metadata();
|
||
$metadata->test = 'test';
|
||
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' => $i == 0 ? $metadata : array('test' => 'test'),
|
||
);
|
||
$result[] = array($request);
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidFeeMomentDataProvider()
|
||
{
|
||
return array(
|
||
array(array()),
|
||
array(false),
|
||
array(true),
|
||
array(1),
|
||
array(Random::str(10)),
|
||
array(new stdClass()),
|
||
);
|
||
}
|
||
|
||
public function invalidMetadataDataProvider()
|
||
{
|
||
return array(
|
||
array(false),
|
||
array(true),
|
||
array(1),
|
||
array(Random::str(10)),
|
||
);
|
||
}
|
||
}
|