Files
yookassa-sdk-php/tests/Model/Payout/PayoutDestinationSbpTest.php
2026-07-07 13:02:16 +03:00

282 lines
8.5 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\Model\Payout;
use DateTime;
use stdClass;
use YooKassa\Helpers\Random;
use YooKassa\Model\PaymentMethodType;
use YooKassa\Model\Payout\PayoutDestinationSbp;
class PayoutDestinationSbpTest extends AbstractPayoutDestinationTestCase
{
/**
* @return PayoutDestinationSbp
*/
protected function getTestInstance()
{
return new PayoutDestinationSbp();
}
/**
* @return string
*/
protected function getExpectedType()
{
return PaymentMethodType::SBP;
}
/**
* @dataProvider validPhoneDataProvider
* @param string $value
*/
public function testGetSetPhone($value)
{
$instance = $this->getTestInstance();
self::assertNull($instance->getPhone());
self::assertNull($instance->phone);
$instance->setPhone($value);
if ($value === null || $value === '') {
self::assertNull($instance->getPhone());
self::assertNull($instance->phone);
} else {
$expected = $value;
self::assertEquals($expected, $instance->getPhone());
self::assertEquals($expected, $instance->phone);
}
$instance = $this->getTestInstance();
$instance->phone = $value;
if ($value === null || $value === '') {
self::assertNull($instance->getPhone());
self::assertNull($instance->phone);
} else {
$expected = $value;
self::assertEquals($expected, $instance->getPhone());
self::assertEquals($expected, $instance->phone);
}
}
/**
* @dataProvider invalidPhoneDataProvider
* @param mixed $value
*/
public function testSetInvalidPhone($value)
{
$this->expectException('InvalidArgumentException');
$this->getTestInstance()->setPhone($value);
}
/**
* @dataProvider invalidPhoneDataProvider
* @param mixed $value
*/
public function testSetterInvalidPhone($value)
{
$this->expectException('InvalidArgumentException');
$this->getTestInstance()->phone = $value;
}
/**
* @dataProvider validBankIdDataProvider
* @param string $value
*/
public function testGetSetBankId($value)
{
$instance = $this->getTestInstance();
self::assertNull($instance->getBankId());
self::assertNull($instance->bankId);
self::assertNull($instance->bank_id);
$instance->setBankId($value);
if ($value === null || $value === '') {
self::assertNull($instance->getBankId());
self::assertNull($instance->bankId);
self::assertNull($instance->bank_id);
} else {
$expected = $value;
self::assertEquals($expected, $instance->getBankId());
self::assertEquals($expected, $instance->bankId);
self::assertEquals($expected, $instance->bank_id);
}
$instance = $this->getTestInstance();
$instance->bankId = $value;
if ($value === null || $value === '') {
self::assertNull($instance->getBankId());
self::assertNull($instance->bankId);
self::assertNull($instance->bank_id);
} else {
$expected = $value;
self::assertEquals($expected, $instance->getBankId());
self::assertEquals($expected, $instance->bankId);
self::assertEquals($expected, $instance->bank_id);
}
}
/**
* @dataProvider invalidBankIdDataProvider
* @param mixed $value
*/
public function testSetInvalidBankId($value)
{
$this->expectException('InvalidArgumentException');
$this->getTestInstance()->setBankId($value);
}
/**
* @dataProvider invalidBankIdDataProvider
* @param mixed $value
*/
public function testSetterInvalidBankId($value)
{
$this->expectException('InvalidArgumentException');
$this->getTestInstance()->bankId = $value;
}
/**
* @dataProvider validRecipientCheckedDataProvider
* @param string $value
*/
public function testGetSetRecipientChecked($value)
{
$instance = $this->getTestInstance();
self::assertNull($instance->getRecipientChecked());
self::assertNull($instance->recipientChecked);
self::assertNull($instance->recipient_checked);
$instance->setRecipientChecked($value);
if ($value === null || $value === '') {
self::assertNull($instance->getRecipientChecked());
self::assertNull($instance->recipientChecked);
self::assertNull($instance->recipient_checked);
} else {
$expected = $value;
self::assertEquals($expected, $instance->getRecipientChecked());
self::assertEquals($expected, $instance->recipientChecked);
self::assertEquals($expected, $instance->recipient_checked);
}
$instance = $this->getTestInstance();
$instance->recipientChecked = $value;
if ($value === null || $value === '') {
self::assertNull($instance->getRecipientChecked());
self::assertNull($instance->recipientChecked);
self::assertNull($instance->recipient_checked);
} else {
$expected = $value;
self::assertEquals($expected, $instance->getRecipientChecked());
self::assertEquals($expected, $instance->recipientChecked);
self::assertEquals($expected, $instance->recipient_checked);
}
}
/**
* @dataProvider invalidRecipientCheckedDataProvider
* @param mixed $value
*/
public function testSetInvalidRecipientChecked($value)
{
$this->expectException('InvalidArgumentException');
$this->getTestInstance()->recipientChecked = $value;
}
/**
* @dataProvider invalidRecipientCheckedDataProvider
* @param mixed $value
*/
public function testSettterInvalidRecipientChecked($value)
{
$this->expectException('InvalidArgumentException');
$this->getTestInstance()->setRecipientChecked($value);
}
public function validPhoneDataProvider()
{
return array(
array(Random::str(4, 16, '0123456789')),
array(Random::str(4, 16, '0123456789')),
);
}
public function invalidPhoneDataProvider()
{
return array(
array(array()),
array(null),
array(''),
array(true),
array(new stdClass()),
array(new DateTime()),
);
}
public function validBankIdDataProvider()
{
return array(
array(Random::str(7, 12, '0123456789')),
array(Random::str(7, 12, '0123456789')),
);
}
public function invalidBankIdDataProvider()
{
return array(
array(array()),
array(null),
array(''),
array(true),
array(new stdClass()),
array(new DateTime()),
array(Random::str(13)),
);
}
public function validRecipientCheckedDataProvider()
{
return array(
array(Random::bool()),
array(Random::bool()),
);
}
public function invalidRecipientCheckedDataProvider()
{
return array(
array(array()),
array(null),
array(''),
array(new stdClass()),
array(new DateTime()),
);
}
}