mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-24 18:48:03 +00:00
2db9951ff6
Информация про чеки самозанятых в платежах и возвратах удалена - больше не поддерживаем сервисы для самозанятых Добавлена возможность выставления счета по смс и email Добавлена поддержка работы со списками выплат Обновлен Copyright
276 lines
8.5 KiB
PHP
276 lines
8.5 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\Refunds;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\Refund\RefundStatus;
|
||
use YooKassa\Request\Refunds\RefundsRequest;
|
||
use YooKassa\Request\Refunds\RefundsRequestBuilder;
|
||
|
||
/**
|
||
* RefundsRequestBuilderTest
|
||
*
|
||
* @category ClassTest
|
||
* @author cms@yoomoney.ru
|
||
* @link https://yookassa.ru/developers/api
|
||
*/
|
||
class RefundsRequestBuilderTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testSetPaymentId(mixed $options): void
|
||
{
|
||
$builder = new RefundsRequestBuilder();
|
||
|
||
$instance = $builder->build();
|
||
self::assertNull($instance->getPaymentId());
|
||
|
||
$builder->setPaymentId($options['paymentId']);
|
||
$instance = $builder->build();
|
||
if (empty($options['paymentId'])) {
|
||
self::assertNull($instance->getPaymentId());
|
||
} else {
|
||
self::assertEquals($options['paymentId'], $instance->getPaymentId());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testSetCreateAtGte(mixed $options): void
|
||
{
|
||
$builder = new RefundsRequestBuilder();
|
||
|
||
$instance = $builder->build();
|
||
self::assertNull($instance->getCreatedAtGte());
|
||
|
||
$builder->setCreatedAtGte($options['createAtGte']);
|
||
$instance = $builder->build();
|
||
if (empty($options['createAtGte'])) {
|
||
self::assertNull($instance->getCreatedAtGte());
|
||
} else {
|
||
self::assertEquals($options['createAtGte'], $instance->getCreatedAtGte()->format(YOOKASSA_DATE));
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testSetCreateAtGt(mixed $options): void
|
||
{
|
||
$builder = new RefundsRequestBuilder();
|
||
|
||
$instance = $builder->build();
|
||
self::assertNull($instance->getCreatedAtGt());
|
||
|
||
$builder->setCreatedAtGt($options['createAtGt']);
|
||
$instance = $builder->build();
|
||
if (empty($options['createAtGt'])) {
|
||
self::assertNull($instance->getCreatedAtGt());
|
||
} else {
|
||
self::assertEquals($options['createAtGt'], $instance->getCreatedAtGt()->format(YOOKASSA_DATE));
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testSetCreateAtLte(mixed $options): void
|
||
{
|
||
$builder = new RefundsRequestBuilder();
|
||
|
||
$instance = $builder->build();
|
||
self::assertNull($instance->getCreatedAtLte());
|
||
|
||
$builder->setCreatedAtLte($options['createAtLte']);
|
||
$instance = $builder->build();
|
||
if (empty($options['createAtLte'])) {
|
||
self::assertNull($instance->getCreatedAtLte());
|
||
} else {
|
||
self::assertEquals($options['createAtLte'], $instance->getCreatedAtLte()->format(YOOKASSA_DATE));
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testSetCreateAtLt(mixed $options): void
|
||
{
|
||
$builder = new RefundsRequestBuilder();
|
||
|
||
$instance = $builder->build();
|
||
self::assertNull($instance->getCreatedAtLt());
|
||
|
||
$builder->setCreatedAtLt($options['createAtLt']);
|
||
$instance = $builder->build();
|
||
if (empty($options['createAtLt'])) {
|
||
self::assertNull($instance->getCreatedAtLt());
|
||
} else {
|
||
self::assertEquals($options['createAtLt'], $instance->getCreatedAtLt()->format(YOOKASSA_DATE));
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testSetStatus(mixed $options): void
|
||
{
|
||
$builder = new RefundsRequestBuilder();
|
||
|
||
$instance = $builder->build();
|
||
self::assertNull($instance->getStatus());
|
||
|
||
$builder->setStatus($options['status']);
|
||
$instance = $builder->build();
|
||
if (empty($options['status'])) {
|
||
self::assertNull($instance->getStatus());
|
||
} else {
|
||
self::assertEquals($options['status'], $instance->getStatus());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testSetCursor(mixed $options): void
|
||
{
|
||
$builder = new RefundsRequestBuilder();
|
||
|
||
$instance = $builder->build();
|
||
self::assertNull($instance->getCursor());
|
||
|
||
$builder->setCursor($options['cursor']);
|
||
$instance = $builder->build();
|
||
if (empty($options['cursor'])) {
|
||
self::assertNull($instance->getCursor());
|
||
} else {
|
||
self::assertEquals($options['cursor'], $instance->getCursor());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param mixed $options
|
||
*/
|
||
public function testSetLimit(mixed $options): void
|
||
{
|
||
$builder = new RefundsRequestBuilder();
|
||
|
||
$instance = $builder->build();
|
||
self::assertNull($instance->getLimit());
|
||
|
||
$builder->setLimit($options['limit']);
|
||
$instance = $builder->build();
|
||
if (empty($options['limit'])) {
|
||
self::assertNull($instance->getLimit());
|
||
} else {
|
||
self::assertEquals($options['limit'], $instance->getLimit());
|
||
}
|
||
}
|
||
|
||
public function validDataProvider(): array
|
||
{
|
||
$result = [
|
||
[
|
||
[
|
||
'paymentId' => null,
|
||
'createAtGte' => null,
|
||
'createAtGt' => null,
|
||
'createAtLte' => null,
|
||
'createAtLt' => null,
|
||
'status' => '',
|
||
'cursor' => null,
|
||
'limit' => 1,
|
||
],
|
||
],
|
||
[
|
||
[
|
||
'paymentId' => '',
|
||
'createAtGte' => '',
|
||
'createAtGt' => '',
|
||
'createAtLte' => '',
|
||
'createAtLt' => '',
|
||
'status' => '',
|
||
'cursor' => '',
|
||
'limit' => null,
|
||
],
|
||
],
|
||
];
|
||
$statuses = RefundStatus::getValidValues();
|
||
for ($i = 0; $i < 10; $i++) {
|
||
$request = [
|
||
'paymentId' => $this->randomString(),
|
||
'createAtGte' => date(YOOKASSA_DATE, Random::int(1, time())),
|
||
'createAtGt' => date(YOOKASSA_DATE, Random::int(1, time())),
|
||
'createAtLte' => date(YOOKASSA_DATE, Random::int(1, time())),
|
||
'createAtLt' => date(YOOKASSA_DATE, Random::int(1, time())),
|
||
'status' => $statuses[Random::int(0, count($statuses) - 1)],
|
||
'cursor' => uniqid('', true),
|
||
'limit' => Random::int(1, RefundsRequest::MAX_LIMIT_VALUE),
|
||
];
|
||
$result[] = [$request];
|
||
}
|
||
|
||
return $result;
|
||
}
|
||
|
||
private function randomString($any = true): string
|
||
{
|
||
static $chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-+_.';
|
||
|
||
$result = '';
|
||
for ($i = 0; $i < 36; $i++) {
|
||
if ($any) {
|
||
$char = chr(Random::int(32, 126));
|
||
} else {
|
||
$rnd = Random::int(0, strlen($chars) - 1);
|
||
$char = $chars[$rnd];
|
||
}
|
||
$result .= $char;
|
||
}
|
||
|
||
return $result;
|
||
}
|
||
}
|