Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
/**
* Test class for \Magento\Backend\Block\Page\System\Config\Robots\Reset
*/
namespace Magento\Backend\Test\Unit\Block\Page\System\Config\Robots;
use Magento\Backend\Block\Page\System\Config\Robots\Reset;
use Magento\Backend\Block\Template\Context;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use Magento\Framework\View\Helper\SecureHtmlRenderer;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
/**
* @deprecated Original class is deprecated
* @see Reset
*/
class ResetTest extends TestCase
{
/**
* @var Reset
*/
private $_resetRobotsBlock;
/**
* @var ScopeConfigInterface|MockObject
*/
protected $configMock;
protected function setUp(): void
{
$this->configMock = $this->getMockForAbstractClass(ScopeConfigInterface::class);
$objectHelper = new ObjectManager($this);
$objects = [
[
SecureHtmlRenderer::class,
$this->createMock(SecureHtmlRenderer::class)
]
];
$objectHelper->prepareObjectManager($objects);
$context = $objectHelper->getObject(
Context::class,
['scopeConfig' => $this->configMock]
);
$this->_resetRobotsBlock = new Reset($context, []);
}
/**
* @covers \Magento\Backend\Block\Page\System\Config\Robots\Reset::getRobotsDefaultCustomInstructions
*/
public function testGetRobotsDefaultCustomInstructions()
{
$expectedInstructions = 'User-agent: *';
$this->configMock->expects($this->once())->method('getValue')->willReturn($expectedInstructions);
$this->assertEquals($expectedInstructions, $this->_resetRobotsBlock->getRobotsDefaultCustomInstructions());
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
/**
* Test class for \Magento\Backend\Block\Page\System\Config\Robots\Reset
*/
namespace Magento\Backend\Test\Unit\Block\Page\System\Config\Robots;
use Magento\Backend\Block\Page\System\Config\Robots\Reset;
use Magento\Backend\Block\Template\Context;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use Magento\Framework\View\Helper\SecureHtmlRenderer;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
/**
* @deprecated Original class is deprecated
* @see Reset
*/
class ResetTest extends TestCase
{
/**
* @var Reset
*/
private $_resetRobotsBlock;
/**
* @var ScopeConfigInterface|MockObject
*/
protected $configMock;
protected function setUp(): void
{
$this->configMock = $this->getMockForAbstractClass(ScopeConfigInterface::class);
$objectHelper = new ObjectManager($this);
$objects = [
[
SecureHtmlRenderer::class,
$this->createMock(SecureHtmlRenderer::class)
]
];
$objectHelper->prepareObjectManager($objects);
$context = $objectHelper->getObject(
Context::class,
['scopeConfig' => $this->configMock]
);
$this->_resetRobotsBlock = new Reset($context, []);
}
/**
* @covers \Magento\Backend\Block\Page\System\Config\Robots\Reset::getRobotsDefaultCustomInstructions
*/
public function testGetRobotsDefaultCustomInstructions()
{
$expectedInstructions = 'User-agent: *';
$this->configMock->expects($this->once())->method('getValue')->willReturn($expectedInstructions);
$this->assertEquals($expectedInstructions, $this->_resetRobotsBlock->getRobotsDefaultCustomInstructions());
}
}
Function Calls
None |
Stats
MD5 | 074595f3dddcef2751b47e64a02943e3 |
Eval Count | 0 |
Decode Time | 111 ms |