mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-31 12:38:44 +00:00
136 lines
4.7 KiB
PHP
136 lines
4.7 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\Model\Notification;
|
||
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\ConfirmationType;
|
||
use YooKassa\Model\CurrencyCode;
|
||
use YooKassa\Model\Notification\NotificationWaitingForCapture;
|
||
use YooKassa\Model\NotificationEventType;
|
||
use YooKassa\Model\NotificationType;
|
||
use YooKassa\Model\PaymentInterface;
|
||
use YooKassa\Model\PaymentMethodType;
|
||
use YooKassa\Model\ReceiptRegistrationStatus;
|
||
use YooKassa\Model\PaymentStatus;
|
||
|
||
class NotificationWaitingForCaptureTest extends AbstractNotificationTest
|
||
{
|
||
/**
|
||
* @param array $source
|
||
* @return NotificationWaitingForCapture
|
||
*/
|
||
protected function getTestInstance(array $source)
|
||
{
|
||
return new NotificationWaitingForCapture($source);
|
||
}
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
protected function getExpectedType()
|
||
{
|
||
return NotificationType::NOTIFICATION;
|
||
}
|
||
|
||
/**
|
||
* @return string
|
||
*/
|
||
protected function getExpectedEvent()
|
||
{
|
||
return NotificationEventType::PAYMENT_WAITING_FOR_CAPTURE;
|
||
}
|
||
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
* @param array $value
|
||
*/
|
||
public function testGetObject(array $value)
|
||
{
|
||
$instance = $this->getTestInstance($value);
|
||
self::assertTrue($instance->getObject() instanceof PaymentInterface);
|
||
self::assertEquals($value['object']['id'], $instance->getObject()->getId());
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
$result = array();
|
||
$statuses = PaymentStatus::getValidValues();
|
||
$receiptRegistrations = ReceiptRegistrationStatus::getValidValues();
|
||
|
||
$confirmations = array(
|
||
array(
|
||
'type' => ConfirmationType::REDIRECT,
|
||
'confirmation_url' => Random::str(10),
|
||
'return_url' => Random::str(10),
|
||
'enforce' => false,
|
||
),
|
||
array(
|
||
'type' => ConfirmationType::EXTERNAL,
|
||
),
|
||
);
|
||
|
||
for ($i = 0; $i < 10; $i++) {
|
||
$payment = array(
|
||
'id' => Random::str(36),
|
||
'status' => Random::value($statuses),
|
||
'recipient' => array(
|
||
'account_id' => Random::str(1, 64, '0123456789'),
|
||
'gateway_id' => Random::str(1, 256),
|
||
),
|
||
'amount' => array(
|
||
'value' => Random::float(0.01, 1000000.0),
|
||
'currency' => Random::value(CurrencyCode::getValidValues()),
|
||
),
|
||
'payment_method' => array(
|
||
'type' => PaymentMethodType::QIWI,
|
||
),
|
||
'created_at' => date(YOOKASSA_DATE, Random::int(1, time())),
|
||
'captured_at' => date(YOOKASSA_DATE, Random::int(1, time())),
|
||
'confirmation' => Random::value($confirmations),
|
||
'refunded' => array(
|
||
'value' => Random::float(0.01, 1000000.0),
|
||
'currency' => Random::value(CurrencyCode::getValidValues()),
|
||
),
|
||
'paid' => $i % 2 ? true : false,
|
||
'refundable' => $i % 2 ? true : false,
|
||
'receipt_registration' => Random::value($receiptRegistrations),
|
||
'metadata' => array(
|
||
'value' => Random::float(0.01, 1000000.0),
|
||
'currency' => Random::str(1, 256),
|
||
),
|
||
);
|
||
$result[] = array(
|
||
array(
|
||
'type' => $this->getExpectedType(),
|
||
'event' => $this->getExpectedEvent(),
|
||
'object' => $payment,
|
||
),
|
||
);
|
||
}
|
||
return $result;
|
||
}
|
||
}
|