mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-31 20:49:20 +00:00
139 lines
4.4 KiB
PHP
139 lines
4.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\Model\PaymentMethod;
|
||
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\PaymentMethod\PaymentMethodYooMoney;
|
||
use YooKassa\Model\PaymentMethodType;
|
||
|
||
class PaymentMethodYooMoneyTest extends AbstractPaymentMethodTest
|
||
{
|
||
/**
|
||
* @return PaymentMethodYooMoney
|
||
*/
|
||
protected function getTestInstance()
|
||
{
|
||
return new PaymentMethodYooMoney();
|
||
}
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
protected function getExpectedType()
|
||
{
|
||
return PaymentMethodType::YOO_MONEY;
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validAccountNumberDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testGetSetAccountNumber($value)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
self::assertNull($instance->getAccountNumber());
|
||
self::assertNull($instance->accountNumber);
|
||
self::assertNull($instance->account_number);
|
||
|
||
$instance->setAccountNumber($value);
|
||
self::assertEquals($value, $instance->getAccountNumber());
|
||
self::assertEquals($value, $instance->accountNumber);
|
||
self::assertEquals($value, $instance->account_number);
|
||
|
||
$instance = $this->getTestInstance();
|
||
$instance->accountNumber = $value;
|
||
self::assertEquals($value, $instance->getAccountNumber());
|
||
self::assertEquals($value, $instance->accountNumber);
|
||
self::assertEquals($value, $instance->account_number);
|
||
|
||
$instance = $this->getTestInstance();
|
||
$instance->account_number = $value;
|
||
self::assertEquals($value, $instance->getAccountNumber());
|
||
self::assertEquals($value, $instance->accountNumber);
|
||
self::assertEquals($value, $instance->account_number);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidAccountNumberDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidAccountNumber($value)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->setAccountNumber($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidAccountNumberDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidAccountNumber($value)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->accountNumber = $value;
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidAccountNumberDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidAccount_number($value)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->account_number = $value;
|
||
}
|
||
|
||
public function validAccountNumberDataProvider()
|
||
{
|
||
return array(
|
||
array(Random::str(11, '0123456789')),
|
||
array(Random::str(12, '0123456789')),
|
||
array(Random::str(13, '0123456789')),
|
||
array(Random::str(31, '0123456789')),
|
||
array(Random::str(32, '0123456789')),
|
||
array(Random::str(33, '0123456789')),
|
||
);
|
||
}
|
||
|
||
public function invalidAccountNumberDataProvider()
|
||
{
|
||
return array(
|
||
array(null),
|
||
array(''),
|
||
array(true),
|
||
array(false),
|
||
array(array()),
|
||
array(new \stdClass()),
|
||
array(Random::str(10, '0123456789')),
|
||
array(Random::str(34, '0123456789')),
|
||
);
|
||
}
|
||
}
|