mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-07 00:16:27 +00:00
323 lines
10 KiB
PHP
323 lines
10 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\Payout;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use stdClass;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\CurrencyCode;
|
||
use YooKassa\Model\MonetaryAmount;
|
||
use YooKassa\Model\Payout\IncomeReceipt;
|
||
|
||
class IncomeReceiptTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testGetSetAmount($options)
|
||
{
|
||
$instance = new IncomeReceipt();
|
||
|
||
self::assertNull($instance->getAmount());
|
||
self::assertNull($instance->amount);
|
||
|
||
$instance->setAmount($options['amount']);
|
||
if (empty($options['amount'])) {
|
||
self::assertNull($instance->getAmount());
|
||
self::assertNull($instance->amount);
|
||
} else {
|
||
if (is_array($options['amount'])) {
|
||
self::assertEquals($options['amount'], $instance->getAmount()->toArray());
|
||
self::assertEquals($options['amount'], $instance->amount->toArray());
|
||
} else {
|
||
self::assertEquals($options['amount'], $instance->getAmount());
|
||
self::assertEquals($options['amount'], $instance->amount);
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testSetterAmount($options)
|
||
{
|
||
$instance = new IncomeReceipt();
|
||
|
||
self::assertNull($instance->getAmount());
|
||
self::assertNull($instance->amount);
|
||
|
||
$instance->amount = $options['amount'];
|
||
if (empty($options['amount'])) {
|
||
self::assertNull($instance->getAmount());
|
||
self::assertNull($instance->amount);
|
||
} else {
|
||
if (is_array($options['amount'])) {
|
||
self::assertEquals($options['amount'], $instance->getAmount()->toArray());
|
||
self::assertEquals($options['amount'], $instance->amount->toArray());
|
||
} else {
|
||
self::assertEquals($options['amount'], $instance->getAmount());
|
||
self::assertEquals($options['amount'], $instance->amount);
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidAmountProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidAmount($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new IncomeReceipt();
|
||
$instance->setAmount($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testGetSetServiceName($options)
|
||
{
|
||
$instance = new IncomeReceipt();
|
||
|
||
self::assertNull($instance->getServiceName());
|
||
self::assertNull($instance->service_name);
|
||
self::assertNull($instance->serviceName);
|
||
|
||
$instance->setServiceName($options['service_name']);
|
||
self::assertEquals($options['service_name'], $instance->getServiceName());
|
||
self::assertEquals($options['service_name'], $instance->service_name);
|
||
self::assertEquals($options['service_name'], $instance->serviceName);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testSetterServiceName($options)
|
||
{
|
||
$instance = new IncomeReceipt();
|
||
|
||
self::assertNull($instance->getServiceName());
|
||
self::assertNull($instance->service_name);
|
||
self::assertNull($instance->serviceName);
|
||
|
||
$instance->service_name = $options['service_name'];
|
||
self::assertEquals($options['service_name'], $instance->getServiceName());
|
||
self::assertEquals($options['service_name'], $instance->service_name);
|
||
self::assertEquals($options['service_name'], $instance->serviceName);
|
||
|
||
$instance->serviceName = $options['service_name'];
|
||
self::assertEquals($options['service_name'], $instance->getServiceName());
|
||
self::assertEquals($options['service_name'], $instance->service_name);
|
||
self::assertEquals($options['service_name'], $instance->serviceName);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidServiceNameProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidServiceName($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new IncomeReceipt();
|
||
$instance->setServiceName($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testGetSetNpdReceiptId($options)
|
||
{
|
||
$instance = new IncomeReceipt();
|
||
|
||
self::assertNull($instance->getNpdReceiptId());
|
||
self::assertNull($instance->npd_receipt_id);
|
||
self::assertNull($instance->npdReceiptId);
|
||
|
||
$instance->setNpdReceiptId($options['npd_receipt_id']);
|
||
self::assertEquals($options['npd_receipt_id'], $instance->getNpdReceiptId());
|
||
self::assertEquals($options['npd_receipt_id'], $instance->npd_receipt_id);
|
||
self::assertEquals($options['npd_receipt_id'], $instance->npdReceiptId);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testSetterNpdReceiptId($options)
|
||
{
|
||
$instance = new IncomeReceipt();
|
||
|
||
self::assertNull($instance->getNpdReceiptId());
|
||
self::assertNull($instance->npd_receipt_id);
|
||
self::assertNull($instance->npdReceiptId);
|
||
|
||
$instance->npd_receipt_id = $options['npd_receipt_id'];
|
||
self::assertEquals($options['npd_receipt_id'], $instance->getNpdReceiptId());
|
||
self::assertEquals($options['npd_receipt_id'], $instance->npd_receipt_id);
|
||
self::assertEquals($options['npd_receipt_id'], $instance->npdReceiptId);
|
||
|
||
$instance->npdReceiptId = $options['npd_receipt_id'];
|
||
self::assertEquals($options['npd_receipt_id'], $instance->getNpdReceiptId());
|
||
self::assertEquals($options['npd_receipt_id'], $instance->npd_receipt_id);
|
||
self::assertEquals($options['npd_receipt_id'], $instance->npdReceiptId);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidStringProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidNpdReceiptId($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new IncomeReceipt();
|
||
$instance->setNpdReceiptId($value);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testGetSetUrl($options)
|
||
{
|
||
$instance = new IncomeReceipt();
|
||
|
||
self::assertNull($instance->getUrl());
|
||
self::assertNull($instance->url);
|
||
|
||
$instance->setUrl($options['url']);
|
||
self::assertEquals($options['url'], $instance->getUrl());
|
||
self::assertEquals($options['url'], $instance->url);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testSetterUrl($options)
|
||
{
|
||
$instance = new IncomeReceipt();
|
||
|
||
self::assertNull($instance->getUrl());
|
||
self::assertNull($instance->url);
|
||
|
||
$instance->url = $options['url'];
|
||
self::assertEquals($options['url'], $instance->getUrl());
|
||
self::assertEquals($options['url'], $instance->url);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidStringProvider
|
||
* @param $value
|
||
*/
|
||
public function testSetInvalidUrl($value)
|
||
{
|
||
$this->expectException('InvalidArgumentException');
|
||
$instance = new IncomeReceipt();
|
||
$instance->setUrl($value);
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
$result = array(
|
||
array(
|
||
array(
|
||
'service_name' => Random::str(1, IncomeReceipt::MAX_LENGTH_SERVICE_NAME),
|
||
'npd_receipt_id' => null,
|
||
'url' => null,
|
||
'amount' => null,
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'service_name' => Random::str(1, IncomeReceipt::MAX_LENGTH_SERVICE_NAME),
|
||
'npd_receipt_id' => '',
|
||
'url' => Random::str(1, 50),
|
||
'amount' => array(),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
'service_name' => Random::str(1, IncomeReceipt::MAX_LENGTH_SERVICE_NAME),
|
||
'npd_receipt_id' => Random::str(1, 50),
|
||
'url' => '',
|
||
'amount' => new MonetaryAmount(Random::int(1, 1000000)),
|
||
),
|
||
),
|
||
);
|
||
for ($i = 1; $i < 6; $i++) {
|
||
$receipt = array(
|
||
'service_name' => Random::str(1, IncomeReceipt::MAX_LENGTH_SERVICE_NAME),
|
||
'npd_receipt_id' => Random::str(1, 50),
|
||
'url' => Random::str(1, 50),
|
||
'amount' => array(
|
||
'value' => round(Random::float(0.1, 99.99), 2),
|
||
'currency' => Random::value(CurrencyCode::getValidValues())
|
||
),
|
||
);
|
||
$result[] = array($receipt);
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
public function invalidServiceNameProvider()
|
||
{
|
||
return array(
|
||
array(null),
|
||
array(''),
|
||
array(new stdClass()),
|
||
array(true),
|
||
array(false),
|
||
array(array()),
|
||
array(Random::str(IncomeReceipt::MAX_LENGTH_SERVICE_NAME + 1, 60)),
|
||
);
|
||
}
|
||
|
||
public function invalidStringProvider()
|
||
{
|
||
return array(
|
||
array(new stdClass()),
|
||
array(true),
|
||
array(false),
|
||
array(array()),
|
||
);
|
||
}
|
||
|
||
public function invalidAmountProvider()
|
||
{
|
||
return array(
|
||
array(new stdClass()),
|
||
array(true),
|
||
array(false),
|
||
);
|
||
}
|
||
|
||
}
|