mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-30 20:17:36 +00:00
153 lines
4.7 KiB
PHP
153 lines
4.7 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\SelfEmployed;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\SelfEmployed\SelfEmployedConfirmationType;
|
||
use YooKassa\Request\SelfEmployed\SelfEmployedRequestConfirmation;
|
||
use YooKassa\Request\SelfEmployed\SelfEmployedRequestConfirmationFactory;
|
||
|
||
class ConfirmationFactoryTest extends TestCase
|
||
{
|
||
/**
|
||
* @return SelfEmployedRequestConfirmationFactory
|
||
*/
|
||
protected function getTestInstance()
|
||
{
|
||
return new SelfEmployedRequestConfirmationFactory();
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validTypeDataProvider
|
||
* @param string $type
|
||
*/
|
||
public function testFactory($type)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$confirmation = $instance->factory($type);
|
||
self::assertNotNull($confirmation);
|
||
self::assertTrue($confirmation instanceof SelfEmployedRequestConfirmation);
|
||
self::assertEquals($type, $confirmation->getType());
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidTypeDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $type
|
||
*/
|
||
public function testInvalidFactory($type)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->factory($type);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validArrayDataProvider
|
||
* @param array $options
|
||
*/
|
||
public function testFactoryFromArray($options)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$confirmation = $instance->factoryFromArray($options);
|
||
self::assertNotNull($confirmation);
|
||
self::assertTrue($confirmation instanceof SelfEmployedRequestConfirmation);
|
||
|
||
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::assertTrue($confirmation instanceof SelfEmployedRequestConfirmation);
|
||
|
||
self::assertEquals($type, $confirmation->getType());
|
||
foreach ($options as $property => $value) {
|
||
self::assertEquals($confirmation->{$property}, $value);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataArrayDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $options
|
||
*/
|
||
public function testInvalidFactoryFromArray($options)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->factoryFromArray($options);
|
||
}
|
||
|
||
public function validTypeDataProvider()
|
||
{
|
||
$result = array();
|
||
foreach (SelfEmployedConfirmationType::getValidValues() as $value) {
|
||
$result[] = array($value);
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidTypeDataProvider()
|
||
{
|
||
return array(
|
||
array(''),
|
||
array(null),
|
||
array(0),
|
||
array(1),
|
||
array(-1),
|
||
array('5'),
|
||
array(array()),
|
||
array(new \stdClass()),
|
||
array(Random::str(10)),
|
||
);
|
||
}
|
||
|
||
public function validArrayDataProvider()
|
||
{
|
||
$result = array(
|
||
array(
|
||
array(
|
||
'type' => SelfEmployedConfirmationType::REDIRECT,
|
||
),
|
||
),
|
||
);
|
||
foreach (SelfEmployedConfirmationType::getValidValues() as $value) {
|
||
$result[] = array(array('type' => $value));
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidDataArrayDataProvider()
|
||
{
|
||
return array(
|
||
array(array()),
|
||
array(array('type' => 'test')),
|
||
);
|
||
}
|
||
}
|