mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-01 21:18:46 +00:00
227 lines
7.5 KiB
PHP
227 lines
7.5 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\Model\Receipt;
|
||
|
||
use Exception;
|
||
use stdClass;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\Receipt\AdditionalUserProps;
|
||
use PHPUnit\Framework\TestCase;
|
||
|
||
class AdditionalUserPropsTest extends TestCase
|
||
{
|
||
protected static function getInstance($options = null)
|
||
{
|
||
return new AdditionalUserProps($options);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validArrayDataProvider
|
||
*
|
||
* @param $options
|
||
*/
|
||
public function testConstructor($options)
|
||
{
|
||
$instance = self::getInstance();
|
||
|
||
self::assertNull($instance->getName());
|
||
self::assertNull($instance->getValue());
|
||
|
||
$instance = self::getInstance($options);
|
||
|
||
self::assertEquals($options['value'], $instance->getValue());
|
||
self::assertEquals($options['name'], $instance->getName());
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validArrayDataProvider
|
||
*
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetValue($options)
|
||
{
|
||
$expected = $options['value'];
|
||
|
||
$instance = self::getInstance();
|
||
self::assertNull($instance->getValue());
|
||
self::assertNull($instance->value);
|
||
$instance->setValue($expected);
|
||
self::assertEquals($expected, $instance->getValue());
|
||
self::assertEquals($expected, $instance->value);
|
||
|
||
$instance = self::getInstance();
|
||
$instance->value = $expected;
|
||
self::assertEquals($expected, $instance->getValue());
|
||
self::assertEquals($expected, $instance->value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidValueDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClassName
|
||
*/
|
||
public function testSetInvalidValue($value, $exceptionClassName)
|
||
{
|
||
$instance = self::getInstance();
|
||
try {
|
||
$instance->setValue($value);
|
||
self::fail('Expected exception not thrown');
|
||
} catch (Exception $e) {
|
||
self::assertInstanceOf($exceptionClassName, $e);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidValueDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClassName
|
||
*/
|
||
public function testSetterInvalidValue($value, $exceptionClassName)
|
||
{
|
||
$instance = self::getInstance();
|
||
try {
|
||
$instance->value = $value;
|
||
self::fail('Expected exception not thrown');
|
||
} catch (Exception $e) {
|
||
self::assertInstanceOf($exceptionClassName, $e);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validArrayDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testGetSetName($options)
|
||
{
|
||
$instance = self::getInstance();
|
||
|
||
self::assertNull($instance->getName());
|
||
self::assertNull($instance->name);
|
||
$instance->setName($options['name']);
|
||
self::assertEquals($options['name'], $instance->getName());
|
||
self::assertEquals($options['name'], $instance->name);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidNameDataProvider
|
||
* @param string $name
|
||
* @param string $exceptionClassName
|
||
*/
|
||
public function testSetInvalidName($name, $exceptionClassName)
|
||
{
|
||
$instance = self::getInstance();
|
||
try {
|
||
$instance->setName($name);
|
||
self::fail('Expected exception not thrown');
|
||
} catch (Exception $e) {
|
||
self::assertInstanceOf($exceptionClassName, $e);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidNameDataProvider
|
||
* @param string $name
|
||
* @param string $exceptionClassName
|
||
*/
|
||
public function testSetterInvalidName($name, $exceptionClassName)
|
||
{
|
||
$instance = self::getInstance();
|
||
try {
|
||
$instance->name = $name;
|
||
self::fail('Expected exception not thrown');
|
||
} catch (Exception $e) {
|
||
self::assertInstanceOf($exceptionClassName, $e);
|
||
}
|
||
}
|
||
|
||
public function validArrayDataProvider()
|
||
{
|
||
$result = array();
|
||
foreach (range(1, 10) as $i) {
|
||
$result[$i][] = array(
|
||
'value' => Random::str(1, AdditionalUserProps::VALUE_MAX_LENGTH),
|
||
'name' => Random::str(1, AdditionalUserProps::NAME_MAX_LENGTH),
|
||
);
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidValueDataProvider()
|
||
{
|
||
$exceptionNamespace = 'YooKassa\\Common\\Exceptions\\';
|
||
return array(
|
||
array(null, $exceptionNamespace . 'EmptyPropertyValueException'),
|
||
array('', $exceptionNamespace . 'EmptyPropertyValueException'),
|
||
array(array(), $exceptionNamespace . 'InvalidPropertyValueTypeException'),
|
||
array(fopen(__FILE__, 'r'), $exceptionNamespace . 'InvalidPropertyValueTypeException'),
|
||
array(Random::str(AdditionalUserProps::VALUE_MAX_LENGTH + 1), $exceptionNamespace . 'InvalidPropertyValueException'),
|
||
array(true, $exceptionNamespace . 'InvalidPropertyValueTypeException'),
|
||
array(false, $exceptionNamespace . 'InvalidPropertyValueTypeException'),
|
||
);
|
||
}
|
||
|
||
public function invalidNameDataProvider()
|
||
{
|
||
$exceptionNamespace = 'YooKassa\\Common\\Exceptions\\';
|
||
return array(
|
||
array(null, $exceptionNamespace . 'EmptyPropertyValueException'),
|
||
array('', $exceptionNamespace . 'EmptyPropertyValueException'),
|
||
array(array(), $exceptionNamespace . 'InvalidPropertyValueTypeException'),
|
||
array(fopen(__FILE__, 'r'), $exceptionNamespace . 'InvalidPropertyValueTypeException'),
|
||
array(Random::str(AdditionalUserProps::NAME_MAX_LENGTH + 1), $exceptionNamespace . 'InvalidPropertyValueException'),
|
||
array(true, $exceptionNamespace . 'InvalidPropertyValueTypeException'),
|
||
array(false, $exceptionNamespace . 'InvalidPropertyValueTypeException'),
|
||
);
|
||
}
|
||
|
||
public function invalidIncreaseDataProvider()
|
||
{
|
||
return array(
|
||
array(1, null),
|
||
array(1.01, ''),
|
||
array(1.00, true),
|
||
array(0.99, false),
|
||
array(0.99, array()),
|
||
array(0.99, new stdClass()),
|
||
array(0.99, 'test'),
|
||
array(0.99, -1.0),
|
||
array(0.99, -0.99),
|
||
);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validArrayDataProvider
|
||
*
|
||
* @param array $options
|
||
*/
|
||
public function testJsonSerialize($options)
|
||
{
|
||
$instance = self::getInstance($options);
|
||
$expected = $options;
|
||
self::assertEquals($expected, $instance->jsonSerialize());
|
||
}
|
||
}
|