Files
yookassa-sdk-php/tests/Model/PosLink/PosLinkPaymentTest.php
Александра Д. Спиридонова 7a7f5cafa8 Добавлена поддержка платежных табличек pos_links. Добавлены loan_declined, loan_declined_by_payer, loan_application_expired в причинах отмены платежа
Добавлено поле `metadata` в сохраненных методах оплаты
Увеличено максимальное значение числа цифр параметра `oktmo` в данных платежных поручений `PaymentOrder`
2026-08-12 16:21:33 +03:00

180 lines
5.4 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\Model\PosLink;
use DateTime;
use Exception;
use Tests\YooKassa\AbstractTestCase;
use YooKassa\Model\PosLink\PosLinkPayment;
/**
* PosLinkPaymentTest
*
* @category ClassTest
* @author cms@yoomoney.ru
* @link https://yookassa.ru/developers/api
*/
class PosLinkPaymentTest extends AbstractTestCase
{
protected PosLinkPayment $object;
/**
* @return PosLinkPayment
*/
protected function getTestInstance(): PosLinkPayment
{
return new PosLinkPayment();
}
/**
* @return void
*/
public function testPosLinkPaymentClassExists(): void
{
$this->object = $this->getMockBuilder(PosLinkPayment::class)->getMockForAbstractClass();
$this->assertTrue(class_exists(PosLinkPayment::class));
$this->assertInstanceOf(PosLinkPayment::class, $this->object);
}
/**
* Test property "id"
* @dataProvider validIdDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testId(mixed $value): void
{
$instance = $this->getTestInstance();
$instance->setId($value);
self::assertNotNull($instance->getId());
self::assertNotNull($instance->id);
self::assertEquals($value, $instance->getId());
self::assertEquals($value, $instance->id);
}
/**
* Test invalid property "id"
* @dataProvider invalidIdDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidId(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setId($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validIdDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_id'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidIdDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_id'));
}
/**
* Test property "expires_at"
* @dataProvider validExpiresAtDataProvider
* @param mixed $value
*
* @return void
* @throws Exception
*/
public function testExpiresAt(mixed $value): void
{
$instance = $this->getTestInstance();
self::assertEmpty($instance->getExpiresAt());
self::assertEmpty($instance->expires_at);
$instance->setExpiresAt($value);
if (!empty($value)) {
self::assertNotNull($instance->getExpiresAt());
self::assertNotNull($instance->expires_at);
if ($value instanceof Datetime) {
self::assertEquals($value, $instance->getExpiresAt());
self::assertEquals($value, $instance->expires_at);
} else {
self::assertEquals(new Datetime($value), $instance->getExpiresAt());
self::assertEquals(new Datetime($value), $instance->expires_at);
}
}
}
/**
* Test invalid property "expires_at"
* @dataProvider invalidExpiresAtDataProvider
* @param mixed $value
* @param string $exceptionClass
*
* @return void
*/
public function testInvalidExpiresAt(mixed $value, string $exceptionClass): void
{
$instance = $this->getTestInstance();
$this->expectException($exceptionClass);
$instance->setExpiresAt($value);
}
/**
* @return array[]
* @throws Exception
*/
public function validExpiresAtDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_expires_at'));
}
/**
* @return array[]
* @throws Exception
*/
public function invalidExpiresAtDataProvider(): array
{
$instance = $this->getTestInstance();
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_expires_at'));
}
}