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

237 lines
7.3 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\PaymentData;
use Exception;
use stdClass;
use YooKassa\Helpers\Random;
use YooKassa\Model\CurrencyCode;
use YooKassa\Model\MonetaryAmount;
use YooKassa\Model\PaymentData\B2b\Sberbank\VatData;
use YooKassa\Model\PaymentData\B2b\Sberbank\VatDataRate;
use YooKassa\Model\PaymentData\B2b\Sberbank\VatDataType;
use YooKassa\Model\PaymentData\PaymentDataB2bSberbank;
use YooKassa\Model\PaymentMethodType;
class PaymentDataB2bSberbankTest extends AbstractPaymentDataTestCase
{
/**
* @return PaymentDataB2bSberbank
*/
protected function getTestInstance()
{
return new PaymentDataB2bSberbank();
}
/**
* @return string
*/
protected function getExpectedType()
{
return PaymentMethodType::B2B_SBERBANK;
}
/**
* @dataProvider validPaymentPurposeDataProvider
* @param string $value
*/
public function testGetSetPaymentPurpose($value)
{
$instance = $this->getTestInstance();
self::assertNull($instance->getPaymentPurpose());
self::assertNull($instance->paymentPurpose);
$instance->setPaymentPurpose($value);
self::assertEquals($value, $instance->getPaymentPurpose());
self::assertEquals($value, $instance->paymentPurpose);
}
/**
* @dataProvider invalidPaymentPurposeDataProvider
* @param mixed $value
*/
public function testSetInvalidPaymentPurpose($value)
{
$this->expectException('InvalidArgumentException');
$this->getTestInstance()->setPaymentPurpose($value);
}
/**
* @return array
* @throws Exception
*/
public function validPaymentPurposeDataProvider()
{
return array(
array(Random::str(16)),
);
}
/**
* @return array
* @throws Exception
*/
public function invalidPaymentPurposeDataProvider()
{
return array(
array(''),
array(true),
array(new stdClass()),
array(Random::str(211)),
);
}
/**
* @dataProvider validVatDataDataProvider
* @param mixed $value
*/
public function testGetSetVatData($value)
{
$instance = $this->getTestInstance();
self::assertNull($instance->getPaymentPurpose());
self::assertNull($instance->paymentPurpose);
$instance->setVatData($value);
if (is_array($value)) {
self::assertEquals($value['type'], $instance->getVatData()->getType());
self::assertEquals($value['type'], $instance->vatData->getType());
if (isset($value['rate'])) {
self::assertEquals($value['rate'], $instance->getVatData()->getRate());
self::assertEquals($value['rate'], $instance->vatData->getRate());
}
if (isset($value['amount'])) {
if (is_array($value['amount'])) {
self::assertEquals(
$value['amount']['value'],
(int)$instance->getVatData()->getAmount()->getValue()
);
self::assertEquals($value['amount']['currency'], $instance->vatData->getAmount()->getCurrency());
} else {
self::assertEquals($value['amount'], $instance->getVatData()->getAmount());
self::assertEquals($value['amount'], $instance->vatData->getAmount());
}
}
} else {
self::assertEquals($value, $instance->getVatData());
self::assertEquals($value, $instance->vatData);
}
}
/**
* @dataProvider invalidVatDataDataProvider
* @param mixed $value
*/
public function testSetInvalidVatData($value)
{
$this->expectException('InvalidArgumentException');
$this->getTestInstance()->setVatData($value);
}
/**
* @return array
* @throws Exception
*/
public function validVatDataDataProvider()
{
return array(
array(null),
array(new VatData(VatDataType::UNTAXED)),
array(new VatData(VatDataType::CALCULATED, VatDataRate::RATE_7, new MonetaryAmount(Random::int(1, 10000)))),
array(
array(
'type' => VatDataType::UNTAXED,
)
),
array(
array(
'type' => VatDataType::CALCULATED,
'rate' => VatDataRate::RATE_5,
'amount' => new MonetaryAmount(Random::int(1, 10000), CurrencyCode::EUR),
)
),
array(
array(
'type' => VatDataType::CALCULATED,
'rate' => VatDataRate::RATE_7,
'amount' => new MonetaryAmount(Random::int(1, 10000), CurrencyCode::EUR),
)
),
array(
array(
'type' => VatDataType::CALCULATED,
'rate' => VatDataRate::RATE_10,
'amount' => new MonetaryAmount(Random::int(1, 10000), CurrencyCode::EUR),
)
),
array(
array(
'type' => VatDataType::MIXED,
'amount' => new MonetaryAmount(Random::int(1, 10000), CurrencyCode::EUR),
)
),
array(
array(
'type' => VatDataType::CALCULATED,
'rate' => VatDataRate::RATE_20,
'amount' => array(
'value' => Random::int(1, 10000),
'currency' => CurrencyCode::USD,
),
)
),
);
}
/**
* @return array
* @throws Exception
*/
public function invalidVatDataDataProvider()
{
return array(
array(0),
array(1),
array(-1),
array(''),
array(true),
array(new stdClass()),
array(
array(
'type' => VatDataType::CALCULATED,
'rate' => VatDataRate::RATE_10,
'amount' => Random::str(10),
)
),
);
}
}