mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-31 12:38:44 +00:00
114 lines
3.2 KiB
PHP
114 lines
3.2 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\PaymentMethodAlfaBank;
|
||
use YooKassa\Model\PaymentMethodType;
|
||
|
||
class PaymentMethodAlfaBankTest extends AbstractPaymentMethodTest
|
||
{
|
||
/**
|
||
* @return PaymentMethodAlfaBank
|
||
*/
|
||
protected function getTestInstance()
|
||
{
|
||
return new PaymentMethodAlfaBank();
|
||
}
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
protected function getExpectedType()
|
||
{
|
||
return PaymentMethodType::ALFABANK;
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validLoginDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testGetSetLogin($value)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
self::assertNull($instance->getLogin());
|
||
self::assertNull($instance->login);
|
||
|
||
$instance->setLogin($value);
|
||
self::assertEquals($value, $instance->getLogin());
|
||
self::assertEquals($value, $instance->login);
|
||
|
||
$instance = $this->getTestInstance();
|
||
$instance->login = $value;
|
||
self::assertEquals($value, $instance->getLogin());
|
||
self::assertEquals($value, $instance->login);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidLoginDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidLogin($value)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->setLogin($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidLoginDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidLogin($value)
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->login = $value;
|
||
}
|
||
|
||
public function validLoginDataProvider()
|
||
{
|
||
return array(
|
||
array(null),
|
||
array(''),
|
||
array('123'),
|
||
array(Random::str(256)),
|
||
array(Random::str(1024)),
|
||
);
|
||
}
|
||
|
||
public function invalidLoginDataProvider()
|
||
{
|
||
return array(
|
||
array(true),
|
||
array(false),
|
||
array(array()),
|
||
array(new \stdClass()),
|
||
);
|
||
}
|
||
}
|