![]() 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-customer/Test/Unit/Model/Address/Validator/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Customer\Test\Unit\Model\Address\Validator; use Magento\Customer\Model\Address; use Magento\Customer\Model\Address\Validator\Customer as CustomerValidator; use Magento\Customer\Model\AddressFactory; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Quote\Model\Quote\Address as QuoteAddress; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * Test for Magento\Customer\Model\Address\Validator\Customer class. */ class CustomerTest extends TestCase { /** @var AddressFactory|MockObject */ private $addressFactoryMock; /** @var CustomerValidator */ private $model; /** * @inheritDoc */ protected function setUp(): void { $this->addressFactoryMock = $this->createMock(AddressFactory::class); $objectManager = new ObjectManager($this); $this->model = $objectManager->getObject( CustomerValidator::class, [ 'addressFactory' => $this->addressFactoryMock, ] ); } /** * @return void */ public function testValidateNewCustomerWithNewCustomerAddress(): void { $addressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $addressMock->expects($this->once())->method('getId')->willReturn(null); $addressMock->expects($this->never())->method('getCustomerId'); $this->assertEmpty($this->model->validate($addressMock)); } /** * @return void */ public function testValidateNewCustomerWithExistingCustomerAddress(): void { $addressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $originalAddressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'load', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $addressMock->expects($this->once())->method('getId')->willReturn(1); $addressMock->expects($this->once())->method('getCustomerId')->willReturn(null); $this->addressFactoryMock->expects($this->once())->method('create')->willReturn($originalAddressMock); $originalAddressMock->expects($this->once()) ->method('load') ->with(1) ->willReturn($originalAddressMock); $originalAddressMock->expects($this->once())->method('getCustomerId')->willReturn(2); $this->assertEquals( [ __( 'Provided customer ID "%customer_id" isn\'t related to current customer address.', ['customer_id' => null] ) ], $this->model->validate($addressMock) ); } /** * @return void */ public function testValidateExistingCustomerWithNewCustomerAddress(): void { $addressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $addressMock->expects($this->once())->method('getId')->willReturn(null); $addressMock->expects($this->never())->method('getCustomerId'); $this->assertEmpty($this->model->validate($addressMock)); } /** * @return void */ public function testValidateExistingCustomerWithRelevantCustomerAddress(): void { $addressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $originalAddressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'load', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $addressMock->expects($this->once())->method('getId')->willReturn(1); $this->addressFactoryMock->expects($this->once())->method('create')->willReturn($originalAddressMock); $originalAddressMock->expects($this->once()) ->method('load') ->with(1) ->willReturn($originalAddressMock); $addressMock->expects($this->once())->method('getCustomerId')->willReturn(1); $originalAddressMock->expects($this->once())->method('getCustomerId')->willReturn(1); $this->assertEmpty($this->model->validate($addressMock)); } /** * @return void */ public function testValidateExistingCustomerAddressWithNotRelevantCustomer(): void { $addressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $originalAddressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'load', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $addressMock->expects($this->once())->method('getId')->willReturn(1); $this->addressFactoryMock->expects($this->once())->method('create')->willReturn($originalAddressMock); $originalAddressMock->expects($this->once()) ->method('load') ->with(1) ->willReturn($originalAddressMock); $addressMock->expects($this->once())->method('getCustomerId')->willReturn(2); $originalAddressMock->expects($this->once())->method('getCustomerId')->willReturn(1); $this->assertEquals( [ __( 'Provided customer ID "%customer_id" isn\'t related to current customer address.', ['customer_id' => 2] ) ], $this->model->validate($addressMock) ); } /** * @return void */ public function testValidateExistingCustomerWithQuoteAddress(): void { $addressMock = $this->getMockBuilder(QuoteAddress::class) ->onlyMethods(['getCustomerAddressId', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $originalAddressMock = $this->getMockBuilder(Address::class) ->onlyMethods(['getId', 'load', 'getCustomerId']) ->disableOriginalConstructor() ->getMock(); $addressMock->expects($this->once())->method('getCustomerAddressId')->willReturn(1); $addressMock->expects($this->once())->method('getCustomerId')->willReturn(1); $this->addressFactoryMock->expects($this->once())->method('create')->willReturn($originalAddressMock); $originalAddressMock->expects($this->once()) ->method('load') ->with(1) ->willReturn($originalAddressMock); $addressMock->expects($this->once())->method('getCustomerId')->willReturn(1); $originalAddressMock->expects($this->once())->method('getCustomerId')->willReturn(1); $this->assertEmpty($this->model->validate($addressMock)); } }