mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-31 12:38:44 +00:00
257 lines
8.4 KiB
PHP
257 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\SelfEmployed;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\SelfEmployed\SelfEmployedConfirmationType;
|
||
use YooKassa\Request\SelfEmployed\SelfEmployedRequest;
|
||
use YooKassa\Request\SelfEmployed\SelfEmployedRequestBuilder;
|
||
use YooKassa\Request\SelfEmployed\SelfEmployedRequestConfirmation;
|
||
use YooKassa\Request\SelfEmployed\SelfEmployedRequestConfirmationFactory;
|
||
use YooKassa\Request\SelfEmployed\SelfEmployedRequestConfirmationRedirect;
|
||
|
||
class SelfEmployedRequestTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testItn($options)
|
||
{
|
||
$instance = new SelfEmployedRequest();
|
||
|
||
self::assertNull($instance->getItn());
|
||
self::assertNull($instance->itn);
|
||
|
||
$instance->setItn($options['itn']);
|
||
|
||
self::assertSame($options['itn'], $instance->getItn());
|
||
self::assertSame($options['itn'], $instance->itn);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidItnDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidItn($value)
|
||
{
|
||
$instance = new SelfEmployedRequest();
|
||
$instance->setItn($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testPhone($options)
|
||
{
|
||
$instance = new SelfEmployedRequest();
|
||
|
||
self::assertFalse($instance->hasPhone());
|
||
self::assertNull($instance->getPhone());
|
||
self::assertNull($instance->phone);
|
||
|
||
$expected = $options['phone'];
|
||
|
||
$instance->setPhone($options['phone']);
|
||
if (empty($options['phone'])) {
|
||
self::assertFalse($instance->hasPhone());
|
||
self::assertNull($instance->getPhone());
|
||
self::assertNull($instance->phone);
|
||
} else {
|
||
self::assertTrue($instance->hasPhone());
|
||
self::assertSame($expected, $instance->getPhone());
|
||
self::assertSame($expected, $instance->phone);
|
||
}
|
||
|
||
$instance->setPhone(null);
|
||
self::assertFalse($instance->hasPhone());
|
||
self::assertNull($instance->getPhone());
|
||
self::assertNull($instance->phone);
|
||
|
||
$instance->phone = $options['phone'];
|
||
if (empty($options['phone'])) {
|
||
self::assertFalse($instance->hasPhone());
|
||
self::assertNull($instance->getPhone());
|
||
self::assertNull($instance->phone);
|
||
} else {
|
||
self::assertTrue($instance->hasPhone());
|
||
self::assertSame($expected, $instance->getPhone());
|
||
self::assertSame($expected, $instance->phone);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidPhoneDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidPhone($value)
|
||
{
|
||
$instance = new SelfEmployedRequest();
|
||
$instance->setPhone($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testConfirmation($options)
|
||
{
|
||
$instance = new SelfEmployedRequest();
|
||
|
||
self::assertFalse($instance->hasConfirmation());
|
||
self::assertNull($instance->getConfirmation());
|
||
self::assertNull($instance->confirmation);
|
||
|
||
$expected = $options['confirmation'];
|
||
if ($expected instanceof SelfEmployedRequestConfirmation) {
|
||
$expected = $expected->toArray();
|
||
}
|
||
|
||
$instance->setConfirmation($options['confirmation']);
|
||
if (empty($options['confirmation'])) {
|
||
self::assertFalse($instance->hasConfirmation());
|
||
self::assertNull($instance->getConfirmation());
|
||
self::assertNull($instance->confirmation);
|
||
} else {
|
||
self::assertTrue($instance->hasConfirmation());
|
||
self::assertSame($expected, $instance->getConfirmation()->toArray());
|
||
self::assertSame($expected, $instance->confirmation->toArray());
|
||
}
|
||
|
||
$instance->setConfirmation(null);
|
||
self::assertFalse($instance->hasConfirmation());
|
||
self::assertNull($instance->getConfirmation());
|
||
self::assertNull($instance->confirmation);
|
||
|
||
$instance->confirmation = $options['confirmation'];
|
||
if (empty($options['confirmation'])) {
|
||
self::assertFalse($instance->hasConfirmation());
|
||
self::assertNull($instance->getConfirmation());
|
||
self::assertNull($instance->confirmation);
|
||
} else {
|
||
self::assertTrue($instance->hasConfirmation());
|
||
self::assertSame($expected, $instance->getConfirmation()->toArray());
|
||
self::assertSame($expected, $instance->confirmation->toArray());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidConfirmationDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidConfirmation($value)
|
||
{
|
||
$instance = new SelfEmployedRequest();
|
||
$instance->setConfirmation($value);
|
||
}
|
||
|
||
public function testValidate()
|
||
{
|
||
$instance = new SelfEmployedRequest();
|
||
|
||
self::assertFalse($instance->validate());
|
||
|
||
$instance->setItn(null);
|
||
self::assertFalse($instance->validate());
|
||
$instance->setPhone('');
|
||
self::assertFalse($instance->validate());
|
||
$instance->setConfirmation(new SelfEmployedRequestConfirmationRedirect());
|
||
self::assertFalse($instance->validate());
|
||
|
||
$instance->setItn('529834813422');
|
||
self::assertTrue($instance->validate());
|
||
}
|
||
|
||
public function testBuilder()
|
||
{
|
||
$builder = SelfEmployedRequest::builder();
|
||
self::assertTrue($builder instanceof SelfEmployedRequestBuilder);
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
$factory = new SelfEmployedRequestConfirmationFactory();
|
||
$result = array(
|
||
array(
|
||
array(
|
||
'itn' => Random::str(12, 12, '0123456789'),
|
||
'phone' => Random::str(11, 11, '0123456789'),
|
||
'confirmation' => null,
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'itn' => Random::str(12, 12, '0123456789'),
|
||
'phone' => Random::str(11, 11, '0123456789'),
|
||
'confirmation' => '',
|
||
),
|
||
),
|
||
);
|
||
for ($i = 0; $i < 10; $i++) {
|
||
$request = array(
|
||
'itn' => Random::str(12, 12, '0123456789'),
|
||
'phone' => Random::str(11, 11, '0123456789'),
|
||
'confirmation' => $factory->factoryFromArray(array('type' => Random::value(SelfEmployedConfirmationType::getValidValues()))),
|
||
);
|
||
$result[] = array($request);
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidItnDataProvider()
|
||
{
|
||
return array(
|
||
array(false),
|
||
array(true),
|
||
array(new \stdClass()),
|
||
);
|
||
}
|
||
|
||
public function invalidPhoneDataProvider()
|
||
{
|
||
return array(
|
||
array(false),
|
||
array(true),
|
||
array(new \stdClass()),
|
||
);
|
||
}
|
||
|
||
public function invalidConfirmationDataProvider()
|
||
{
|
||
return array(
|
||
array(false),
|
||
array(true),
|
||
array(new \stdClass()),
|
||
array(Random::str(10)),
|
||
);
|
||
}
|
||
}
|