![]() 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-theme/Test/Unit/Block/Html/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Theme\Test\Unit\Block\Html; use Magento\Framework\App\Config; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\View\Element\Template\Context; use Magento\Store\Model\ScopeInterface; use Magento\Theme\Block\Html\Header; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; use Magento\Framework\Escaper; class HeaderTest extends TestCase { /** * @var Header */ protected $unit; /** * @var MockObject */ protected $scopeConfig; /** * @var Escaper|MockObject */ private $escaper; protected function setUp(): void { $context = $this->getMockBuilder(Context::class) ->setMethods(['getScopeConfig']) ->disableOriginalConstructor() ->getMock(); $this->scopeConfig = $this->getMockBuilder(Config::class) ->setMethods(['getValue']) ->disableOriginalConstructor() ->getMock(); $context->expects($this->once())->method('getScopeConfig')->willReturn($this->scopeConfig); $this->escaper = $this->createPartialMock(Escaper::class, ['escapeQuote']); $this->unit = (new ObjectManager($this))->getObject( Header::class, [ 'context' => $context, 'escaper' => $this->escaper ] ); } public function testGetWelcomeDefault() { $this->scopeConfig->expects($this->once())->method('getValue') ->with('design/header/welcome', ScopeInterface::SCOPE_STORE) ->willReturn('Welcome Message'); $this->escaper->expects($this->once()) ->method('escapeQuote') ->with('Welcome Message', true) ->willReturn('Welcome Message'); $this->assertEquals('Welcome Message', $this->unit->getWelcome()); } }