mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-25 01:28:03 +00:00
130 lines
3.8 KiB
PHP
130 lines
3.8 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;
|
||
|
||
use PHPUnit\Framework\TestCase;
|
||
use YooKassa\Model\Leg;
|
||
|
||
class LegTest extends TestCase
|
||
{
|
||
/**
|
||
* @dataProvider validDataProvider
|
||
*
|
||
* @param $data
|
||
*/
|
||
public function testGettersSetters($data)
|
||
{
|
||
$leg = new Leg();
|
||
$leg->setDepartureAirport($data["departure_airport"]);
|
||
$leg->setDestinationAirport($data["destination_airport"]);
|
||
$leg->setDepartureDate($data["departure_date"]);
|
||
|
||
self::assertEquals($data["departure_airport"], $leg->getDepartureAirport());
|
||
self::assertEquals($data["destination_airport"], $leg->getDestinationAirport());
|
||
self::assertEquals($data["departure_date"], $leg->getDepartureDate());
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
*
|
||
* @param $data
|
||
*/
|
||
public function testDepartureAirportValidate($data)
|
||
{
|
||
$leg = new Leg();
|
||
|
||
$this->setExpectedException($data['exception']);
|
||
|
||
$leg->setDepartureAirport($data['value']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
*
|
||
* @param $data
|
||
*/
|
||
public function testDestinationAirportValidate($data)
|
||
{
|
||
$leg = new Leg();
|
||
|
||
$this->setExpectedException($data['exception']);
|
||
|
||
$leg->setDestinationAirport($data['value']);
|
||
}
|
||
|
||
/**
|
||
* @dataProvider invalidDataProvider
|
||
*
|
||
* @param $data
|
||
*/
|
||
public function testDepartureDateValidate($data)
|
||
{
|
||
$leg = new Leg();
|
||
|
||
$this->setExpectedException($data['exception']);
|
||
|
||
$leg->setDepartureDate($data['value']);
|
||
}
|
||
|
||
public function validDataProvider()
|
||
{
|
||
return array(
|
||
array(
|
||
array(
|
||
"departure_airport" => "LED",
|
||
"destination_airport" => "AMS",
|
||
"departure_date" => "2018-06-20",
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
"departure_airport" => "UGR",
|
||
"destination_airport" => "IVA",
|
||
"departure_date" => "2018-06-21",
|
||
),
|
||
),
|
||
);
|
||
}
|
||
|
||
public function invalidDataProvider()
|
||
{
|
||
return array(
|
||
array(
|
||
array(
|
||
"exception" => 'YooKassa\Common\Exceptions\InvalidPropertyValueTypeException',
|
||
"value" => array(),
|
||
),
|
||
),
|
||
array(
|
||
array(
|
||
"exception" => 'YooKassa\Common\Exceptions\InvalidPropertyValueException',
|
||
"value" => 'stringThatGreaterThanNeededCharsLongAndActuallyNotValidAtAll123',
|
||
),
|
||
),
|
||
);
|
||
}
|
||
}
|