Files
yookassa-sdk-php/tests/Request/Payments/CreatePaymentRequestBuilderTest.php

1323 lines
44 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\Request\Payments;
use Exception;
use InvalidArgumentException;
use PHPUnit\Framework\TestCase;
use YooKassa\Helpers\Random;
use YooKassa\Model\AmountInterface;
use YooKassa\Model\ConfirmationAttributes\ConfirmationAttributesExternal;
use YooKassa\Model\ConfirmationType;
use YooKassa\Model\CurrencyCode;
use YooKassa\Model\Deal\PaymentDealInfo;
use YooKassa\Model\Deal\SettlementPayoutPayment;
use YooKassa\Model\Deal\SettlementPayoutPaymentType;
use YooKassa\Model\FraudData;
use YooKassa\Model\MonetaryAmount;
use YooKassa\Model\Payment;
use YooKassa\Model\PaymentData\PaymentDataQiwi;
use YooKassa\Model\PaymentMethodType;
use YooKassa\Model\Receipt\IndustryDetails;
use YooKassa\Model\Receipt\OperationalDetails;
use YooKassa\Model\Receipt\PaymentMode;
use YooKassa\Model\Receipt\PaymentSubject;
use YooKassa\Model\ReceiptItem;
use YooKassa\Model\Recipient;
use YooKassa\Request\Payments\CreatePaymentRequestBuilder;
use YooKassa\Request\Payments\Payment\CreateCaptureRequestBuilder;
class CreatePaymentRequestBuilderTest extends TestCase
{
/**
* @param null $testingProperty
* @param null $paymentType
* @return array
* @throws Exception
*/
protected function getRequiredData($testingProperty = null, $paymentType = null)
{
$result = array();
if ($testingProperty === 'accountId' || $testingProperty === 'gatewayId') {
if ($testingProperty !== 'accountId') {
$result['accountId'] = Random::str(1, 32);
}
if ($testingProperty !== 'gatewayId') {
$result['gatewayId'] = Random::str(1, 32);
}
}
if ($testingProperty !== 'amount') {
$result['amount'] = Random::int(1, 100);
}
if ($testingProperty !== 'paymentToken') {
if ($paymentType !== null) {
$result[$paymentType] = Random::str(36);
} else {
$result['paymentToken'] = Random::str(36);
}
}
return $result;
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetAccountId($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getRecipient());
$builder->setAccountId($options['accountId']);
$instance = $builder->build($this->getRequiredData('accountId'));
if ($options['accountId'] === null || $options['accountId'] === '') {
self::assertNull($instance->getRecipient());
} else {
self::assertNotNull($instance->getRecipient());
self::assertEquals($options['accountId'], $instance->getRecipient()->getAccountId());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetDeal($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setAmount($options['amount']);
$builder->setDeal($options['deal']);
$instance = $builder->build();
if (empty($options['deal'])) {
self::assertNull($instance->getDeal());
} else {
self::assertNotNull($instance->getDeal());
self::assertEquals($options['deal'], $instance->getDeal()->toArray());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetFraudData($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setAmount($options['amount']);
$builder->setFraudData($options['fraud_data']);
$instance = $builder->build();
if (empty($options['fraud_data'])) {
self::assertNull($instance->getFraudData());
} else {
self::assertNotNull($instance->getFraudData());
if (is_array($options['fraud_data'])) {
self::assertEquals($options['fraud_data'], $instance->getFraudData()->toArray());
} else {
self::assertEquals($options['fraud_data'], $instance->getFraudData());
}
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetProductGroupId($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getRecipient());
$builder->setGatewayId($options['gatewayId']);
$instance = $builder->build($this->getRequiredData('gatewayId'));
if (empty($options['gatewayId'])) {
self::assertNull($instance->getRecipient());
} else {
self::assertNotNull($instance->getRecipient());
self::assertEquals($options['gatewayId'], $instance->getRecipient()->getGatewayId());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetAmount($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNotNull($instance->getAmount());
$builder->setAmount($options['amount']);
$instance = $builder->build($this->getRequiredData('amount'));
if ($options['amount'] instanceof AmountInterface) {
self::assertEquals($options['amount']->getValue(), $instance->getAmount()->getValue());
} else {
self::assertEquals($options['amount'], $instance->getAmount()->getValue());
}
$builder->setAmount(10000)->setAmount($options['amount']);
$instance = $builder->build($this->getRequiredData('amount'));
if ($options['amount'] instanceof AmountInterface) {
self::assertEquals($options['amount']->getValue(), $instance->getAmount()->getValue());
} else {
self::assertEquals($options['amount'], $instance->getAmount()->getValue());
}
if (!($options['amount'] instanceof AmountInterface)) {
$builder->setAmount(array(
'value' => $options['amount'],
'currency' => 'EUR',
));
$instance = $builder->build($this->getRequiredData('amount'));
self::assertEquals($options['amount'], $instance->getAmount()->getValue());
}
}
/**
* @expectedException InvalidArgumentException
* @dataProvider invalidAmountDataProvider
*
* @param $value
*/
public function testSetInvalidAmount($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setAmount($value);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetCurrency($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNotNull($instance->getAmount());
self::assertEquals(CurrencyCode::RUB, $instance->getAmount()->getCurrency());
$builder->setReceiptItems($options['receiptItems']);
$builder->setCurrency($options['currency']);
$builder->setReceiptEmail($options['receiptEmail']);
$instance = $builder->build($this->getRequiredData());
self::assertEquals($options['currency'], $instance->getAmount()->getCurrency());
if (!empty($options['receiptItems'])) {
foreach ($instance->getReceipt()->getItems() as $item) {
self::assertEquals($options['currency'], $item->getPrice()->getCurrency());
}
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetReceiptItems($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptItems($options['receiptItems']);
$builder->setReceiptEmail($options['receiptEmail']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['receiptItems'])) {
self::assertNull($instance->getReceipt());
} else {
self::assertNotNull($instance->getReceipt());
self::assertEquals(count($options['receiptItems']), count($instance->getReceipt()->getItems()));
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testAddReceiptItems($options)
{
$builder = new CreatePaymentRequestBuilder();
foreach ($options['receiptItems'] as $item) {
if ($item instanceof ReceiptItem) {
$builder->addReceiptItem(
$item->getDescription(),
$item->getPrice()->getValue(),
$item->getQuantity(),
$item->getVatCode(),
$item->getPaymentMode(),
$item->getPaymentSubject()
);
} else {
$builder->addReceiptItem(
$item['title'],
$item['price'],
$item['quantity'],
$item['vatCode'],
$item['paymentMode'],
$item['paymentSubject']
);
}
}
$builder->setReceiptEmail($options['receiptEmail']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['receiptItems'])) {
self::assertNull($instance->getReceipt());
} else {
self::assertNotNull($instance->getReceipt());
self::assertEquals(count($options['receiptItems']), count($instance->getReceipt()->getItems()));
foreach ($instance->getReceipt()->getItems() as $item) {
self::assertFalse($item->isShipping());
}
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testAddReceiptShipping($options)
{
$builder = new CreatePaymentRequestBuilder();
foreach ($options['receiptItems'] as $item) {
if ($item instanceof ReceiptItem) {
$builder->addReceiptShipping(
$item->getDescription(),
$item->getPrice()->getValue(),
$item->getVatCode()
);
} else {
$builder->addReceiptShipping($item['title'], $item['price'], $item['vatCode']);
}
}
$builder->setReceiptEmail($options['receiptEmail']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['receiptItems'])) {
self::assertNull($instance->getReceipt());
} else {
self::assertNotNull($instance->getReceipt());
self::assertEquals(count($options['receiptItems']), count($instance->getReceipt()->getItems()));
foreach ($instance->getReceipt()->getItems() as $item) {
self::assertTrue($item->isShipping());
}
}
}
/**
* @dataProvider invalidItemsDataProvider
* @expectedException InvalidArgumentException
*
* @param $items
*/
public function testSetInvalidReceiptItems($items)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptItems($items);
}
public function invalidItemsDataProvider()
{
return array(
array(
array(
array(
'price' => 1,
'quantity' => 1.4,
'vatCode' => 3,
),
),
),
array(
array(
array(
'title' => 'test',
'quantity' => 1.4,
'vatCode' => 3,
),
),
),
array(
array(
array(
'description' => 'test',
'quantity' => 1.4,
'vatCode' => 3,
),
),
),
array(
array(
array(
'title' => 'test',
'price' => 123,
'quantity' => 1.4,
'vatCode' => 15,
),
),
),
array(
array(
array(
'description' => 'test',
'price' => 123,
'quantity' => -1.4,
),
),
),
array(
array(
array(
'title' => 'test',
'price' => 1,
'vatCode' => 7,
),
),
),
);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetReceiptEmail($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptItems($options['receiptItems']);
$builder->setReceiptEmail($options['receiptEmail']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['receiptItems'])) {
self::assertNull($instance->getReceipt());
} else {
self::assertNotNull($instance->getReceipt());
self::assertEquals($options['receiptEmail'], $instance->getReceipt()->getCustomer()->getEmail());
}
}
/**
* @dataProvider invalidEmailDataProvider
* @expectedException InvalidArgumentException
*
* @param $value
*/
public function testSetInvalidEmail($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptEmail($value);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetReceiptPhone($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptItems($options['receiptItems']);
$builder->setReceiptEmail($options['receiptEmail']);
$builder->setReceiptPhone($options['receiptPhone']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['receiptItems'])) {
self::assertNull($instance->getReceipt());
} else {
self::assertNotNull($instance->getReceipt());
self::assertEquals($options['receiptPhone'], $instance->getReceipt()->getCustomer()->getPhone());
}
}
/**
* @dataProvider invalidPhoneDataProvider
* @expectedException \InvalidArgumentException
*
* @param $value
*/
public function testSetInvalidPhone($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptPhone($value);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetReceiptTaxSystemCode($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptItems($options['receiptItems']);
$builder->setReceiptEmail($options['receiptEmail']);
$builder->setTaxSystemCode($options['taxSystemCode']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['receiptItems'])) {
self::assertNull($instance->getReceipt());
} else {
self::assertNotNull($instance->getReceipt());
self::assertEquals($options['taxSystemCode'], $instance->getReceipt()->getTaxSystemCode());
}
}
/**
* @dataProvider invalidVatIdDataProvider
* @expectedException InvalidArgumentException
*
* @param $value
*/
public function testSetInvalidTaxSystemId($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setTaxSystemCode($value);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetReceiptIndustryDetails($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptItems($options['receiptItems']);
$builder->setReceiptEmail($options['receiptEmail']);
$builder->setReceiptIndustryDetails($options['receiptIndustryDetails']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['receiptItems'])) {
self::assertNull($instance->getReceipt());
} else {
self::assertNotNull($instance->getReceipt());
self::assertEquals($options['receiptIndustryDetails'], $instance->getReceipt()->getReceiptIndustryDetails());
}
}
/**
* @dataProvider invalidReceiptIndustryDetailsDataProvider
* @expectedException InvalidArgumentException
*
* @param $value
*/
public function testSetInvalidReceiptIndustryDetails($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptIndustryDetails($value);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetReceiptOperationalDetails($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptItems($options['receiptItems']);
$builder->setReceiptEmail($options['receiptEmail']);
$builder->setReceiptOperationalDetails($options['receiptOperationalDetails']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['receiptItems'])) {
self::assertNull($instance->getReceipt());
} else {
self::assertNotNull($instance->getReceipt());
self::assertEquals($options['receiptOperationalDetails'], $instance->getReceipt()->getReceiptOperationalDetails());
}
}
/**
* @dataProvider invalidReceiptOperationalDetailsDataProvider
* @expectedException InvalidArgumentException
*
* @param $value
*/
public function testSetInvalidReceiptOperationalDetails($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceiptOperationalDetails($value);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetPaymentToken($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData(null, 'paymentMethodId'));
self::assertNull($instance->getPaymentToken());
self::assertNull($instance->paymentToken);
self::assertNull($instance->payment_token);
if (empty($options['paymentToken'])) {
$buildData = $this->getRequiredData(null, 'paymentMethodId');
} else {
$buildData = $this->getRequiredData('paymentToken');
}
$builder->setPaymentToken($options['paymentToken']);
$instance = $builder->build($buildData);
if (empty($options['paymentToken'])) {
self::assertNull($instance->getPaymentToken());
self::assertNull($instance->paymentToken);
self::assertNull($instance->payment_token);
} else {
self::assertEquals($options['paymentToken'], $instance->getPaymentToken());
self::assertEquals($options['paymentToken'], $instance->paymentToken);
self::assertEquals($options['paymentToken'], $instance->payment_token);
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetPaymentMethodId($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getPaymentMethodId());
$builder->setPaymentMethodId($options['paymentMethodId']);
$instance = $builder->build($this->getRequiredData(empty($options['paymentMethodId']) ? null : 'paymentToken'));
if (empty($options['paymentMethodId'])) {
self::assertNull($instance->getPaymentMethodId());
} else {
self::assertEquals($options['paymentMethodId'], $instance->getPaymentMethodId());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetPaymentData($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getPaymentMethodData());
$builder->setPaymentMethodData($options['paymentMethodData']);
$instance = $builder->build($this->getRequiredData(empty($options['paymentMethodId']) ? null : 'paymentToken'));
if (empty($options['paymentMethodData'])) {
self::assertNull($instance->getPaymentMethodData());
} else {
if (is_object($options['paymentMethodData'])) {
self::assertSame($options['paymentMethodData'], $instance->getPaymentMethodData());
} elseif (is_string($options['paymentMethodData'])) {
self::assertEquals($options['paymentMethodData'], $instance->getPaymentMethodData()->getType());
} else {
self::assertEquals($options['paymentMethodData']['type'], $instance->getPaymentMethodData()->getType());
}
}
if (is_array($options['paymentMethodData'])) {
$builder = new CreatePaymentRequestBuilder();
$builder->build($this->getRequiredData());
$builder->setPaymentMethodData($options['paymentMethodData']['type'], $options['paymentMethodData']);
$instance = $builder->build($this->getRequiredData(empty($options['paymentMethodId']) ? null : 'paymentToken'));
self::assertEquals($options['paymentMethodData']['type'], $instance->getPaymentMethodData()->getType());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetConfirmationAttributes($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getConfirmation());
$builder->setConfirmation($options['confirmation']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['confirmation'])) {
self::assertNull($instance->getConfirmation());
} else {
if (is_object($options['confirmation'])) {
self::assertSame($options['confirmation'], $instance->getConfirmation());
} elseif (is_string($options['confirmation'])) {
self::assertEquals($options['confirmation'], $instance->getConfirmation()->getType());
} else {
self::assertEquals($options['confirmation']['type'], $instance->getConfirmation()->getType());
self::assertEquals($options['confirmation']['locale'], $instance->getConfirmation()->getLocale());
}
}
if (is_array($options['confirmation'])) {
$builder = new CreatePaymentRequestBuilder();
$builder->build($this->getRequiredData());
$builder->setConfirmation($options['confirmation']['type'], $options['confirmation']);
$instance = $builder->build($this->getRequiredData());
self::assertEquals($options['confirmation']['type'], $instance->getConfirmation()->getType());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetCreateRecurring($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getSavePaymentMethod());
$builder->setSavePaymentMethod($options['savePaymentMethod']);
$instance = $builder->build($this->getRequiredData());
if ($options['savePaymentMethod'] === null || $options['savePaymentMethod'] === '') {
self::assertNull($instance->getSavePaymentMethod());
} else {
self::assertEquals($options['savePaymentMethod'], $instance->getSavePaymentMethod());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetCapture($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getCapture());
$builder->setCapture($options['capture']);
$instance = $builder->build($this->getRequiredData());
if ($options['capture'] === null || $options['capture'] === '') {
self::assertNull($instance->getCapture());
} else {
self::assertEquals($options['capture'], $instance->getCapture());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetClientIp($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getClientIp());
$builder->setClientIp($options['clientIp']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['clientIp'])) {
self::assertNull($instance->getClientIp());
} else {
self::assertEquals($options['clientIp'], $instance->getClientIp());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetMetadata($options)
{
$builder = new CreatePaymentRequestBuilder();
$instance = $builder->build($this->getRequiredData());
self::assertNull($instance->getMetadata());
$builder->setMetadata($options['metadata']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['metadata'])) {
self::assertNull($instance->getMetadata());
} else {
self::assertEquals($options['metadata'], $instance->getMetadata()->toArray());
}
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetRecipient($options)
{
$recipient = new Recipient();
$recipient->setAccountId($options['accountId']);
$recipient->setGatewayId($options['gatewayId']);
$builder = new CreatePaymentRequestBuilder();
$builder->setRecipient($recipient);
$instance = $builder->build($this->getRequiredData());
self::assertEquals($recipient, $instance->getRecipient());
$builder = new CreatePaymentRequestBuilder();
$builder->setRecipient(array(
'account_id' => $options['accountId'],
'gateway_id' => $options['gatewayId'],
));
$instance = $builder->build($this->getRequiredData());
self::assertEquals($recipient, $instance->getRecipient());
}
/**
* @dataProvider invalidRecipientDataProvider
* @expectedException InvalidArgumentException
*
* @param mixed $value
*/
public function testSetInvalidRecipient($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setRecipient($value);
}
public function invalidRecipientDataProvider()
{
return array(
array(null),
array(true),
array(false),
array(1),
array(1.1),
array('test'),
array(new \stdClass()),
);
}
/**
* @throws Exception
*/
public function testSetReceipt()
{
$receipt = array(
'tax_system_code' => Random::int(1, 6),
'customer' => array(
'email' => Random::str(10),
'phone' => Random::str(4, 15, '0123456789'),
),
'items' => array(
array(
'description' => 'test',
'quantity' => 123,
'amount' => array(
'value' => 321,
'currency' => 'USD',
),
'vat_code' => Random::int(1, 6),
'payment_subject' => PaymentSubject::COMMODITY,
'payment_mode' => PaymentMode::PARTIAL_PREPAYMENT,
),
),
);
$builder = new CreatePaymentRequestBuilder();
$builder->setReceipt($receipt);
$instance = $builder->build($this->getRequiredData());
self::assertEquals($receipt['tax_system_code'], $instance->getReceipt()->getTaxSystemCode());
self::assertEquals($receipt['customer']['email'], $instance->getReceipt()->getCustomer()->getEmail());
self::assertEquals($receipt['customer']['phone'], $instance->getReceipt()->getCustomer()->getPhone());
self::assertEquals(1, count($instance->getReceipt()->getItems()));
$receipt = $instance->getReceipt();
$builder = new CreatePaymentRequestBuilder();
$builder->setReceipt($instance->getReceipt());
$instance = $builder->build($this->getRequiredData());
self::assertEquals($receipt['tax_system_code'], $instance->getReceipt()->getTaxSystemCode());
self::assertEquals($receipt['customer']['email'], $instance->getReceipt()->getCustomer()->getEmail());
self::assertEquals($receipt['customer']['phone'], $instance->getReceipt()->getCustomer()->getPhone());
self::assertEquals(1, count($instance->getReceipt()->getItems()));
}
/**
* @dataProvider invalidReceiptDataProvider
* @expectedException InvalidArgumentException
*
* @param mixed $value
*/
public function testSetInvalidReceipt($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setReceipt($value);
}
public function invalidReceiptDataProvider()
{
return array(
array(null),
array(true),
array(false),
array(1),
array(1.1),
array('test'),
array(new \stdClass()),
);
}
/**
* @return array
* @throws Exception
*/
public function validDataProvider()
{
$receiptItem = new ReceiptItem();
$receiptItem->setPrice(new MonetaryAmount(1));
$receiptItem->setQuantity(1);
$receiptItem->setDescription('test');
$receiptItem->setVatCode(3);
$result = array(
array(
array(
'accountId' => Random::str(1, 32),
'gatewayId' => Random::str(1, 32),
'recipient' => null,
'description' => null,
'amount' => new MonetaryAmount(Random::int(1, 1000)),
'currency' => Random::value(CurrencyCode::getValidValues()),
'receiptItems' => array(),
'paymentToken' => null,
'paymentMethodId' => null,
'paymentMethodData' => null,
'confirmation' => null,
'savePaymentMethod' => null,
'capture' => null,
'clientIp' => null,
'metadata' => null,
'receiptEmail' => null,
'receiptPhone' => null,
'taxSystemCode' => null,
'deal' => array(
'id' => Random::str(36, 50),
'settlements' => array(
array(
'type' => SettlementPayoutPaymentType::PAYOUT,
'amount' => array(
'value' => round(Random::float(10.00, 100.00), 2),
'currency' => Random::value(CurrencyCode::getValidValues()),
),
)
)
),
'fraud_data' => null,
'receiptIndustryDetails' => null,
'receiptOperationalDetails' => null,
),
),
array(
array(
'accountId' => Random::str(1, 32),
'gatewayId' => Random::str(1, 32),
'recipient' => null,
'description' => '',
'amount' => new MonetaryAmount(Random::int(1, 1000)),
'currency' => Random::value(CurrencyCode::getValidValues()),
'receiptItems' => array(
array(
'title' => 'test',
'quantity' => mt_rand(1, 100),
'price' => mt_rand(1, 100),
'vatCode' => mt_rand(1, 6),
'paymentMode' => PaymentMode::CREDIT_PAYMENT,
'paymentSubject' => PaymentSubject::ANOTHER,
),
$receiptItem,
),
'referenceId' => '',
'paymentToken' => '',
'paymentMethodId' => '',
'paymentMethodData' => '',
'confirmation' => '',
'savePaymentMethod' => '',
'capture' => '',
'clientIp' => '',
'metadata' => array(),
'receiptEmail' => Random::str(10, 32),
'receiptPhone' => '',
'taxSystemCode' => '',
'deal' => array(
'id' => Random::str(36, 50),
'settlements' => array(),
),
'fraud_data' => new FraudData(array(
'id' => Random::str(11, 15, '0123456789'),
)),
'receiptIndustryDetails' => '',
'receiptOperationalDetails' => '',
),
),
);
$paymentMethodData = array(
new PaymentDataQiwi(),
PaymentMethodType::BANK_CARD,
array(
'type' => PaymentMethodType::BANK_CARD,
),
);
$confirmationStatuses = array(
new ConfirmationAttributesExternal(),
ConfirmationType::EXTERNAL,
array(
'type' => ConfirmationType::EXTERNAL,
'locale' => 'en_US',
),
array(
'type' => ConfirmationType::QR,
'locale' => 'ru_RU',
),
);
for ($i = 0; $i < 10; $i++) {
$request = array(
'accountId' => uniqid('', true),
'gatewayId' => uniqid('', true),
'recipient' => new Recipient(),
'description' => uniqid('', true),
'amount' => mt_rand(1, 100000),
'currency' => CurrencyCode::RUB,
'receiptItems' => array(),
'referenceId' => uniqid('', true),
'paymentToken' => uniqid('', true),
'paymentMethodId' => uniqid('', true),
'paymentMethodData' => isset($paymentMethodData[$i]) ? $paymentMethodData[$i] : null,
'confirmation' => isset($confirmationStatuses[$i]) ? $confirmationStatuses[$i] : null,
'savePaymentMethod' => (bool)mt_rand(0, 1),
'capture' => (bool)mt_rand(0, 1),
'clientIp' => long2ip(mt_rand(0, 2 ** 32)),
'metadata' => array('test' => 'test'),
'receiptEmail' => Random::str(10),
'receiptPhone' => Random::str(10, '0123456789'),
'taxSystemCode' => Random::int(1, 6),
'receiptIndustryDetails' => array(
array(
'federal_id' => Random::str(1, 255),
'document_date' => date(IndustryDetails::DOCUMENT_DATE_FORMAT),
'document_number' => Random::str(1, IndustryDetails::DOCUMENT_NUMBER_MAX_LENGTH),
'value' => Random::str(1, IndustryDetails::VALUE_MAX_LENGTH),
),
),
'receiptOperationalDetails' => array(
'operation_id' => Random::int(0, OperationalDetails::OPERATION_ID_MAX_LENGTH),
'value' => Random::str(1, OperationalDetails::VALUE_MAX_LENGTH),
'created_at' => date(YOOKASSA_DATE),
),
'deal' => array(
'id' => Random::str(36, 50),
'settlements' => array(
array(
'type' => SettlementPayoutPaymentType::PAYOUT,
'amount' => array(
'value' => round(Random::float(10.00, 100.00), 2),
'currency' => Random::value(CurrencyCode::getValidValues()),
),
)
)
),
'fraud_data' => array(
'id' => Random::str(11, 15, '0123456789'),
),
);
$result[] = array($request);
}
return $result;
}
/**
* @return array
*/
public function invalidAmountDataProvider()
{
return array(
array(-1),
array(true),
array(false),
array(new \stdClass()),
array(0),
);
}
/**
* @return array
*/
public function invalidEmailDataProvider()
{
return array(
array(array()),
array(true),
array(false),
array(new \stdClass()),
);
}
/**
* @return array
* @throws Exception
*/
public function invalidPhoneDataProvider()
{
return array(
array(new \stdClass()),
array(array()),
array(true),
array(false),
);
}
/**
* @return array
* @throws Exception
*/
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)),
);
}
/**
* @return array
* @throws Exception
*/
public function invalidReceiptIndustryDetailsDataProvider()
{
return array(
array(new \stdClass()),
array(
array(
new \stdClass(),
new \stdClass(),
)
),
array(true),
array(Random::str(1, 100)),
);
}
public function invalidReceiptOperationalDetailsDataProvider()
{
return array(
array(new \stdClass()),
array(true),
array(Random::str(1, 100)),
);
}
/**
* @dataProvider validDataProvider
*
* @param $options
* @throws Exception
*/
public function testSetDescription($options)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setDescription($options['description']);
$instance = $builder->build($this->getRequiredData());
if (empty($options['description'])) {
self::assertNull($instance->getDescription());
} else {
self::assertEquals($options['description'], $instance->getDescription());
}
}
/**
* @expectedException InvalidArgumentException
*/
public function testSetInvalidTypeDescription()
{
$builder = new CreatePaymentRequestBuilder();
$builder->setDescription(true);
}
/**
* @expectedException InvalidArgumentException
*/
public function testSetInvalidLengthDescription()
{
$builder = new CreatePaymentRequestBuilder();
$description = Random::str(Payment::MAX_LENGTH_DESCRIPTION + 1);
$builder->setDescription($description);
}
/**
* @dataProvider invalidVatIdDataProvider
* @expectedException InvalidArgumentException
*
* @param $value
*/
public function testSetInvalidAirline($value)
{
if (is_array($value)) {
throw new \InvalidArgumentException();
}
$builder = new CreatePaymentRequestBuilder();
$builder->setAirline($value);
}
/**
* @return array
* @throws Exception
*/
public function invalidDealDataProvider()
{
return array(
array(true),
array(false),
array(new \stdClass()),
array(0),
array(7),
array(Random::int(-100, -1)),
array(Random::int(7, 100)),
);
}
/**
* @dataProvider invalidDealDataProvider
* @expectedException InvalidArgumentException
* @param $value
*/
public function testSetInvalidDeal($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setDeal($value);
}
/**
* @return array
* @throws Exception
*/
public function invalidFraudDataProvider()
{
return array(
array(true),
array(false),
array(new \stdClass()),
array(0),
array(7),
array(Random::int(-100, -1)),
array(Random::int(7, 100)),
);
}
/**
* @dataProvider invalidFraudDataProvider
* @expectedException InvalidArgumentException
* @param $value
*/
public function testSetInvalidFraudData($value)
{
$builder = new CreatePaymentRequestBuilder();
$builder->setFraudData($value);
}
}