mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-31 04:28:23 +00:00
109 lines
3.4 KiB
PHP
109 lines
3.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\Model\PaymentMethod\PaymentMethodMobileBalance;
|
||
|
||
abstract class AbstractPaymentMethodPhoneTest extends AbstractPaymentMethodTest
|
||
{
|
||
/**
|
||
* @dataProvider validPhoneDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testGetSetPhone($value)
|
||
{
|
||
/** @var PaymentMethodMobileBalance $instance */
|
||
$instance = $this->getTestInstance();
|
||
|
||
self::assertNull($instance->getPhone());
|
||
self::assertNull($instance->phone);
|
||
|
||
$instance->setPhone($value);
|
||
self::assertEquals($value, $instance->getPhone());
|
||
self::assertEquals($value, $instance->phone);
|
||
|
||
$instance = $this->getTestInstance();
|
||
$instance->phone = $value;
|
||
self::assertEquals($value, $instance->getPhone());
|
||
self::assertEquals($value, $instance->phone);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidPhoneDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidPhone($value)
|
||
{
|
||
/** @var PaymentMethodMobileBalance $instance */
|
||
$instance = $this->getTestInstance();
|
||
$instance->setPhone($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidPhoneDataProvider
|
||
* @expectedException \InvalidArgumentException
|
||
* @param $value
|
||
*/
|
||
public function testSetterInvalidPhone($value)
|
||
{
|
||
/** @var PaymentMethodMobileBalance $instance */
|
||
$instance = $this->getTestInstance();
|
||
$instance->phone = $value;
|
||
}
|
||
|
||
public function validPhoneDataProvider()
|
||
{
|
||
return array(
|
||
array('0123'),
|
||
array('45678'),
|
||
array('901234'),
|
||
array('5678901'),
|
||
array('23456789'),
|
||
array('012345678'),
|
||
array('9012345678'),
|
||
array('90123456789'),
|
||
array('012345678901'),
|
||
array('5678901234567'),
|
||
array('89012345678901'),
|
||
array('234567890123456'),
|
||
);
|
||
}
|
||
|
||
public function invalidPhoneDataProvider()
|
||
{
|
||
return array(
|
||
array(null),
|
||
array(''),
|
||
array(true),
|
||
array(false),
|
||
array(array()),
|
||
array(new \stdClass()),
|
||
array('2345678901234567'),
|
||
);
|
||
}
|
||
}
|