mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-31 04:28:23 +00:00
115 lines
4.4 KiB
PHP
115 lines
4.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\Request\Receipts;
|
||
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\ReceiptRegistrationStatus;
|
||
use YooKassa\Model\RefundStatus;
|
||
use YooKassa\Request\Receipts\ReceiptsRequest;
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Request\Receipts\ReceiptsRequestSerializer;
|
||
|
||
class ReceiptsRequestSerializerTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $value
|
||
*/
|
||
public function testSerialize($value)
|
||
{
|
||
$serializer = new ReceiptsRequestSerializer();
|
||
$instance = ReceiptsRequest::builder()->build($value);
|
||
$data = $serializer->serialize($instance);
|
||
|
||
$expected = array();
|
||
|
||
if (!empty($value)) {
|
||
$expected = array(
|
||
'payment_id' => $value['paymentId'],
|
||
'refund_id' => $value['refundId'],
|
||
'status' => $value['status'],
|
||
'limit' => $value['limit'],
|
||
'cursor' => $value['cursor']
|
||
);
|
||
|
||
if (!empty($value['createdAtLt'])) {
|
||
$expected['created_at.lt'] = $value['createdAtLt'];
|
||
}
|
||
|
||
if (!empty($value['createdAtGt'])) {
|
||
$expected['created_at.gt'] = $value['createdAtGt'];
|
||
}
|
||
|
||
if (!empty($value['createdAtLte'])) {
|
||
$expected['created_at.lte'] = $value['createdAtLte'];
|
||
}
|
||
|
||
if (!empty($value['createdAtGte'])) {
|
||
$expected['created_at.gte'] = $value['createdAtGte'];
|
||
}
|
||
}
|
||
|
||
self::assertEquals($expected, $data);
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
$result = array(
|
||
array(
|
||
array(
|
||
'paymentId' => '216749da-000f-50be-b000-096747fad91e',
|
||
'refundId' => '216749f7-0016-50be-b000-078d43a63ae4',
|
||
'status' => RefundStatus::SUCCEEDED,
|
||
'limit' => 100,
|
||
'cursor' => '37a5c87d-3984-51e8-a7f3-8de646d39ec15',
|
||
'createdAtGte' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'createdAtGt' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'createdAtLte' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'createdAtLt' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
)
|
||
),
|
||
array(
|
||
array()
|
||
)
|
||
);
|
||
for ($i = 0; $i < 8; $i++) {
|
||
$receipts = array(
|
||
'paymentId' => Random::str(36),
|
||
'refundId' => Random::str(36),
|
||
'createdAtGte' => ($i == 0 ? null : ($i == 1 ? '' : date(YOOKASSA_DATE, mt_rand(1, time())))),
|
||
'createdAtGt' => ($i == 0 ? null : ($i == 1 ? '' : date(YOOKASSA_DATE, mt_rand(1, time())))),
|
||
'createdAtLte' => ($i == 0 ? null : ($i == 1 ? '' : date(YOOKASSA_DATE, mt_rand(1, time())))),
|
||
'createdAtLt' => ($i == 0 ? null : ($i == 1 ? '' : date(YOOKASSA_DATE, mt_rand(1, time())))),
|
||
'status' => Random::value(ReceiptRegistrationStatus::getValidValues()),
|
||
'cursor' => uniqid(),
|
||
'limit' => mt_rand(1, ReceiptsRequest::MAX_LIMIT_VALUE),
|
||
);
|
||
$result[] = array($receipts);
|
||
}
|
||
return $result;
|
||
}
|
||
}
|