mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-27 01:48:10 +00:00
329 lines
10 KiB
PHP
329 lines
10 KiB
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Request\Receipts;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use YooKassa\Helpers\Random;
|
|
use YooKassa\Helpers\StringObject;
|
|
use YooKassa\Model\CurrencyCode;
|
|
use YooKassa\Model\Receipt\PaymentMode;
|
|
use YooKassa\Model\Receipt\PaymentSubject;
|
|
use YooKassa\Model\Receipt\SettlementType;
|
|
use YooKassa\Model\ReceiptType;
|
|
use YooKassa\Request\Receipts\CreatePostReceiptRequestBuilder;
|
|
|
|
class CreatePostReceiptRequestBuilderTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param $options
|
|
*/
|
|
public function testSetItems($options)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
$instance = $builder->build($options);
|
|
|
|
if (empty($options['items'])) {
|
|
self::assertNull($instance->getItems());
|
|
} else {
|
|
self::assertNotNull($instance->getItems());
|
|
self::assertEquals(count($options['items']), count($instance->getItems()));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param $options
|
|
*/
|
|
public function testSetSettlements($options)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
$instance = $builder->build($options);
|
|
|
|
if (empty($options['settlements'])) {
|
|
self::assertNull($instance->getSettlements());
|
|
} else {
|
|
self::assertNotNull($instance->getSettlements());
|
|
self::assertEquals(count($options['settlements']), count($instance->getSettlements()));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param $options
|
|
* @throws \Exception
|
|
*/
|
|
public function testSetCustomer($options)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
$instance = $builder->build($options);
|
|
|
|
if (empty($options['customer'])) {
|
|
self::assertNull($instance->getCustomer());
|
|
} else {
|
|
self::assertNotNull($instance->getCustomer());
|
|
self::assertEquals($options['customer'], $instance->getCustomer()->jsonSerialize());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidCustomerDataProvider
|
|
* @expectedException \InvalidArgumentException
|
|
*
|
|
* @param $value
|
|
*/
|
|
public function testSetInvalidCustomer($value)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
$builder->setCustomer($value);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param $options
|
|
*/
|
|
public function testSetType($options)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
|
|
$instance = $builder->build($options);
|
|
|
|
if (empty($options['type'])) {
|
|
self::assertNull($instance->getType());
|
|
} else {
|
|
self::assertNotNull($instance->getType());
|
|
self::assertEquals($options['type'], $instance->getType());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidVatIdDataProvider
|
|
* @expectedException \InvalidArgumentException
|
|
*
|
|
* @param $value
|
|
*/
|
|
public function testSetInvalidType($value)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
$builder->setType($value);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param $options
|
|
*/
|
|
public function testSetSend($options)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
|
|
$instance = $builder->build($options);
|
|
|
|
if (empty($options['send'])) {
|
|
self::assertNull($instance->getSend());
|
|
} else {
|
|
self::assertNotNull($instance->getSend());
|
|
self::assertEquals($options['send'], $instance->getSend());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidBooleanDataProvider
|
|
* @expectedException \InvalidArgumentException
|
|
*
|
|
* @param $value
|
|
*/
|
|
public function testSetInvalidSend($value)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
$builder->setType($value);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
*
|
|
* @param $options
|
|
*/
|
|
public function testSetTaxSystemCode($options)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
|
|
$instance = $builder->build($options);
|
|
|
|
if (empty($options['tax_system_code'])) {
|
|
self::assertNull($instance->getTaxSystemCode());
|
|
} else {
|
|
self::assertNotNull($instance->getTaxSystemCode());
|
|
self::assertEquals($options['tax_system_code'], $instance->getTaxSystemCode());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider invalidVatIdDataProvider
|
|
* @expectedException \InvalidArgumentException
|
|
*
|
|
* @param $value
|
|
*/
|
|
public function testSetInvalidTaxSystemId($value)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
$builder->setTaxSystemCode($value);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider validDataProvider
|
|
* @param $value
|
|
*/
|
|
public function testSetOnBehalfOf($options)
|
|
{
|
|
$builder = new CreatePostReceiptRequestBuilder();
|
|
$instance = $builder->build($options);
|
|
|
|
if (empty($options['on_behalf_of'])) {
|
|
self::assertNull($instance->getOnBehalfOf());
|
|
} else {
|
|
self::assertNotNull($instance->getOnBehalfOf());
|
|
self::assertEquals($options['on_behalf_of'], $instance->getOnBehalfOf());
|
|
}
|
|
}
|
|
|
|
public function validDataProvider()
|
|
{
|
|
$type = Random::value(ReceiptType::getValidValues());
|
|
$result = array(
|
|
array(
|
|
array(
|
|
'customer' => array(
|
|
'full_name' => Random::str(128),
|
|
'email' => Random::str(128),
|
|
'phone' => Random::str(4, 12, '1234567890'),
|
|
'inn' => '1234567890',
|
|
),
|
|
'items' => array(
|
|
array(
|
|
'description' => Random::str(128),
|
|
'quantity' => Random::int(1, 10),
|
|
'amount' => array(
|
|
'value' => round(Random::float(0.1, 99.99), 2),
|
|
'currency' => Random::value(CurrencyCode::getValidValues())
|
|
),
|
|
'vat_code' => Random::int(1, 6),
|
|
'payment_subject' => Random::value(PaymentSubject::getValidValues()),
|
|
'payment_mode' => Random::value(PaymentMode::getValidValues()),
|
|
'product_code' => Random::str(2, 96, '1234567890ABCDEF '),
|
|
'country_of_origin_code' => 'RU',
|
|
'customs_declaration_number' => Random::str(32),
|
|
'excise' => Random::float(0.0, 99.99),
|
|
)
|
|
),
|
|
'tax_system_code' => Random::int(1, 6),
|
|
'type' => $type,
|
|
'send' => true,
|
|
'settlements' => array(
|
|
array(
|
|
'type' => Random::value(SettlementType::getValidValues()),
|
|
'amount' => array(
|
|
'value' => round(Random::float(0.1, 99.99), 2),
|
|
'currency' => Random::value(CurrencyCode::getValidValues())
|
|
)
|
|
)
|
|
),
|
|
$type . '_id' => uniqid()
|
|
),
|
|
),
|
|
);
|
|
for ($i = 0; $i < 10; $i++) {
|
|
$type = Random::value(ReceiptType::getValidValues());
|
|
$request = array(
|
|
'customer' => array(
|
|
'full_name' => Random::str(128),
|
|
'email' => Random::str(128),
|
|
'phone' => Random::str(4, 12, '1234567890'),
|
|
'inn' => '1234567890',
|
|
),
|
|
'items' => array(
|
|
array(
|
|
'description' => Random::str(128),
|
|
'quantity' => Random::int(1, 10),
|
|
'amount' => array(
|
|
'value' => round(Random::float(0.1, 99.99), 2),
|
|
'currency' => Random::value(CurrencyCode::getValidValues())
|
|
),
|
|
'vat_code' => Random::int(1, 6),
|
|
'payment_subject' => Random::value(PaymentSubject::getValidValues()),
|
|
'payment_mode' => Random::value(PaymentMode::getValidValues()),
|
|
'product_code' => Random::str(2, 96, '0123456789ABCDEF '),
|
|
'country_of_origin_code' => 'RU',
|
|
'customs_declaration_number' => Random::str(32),
|
|
'excise' => round(Random::float(0.0, 99.99), 2),
|
|
)
|
|
),
|
|
'tax_system_code' => Random::int(1, 6),
|
|
'type' => $type,
|
|
'send' => true,
|
|
'on_behalf_of' => Random::int(99999, 999999),
|
|
'settlements' => array(
|
|
array(
|
|
'type' => Random::value(SettlementType::getValidValues()),
|
|
'amount' => array(
|
|
'value' => round(Random::float(0.1, 99.99), 2),
|
|
'currency' => Random::value(CurrencyCode::getValidValues())
|
|
)
|
|
)
|
|
),
|
|
$type . '_id' => uniqid()
|
|
);
|
|
$result[] = array($request);
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
public function invalidAmountDataProvider()
|
|
{
|
|
return array(
|
|
array(-1),
|
|
array(true),
|
|
array(false),
|
|
array(new \stdClass()),
|
|
array(0),
|
|
);
|
|
}
|
|
|
|
public function invalidCustomerDataProvider()
|
|
{
|
|
return array(
|
|
array(true),
|
|
array(false),
|
|
array(Random::str(1, 100)),
|
|
);
|
|
}
|
|
|
|
public function invalidVatIdDataProvider()
|
|
{
|
|
return array(
|
|
array(array()),
|
|
array(true),
|
|
array(false),
|
|
array(new \stdClass()),
|
|
array(0),
|
|
array(7),
|
|
array(Random::int(-100, -1)),
|
|
array(Random::int(7, 100)),
|
|
);
|
|
}
|
|
|
|
|
|
public function invalidBooleanDataProvider()
|
|
{
|
|
return array(
|
|
array(array()),
|
|
array(new \stdClass()),
|
|
array('test'),
|
|
);
|
|
}
|
|
|
|
} |