mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-03 22:18:59 +00:00
135 lines
4.9 KiB
PHP
135 lines
4.9 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\Deals;
|
||
|
||
use DateTime;
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\Deal\DealStatus;
|
||
use YooKassa\Model\SafeDeal;
|
||
use YooKassa\Request\Deals\DealsRequest;
|
||
use YooKassa\Request\Deals\DealsRequestSerializer;
|
||
|
||
class DealsRequestSerializerTest extends TestCase
|
||
{
|
||
private $fieldMap = array(
|
||
'createdAtGte' => 'created_at.gte',
|
||
'createdAtGt' => 'created_at.gt',
|
||
'createdAtLte' => 'created_at.lte',
|
||
'createdAtLt' => 'created_at.lt',
|
||
'expiresAtGte' => 'expires_at.gte',
|
||
'expiresAtGt' => 'expires_at.gt',
|
||
'expiresAtLte' => 'expires_at.lte',
|
||
'expiresAtLt' => 'expires_at.lt',
|
||
'status' => 'status',
|
||
'fullTextSearch' => 'full_text_search',
|
||
'limit' => 'limit',
|
||
'cursor' => 'cursor',
|
||
);
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param $options
|
||
*/
|
||
public function testSerialize($options)
|
||
{
|
||
$serializer = new DealsRequestSerializer();
|
||
$data = $serializer->serialize(DealsRequest::builder()->build($options));
|
||
|
||
$expected = array();
|
||
foreach ($this->fieldMap as $field => $mapped) {
|
||
if (isset($options[$field])) {
|
||
$value = $options[$field];
|
||
if (!empty($value)) {
|
||
$expected[$mapped] = $value instanceof DateTime ? $value->format(YOOKASSA_DATE) : $value;
|
||
}
|
||
}
|
||
}
|
||
self::assertEquals($expected, $data);
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
$result = array(
|
||
array(
|
||
array(),
|
||
),
|
||
array(
|
||
array(
|
||
'createdAtGte' => '',
|
||
'createdAtGt' => '',
|
||
'createdAtLte' => '',
|
||
'createdAtLt' => '',
|
||
'expiresAtGte' => '',
|
||
'expiresAtGt' => '',
|
||
'expiresAtLte' => '',
|
||
'expiresAtLt' => '',
|
||
'fullTextSearch' => '',
|
||
'status' => '',
|
||
'limit' => 0,
|
||
'cursor' => '',
|
||
),
|
||
),
|
||
);
|
||
$statuses = DealStatus::getValidValues();
|
||
for ($i = 0; $i < 10; $i++) {
|
||
$request = array(
|
||
'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())),
|
||
'expiresAtGte' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'expiresAtGt' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'expiresAtLte' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'expiresAtLt' => date(YOOKASSA_DATE, mt_rand(1, time())),
|
||
'fullTextSearch' => Random::str(DealsRequest::MIN_LENGTH_DESCRIPTION, SafeDeal::MAX_LENGTH_DESCRIPTION),
|
||
'status' => $statuses[mt_rand(0, count($statuses) - 1)],
|
||
'limit' => mt_rand(1, 100),
|
||
'cursor' => $this->randomString(mt_rand(2, 30)),
|
||
);
|
||
$result[] = array($request);
|
||
}
|
||
return $result;
|
||
}
|
||
|
||
private function randomString($length, $any = true)
|
||
{
|
||
static $chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-+_.';
|
||
|
||
$result = '';
|
||
for ($i = 0; $i < $length; $i++) {
|
||
if ($any) {
|
||
$char = chr(mt_rand(32, 126));
|
||
} else {
|
||
$rnd = mt_rand(0, strlen($chars) - 1);
|
||
$char = substr($chars, $rnd, 1);
|
||
}
|
||
$result .= $char;
|
||
}
|
||
return $result;
|
||
}
|
||
}
|