![]() 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/Theme/Model/Config/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Theme\Model\Config; use Magento\Email\Model\Template; /** * Class ValidatorTest to test \Magento\Theme\Model\Design\Config\Validator */ class ValidatorTest extends \PHPUnit\Framework\TestCase { const TEMPLATE_CODE = 'email_exception_fixture'; /** * @var \Magento\Theme\Model\Design\Config\Validator */ private $model; /** * @var \PHPUnit\Framework\MockObject\MockObject */ private $templateFactoryMock; /** * @var \Magento\Email\Model\Template */ private $templateModel; protected function setUp(): void { $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager(); $objectManager->get(\Magento\Framework\App\AreaList::class) ->getArea(\Magento\Backend\App\Area\FrontNameResolver::AREA_CODE) ->load(\Magento\Framework\App\Area::PART_CONFIG); $objectManager->get(\Magento\Framework\App\State::class) ->setAreaCode(\Magento\Backend\App\Area\FrontNameResolver::AREA_CODE); $this->templateFactoryMock = $this->getMockBuilder(\Magento\Framework\Mail\TemplateInterfaceFactory::class) ->disableOriginalConstructor() ->getMock(); $this->templateModel = $objectManager->create(\Magento\Email\Model\Template::class); $this->templateModel->load(self::TEMPLATE_CODE, 'template_code'); $this->templateFactoryMock->expects($this->once()) ->method("create") ->willReturn($this->templateModel); $this->model = $objectManager->create( \Magento\Theme\Model\Design\Config\Validator::class, [ 'templateFactory' => $this->templateFactoryMock ] ); } /** * @magentoDataFixture Magento/Email/Model/_files/email_template.php */ public function testValidateHasRecursiveReference() { $this->expectException(\Magento\Framework\Exception\LocalizedException::class); if (!$this->templateModel->getId()) { $this->fail('Cannot load Template model'); } $fieldConfig = [ 'path' => 'design/email/header_template', 'fieldset' => 'other_settings/email', 'field' => 'email_header_template' ]; $designConfigMock = $this->getMockBuilder(\Magento\Theme\Api\Data\DesignConfigInterface::class) ->disableOriginalConstructor() ->setMethods([]) ->getMock(); $designConfigExtensionMock = $this->getMockBuilder(\Magento\Theme\Api\Data\DesignConfigExtensionInterface::class) ->disableOriginalConstructor() ->setMethods([]) ->getMock(); $designElementMock = $this->getMockBuilder(\Magento\Theme\Model\Data\Design\Config\Data::class) ->disableOriginalConstructor() ->setMethods([]) ->getMock(); $designConfigMock->expects($this->once()) ->method('getExtensionAttributes') ->willReturn($designConfigExtensionMock); $designConfigExtensionMock->expects($this->once()) ->method('getDesignConfigData') ->willReturn([$designElementMock]); $designElementMock->expects($this->any())->method('getFieldConfig')->willReturn($fieldConfig); $designElementMock->expects($this->once())->method('getPath')->willReturn($fieldConfig['path']); $designElementMock->expects($this->once())->method('getValue')->willReturn($this->templateModel->getId()); $this->model->validate($designConfigMock); $this->expectExceptionMessage( 'The "email_header_template" template contains an incorrect configuration, with a reference to itself. ' . 'Remove or change the reference, then try again.' ); } /** * @magentoDataFixture Magento/Email/Model/_files/email_template.php */ public function testValidateNoRecursiveReference() { $this->templateFactoryMock->expects($this->once()) ->method("create") ->willReturn($this->templateModel); $fieldConfig = [ 'path' => 'design/email/footer_template', 'fieldset' => 'other_settings/email', 'field' => 'email_footer_template' ]; $designConfigMock = $this->getMockBuilder(\Magento\Theme\Api\Data\DesignConfigInterface::class) ->disableOriginalConstructor() ->setMethods([]) ->getMock(); $designConfigExtensionMock = $this->getMockBuilder(\Magento\Theme\Api\Data\DesignConfigExtensionInterface::class) ->disableOriginalConstructor() ->setMethods([]) ->getMock(); $designElementMock = $this->getMockBuilder(\Magento\Theme\Model\Data\Design\Config\Data::class) ->disableOriginalConstructor() ->setMethods([]) ->getMock(); $designConfigMock->expects($this->once()) ->method('getExtensionAttributes') ->willReturn($designConfigExtensionMock); $designConfigExtensionMock->expects($this->once()) ->method('getDesignConfigData') ->willReturn([$designElementMock]); $designElementMock->expects($this->any())->method('getFieldConfig')->willReturn($fieldConfig); $designElementMock->expects($this->once())->method('getPath')->willReturn($fieldConfig['path']); $designElementMock->expects($this->once())->method('getValue')->willReturn($this->templateModel->getId()); $this->model->validate($designConfigMock); } }