142 lines
4.6 KiB
PHP
Executable File
142 lines
4.6 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
|
|
namespace Magento\Customer\Block\Address;
|
|
|
|
use Magento\TestFramework\Helper\Bootstrap;
|
|
|
|
/**
|
|
* Integration tests for the \Magento\Customer\Block\Address\Grid class
|
|
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
|
|
*/
|
|
class GridTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @var \Magento\Framework\View\LayoutInterface
|
|
*/
|
|
private $layout;
|
|
|
|
/**
|
|
* @var \Magento\Customer\Helper\Session\CurrentCustomer
|
|
*/
|
|
protected $currentCustomer;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject $blockMock */
|
|
$blockMock = $this->getMockBuilder(
|
|
\Magento\Framework\View\Element\BlockInterface::class
|
|
)->disableOriginalConstructor()->setMethods(
|
|
['setTitle', 'toHtml']
|
|
)->getMock();
|
|
$blockMock->expects($this->any())->method('setTitle');
|
|
|
|
$this->currentCustomer = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
|
|
->get(\Magento\Customer\Helper\Session\CurrentCustomer::class);
|
|
$this->layout = Bootstrap::getObjectManager()->get(\Magento\Framework\View\LayoutInterface::class);
|
|
$this->layout->setBlock('head', $blockMock);
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
$objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
|
|
/** @var \Magento\Customer\Model\CustomerRegistry $customerRegistry */
|
|
$customerRegistry = $objectManager->get(\Magento\Customer\Model\CustomerRegistry::class);
|
|
// Cleanup customer from registry
|
|
$customerRegistry->remove(1);
|
|
}
|
|
|
|
/**
|
|
* @magentoDataFixture Magento/Customer/_files/customer.php
|
|
* @magentoAppIsolation enabled
|
|
*/
|
|
public function testGetAddressEditUrl()
|
|
{
|
|
$gridBlock = $this->createBlockForCustomer(1);
|
|
|
|
$this->assertEquals(
|
|
'http://localhost/index.php/customer/address/edit/id/1/',
|
|
$gridBlock->getAddressEditUrl(1)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @magentoDataFixture Magento/Customer/_files/customer.php
|
|
* @magentoDataFixture Magento/Customer/_files/customer_two_addresses.php
|
|
* @magentoAppIsolation enabled
|
|
*/
|
|
public function testGetAdditionalAddresses()
|
|
{
|
|
$gridBlock = $this->createBlockForCustomer(1);
|
|
$this->assertNotNull($gridBlock->getAdditionalAddresses());
|
|
$this->assertCount(1, $gridBlock->getAdditionalAddresses());
|
|
$this->assertInstanceOf(
|
|
\Magento\Customer\Api\Data\AddressInterface::class,
|
|
$gridBlock->getAdditionalAddresses()[0]
|
|
);
|
|
$this->assertEquals(2, $gridBlock->getAdditionalAddresses()[0]->getId());
|
|
}
|
|
|
|
/**
|
|
* @magentoDataFixture Magento/Customer/_files/customer_no_address.php
|
|
* @dataProvider getAdditionalAddressesDataProvider
|
|
* @magentoAppIsolation enabled
|
|
*/
|
|
public function testGetAdditionalAddressesNegative($customerId, $expected)
|
|
{
|
|
$gridBlock = $this->createBlockForCustomer($customerId);
|
|
$this->currentCustomer->setCustomerId($customerId);
|
|
$this->assertEquals($expected, $gridBlock->getAdditionalAddresses());
|
|
}
|
|
|
|
public function getAdditionalAddressesDataProvider()
|
|
{
|
|
return ['5' => [5, []]];
|
|
}
|
|
|
|
/**
|
|
* @magentoDataFixture Magento/Customer/_files/customer_no_address.php
|
|
* @magentoAppIsolation enabled
|
|
*/
|
|
public function testGetAddressHtmlWithoutAddress()
|
|
{
|
|
$gridBlock = $this->createBlockForCustomer(5);
|
|
$this->assertEquals('', $gridBlock->getAddressHtml(null));
|
|
}
|
|
|
|
/**
|
|
* @magentoDataFixture Magento/Customer/_files/customer.php
|
|
* @magentoAppIsolation enabled
|
|
*/
|
|
public function testGetCustomer()
|
|
{
|
|
$gridBlock = $this->createBlockForCustomer(1);
|
|
/** @var CustomerRepositoryInterface $customerRepository */
|
|
$customerRepository = Bootstrap::getObjectManager()->get(
|
|
\Magento\Customer\Api\CustomerRepositoryInterface::class
|
|
);
|
|
$customer = $customerRepository->getById(1);
|
|
$object = $gridBlock->getCustomer();
|
|
$this->assertEquals($customer, $object);
|
|
}
|
|
|
|
/**
|
|
* Create address book block for customer
|
|
*
|
|
* @param int $customerId
|
|
* @return \Magento\Framework\View\Element\BlockInterface
|
|
*/
|
|
private function createBlockForCustomer($customerId)
|
|
{
|
|
$this->currentCustomer->setCustomerId($customerId);
|
|
return $this->layout->createBlock(
|
|
\Magento\Customer\Block\Address\Grid::class,
|
|
'',
|
|
['currentCustomer' => $this->currentCustomer]
|
|
);
|
|
}
|
|
}
|