![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-payment/Test/Unit/Gateway/Data/Order/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Payment\Test\Unit\Gateway\Data\Order; use Magento\Payment\Gateway\Data\AddressAdapterInterface; use Magento\Payment\Gateway\Data\Order\AddressAdapterFactory; use Magento\Payment\Gateway\Data\Order\OrderAdapter; use Magento\Sales\Api\Data\OrderAddressInterface; use Magento\Sales\Api\Data\OrderInterface; use Magento\Sales\Model\Order; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class OrderAdapterTest extends TestCase { /** @var OrderAdapter */ protected $model; /** * @var OrderInterface|MockObject */ protected $orderMock; /** * @var AddressAdapterFactory|MockObject */ protected $addressAdapterFactoryMock; protected function setUp(): void { $this->orderMock = $this->getMockBuilder(Order::class) ->disableOriginalConstructor() ->getMock(); $this->addressAdapterFactoryMock = $this->getMockBuilder(AddressAdapterFactory::class) ->setMethods(['create']) ->disableOriginalConstructor() ->getMock(); $this->model = new OrderAdapter($this->orderMock, $this->addressAdapterFactoryMock); } public function testGetCurrencyCode() { $expected = 'USD'; $this->orderMock->expects($this->once())->method('getBaseCurrencyCode')->willReturn($expected); $this->assertEquals($expected, $this->model->getCurrencyCode()); } public function testGetOrderIncrementId() { $expected = '1'; $this->orderMock->expects($this->once())->method('getIncrementId')->willReturn($expected); $this->assertEquals($expected, $this->model->getOrderIncrementId()); } public function testGetCustomerId() { $expected = 1; $this->orderMock->expects($this->once())->method('getCustomerId')->willReturn($expected); $this->assertEquals($expected, $this->model->getCustomerId()); } public function testGetBillingAddressIsNull() { $this->orderMock->expects($this->once())->method('getBillingAddress')->willReturn(null); $this->assertNull($this->model->getBillingAddress()); } public function testGetBillingAddress() { /** @var AddressAdapterInterface $addressAdapterMock */ $addressAdapterMock = $this->getMockBuilder(AddressAdapterInterface::class) ->getMockForAbstractClass(); /** @var OrderAddressInterface $orderAddressMock */ $orderAddressMock = $this->getMockBuilder(OrderAddressInterface::class) ->getMockForAbstractClass(); $this->addressAdapterFactoryMock->expects($this->once()) ->method('create') ->with(['address' => $orderAddressMock]) ->willReturn($addressAdapterMock); $this->orderMock->expects($this->exactly(2))->method('getBillingAddress')->willReturn($orderAddressMock); $this->assertSame($addressAdapterMock, $this->model->getBillingAddress()); } public function testGetShippingAddressIsNull() { $this->orderMock->expects($this->once())->method('getShippingAddress')->willReturn(null); $this->assertNull($this->model->getShippingAddress()); } public function testGetShippingAddress() { /** @var AddressAdapterInterface $addressAdapterMock */ $addressAdapterMock = $this->getMockBuilder(AddressAdapterInterface::class) ->getMockForAbstractClass(); /** @var OrderAddressInterface $orderAddressMock */ $orderAddressMock = $this->getMockBuilder(OrderAddressInterface::class) ->getMockForAbstractClass(); $this->addressAdapterFactoryMock->expects($this->once()) ->method('create') ->with(['address' => $orderAddressMock]) ->willReturn($addressAdapterMock); $this->orderMock->expects($this->exactly(2))->method('getShippingAddress')->willReturn($orderAddressMock); $this->assertSame($addressAdapterMock, $this->model->getShippingAddress()); } }