![]() 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/dev/tests/integration/testsuite/Magento/PageCache/Model/Layout/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\PageCache\Model\Layout; use Magento\Framework\View\EntitySpecificHandlesList; class MergeTest extends \PHPUnit\Framework\TestCase { /** * @magentoAppArea frontend */ public function testLoadEntitySpecificHandleWithEsiBlock() { $this->expectException(\LogicException::class); $this->expectExceptionMessage('Handle \'default\' must not contain blocks with \'ttl\' attribute specified'); $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); // Mock cache to avoid layout being read from existing cache $cacheMock = $this->createMock(\Magento\Framework\Cache\FrontendInterface::class); /** @var \Magento\Framework\View\Model\Layout\Merge $layoutMerge */ $layoutMerge = $objectManager->create( \Magento\Framework\View\Model\Layout\Merge::class, ['cache' => $cacheMock] ); /** @var EntitySpecificHandlesList $entitySpecificHandleList */ $entitySpecificHandleList = $objectManager->get(EntitySpecificHandlesList::class); // Add 'default' handle, which has declarations of blocks with ttl, to the list of entity specific handles. // This allows to simulate a situation, when block with ttl attribute // is declared e.g. in 'catalog_product_view_id_1' handle $entitySpecificHandleList->addHandle('default'); $layoutMerge->load(['default']); } }