b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / vendor / magento / framework / TestFramework / Unit / Block /
Filename/home/dev2.destoffenstraat.com/vendor/magento/framework/TestFramework/Unit/Block/Adminhtml.php
Size7.65 kb
Permissionrw-r--r--
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified07-Jan-2021 21:08
Last accessed23-Aug-2025 03:56
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
* Framework for testing Block_Adminhtml code
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*
* Number of fields is necessary because of the number of fields used by multiple layers
* of parent classes.
*
*/
namespace Magento\Framework\TestFramework\Unit\Block;

/**
* @SuppressWarnings(PHPMD.TooManyFields)
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class Adminhtml extends \PHPUnit\Framework\TestCase
{
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_designMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_sessionMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_sidResolver;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_translatorMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_layoutMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_requestMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_messagesMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_urlMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_eventManagerMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_controllerMock;

/**
* @var \Magento\Backend\Block\Template\Context
*/
protected $_context;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_loggerMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_filesystemMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_cacheMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_scopeConfigMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Store\Model\StoreManager
*/
protected $_storeManagerMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\Math\Random
*/
protected $_mathMock;

/**
* @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\Data\Form\FormKey
*/
protected $_formKey;

/**
*/
protected function setUp(): void
{
// These mocks are accessed via context
$this->_designMock = $this->_makeMock(\Magento\Framework\View\DesignInterface::class);
$this->_sessionMock = $this->_makeMock(\Magento\Framework\Session\Generic::class);
$this->_sidResolver = $this->_makeMock(\Magento\Framework\Session\SidResolver::class);
$this->_translatorMock = $this->_makeMock(\Magento\Framework\TranslateInterface::class);
$this->_layoutMock = $this->_makeMock(\Magento\Framework\View\Layout::class);
$this->_requestMock = $this->_makeMock(\Magento\Framework\App\RequestInterface::class);
$this->_messagesMock = $this->_makeMock(\Magento\Framework\View\Element\Messages::class);
$this->_urlMock = $this->_makeMock(\Magento\Framework\UrlInterface::class);
$this->_eventManagerMock = $this->_makeMock(\Magento\Framework\Event\ManagerInterface::class);
$this->_controllerMock = $this->_makeMock(\Magento\Framework\App\FrontController::class);
$this->_loggerMock = $this->_makeMock(\Psr\Log\LoggerInterface::class);
$this->_filesystemMock = $this->_makeMock(\Magento\Framework\Filesystem::class);
$this->_cacheMock = $this->_makeMock(\Magento\Framework\App\CacheInterface::class);
$this->_scopeConfigMock = $this->_makeMock(\Magento\Framework\App\Config\ScopeConfigInterface::class);
$this->_storeManagerMock = $this->_makeMock(\Magento\Store\Model\StoreManager::class);
$assetRepoMock = $this->_makeMock(\Magento\Framework\View\Asset\Repository::class);
$viewConfigMock = $this->_makeMock(\Magento\Framework\View\ConfigInterface::class);
$viewFileSystemMock = $this->_makeMock(\Magento\Framework\View\FileSystem::class);
$templatePoolMock = $this->_makeMock(\Magento\Framework\View\TemplateEnginePool::class);
$authorizationMock = $this->_makeMock(\Magento\Framework\AuthorizationInterface::class);
$cacheStateMock = $this->_makeMock(\Magento\Framework\App\Cache\StateInterface::class);
$escaperMock = $this->_makeMock(\Magento\Framework\Escaper::class);
$filterManagerMock = $this->_makeMock(\Magento\Framework\Filter\FilterManager::class);
$backendSessionMock = $this->_makeMock(\Magento\Backend\Model\Session::class);
$appState = $this->_makeMock(\Magento\Framework\App\State::class);
$this->_mathMock = $this->_makeMock(\Magento\Framework\Math\Random::class);
$this->_formKey = $this->_makeMock(\Magento\Framework\Data\Form\FormKey::class);

$appState->setAreaCode(\Magento\Backend\App\Area\FrontNameResolver::AREA_CODE);

$this->_translatorMock->expects(
$this->any()
)->method(
'translate'
)->willReturnCallback(
[$this, 'translateCallback']
);

$this->_context = new \Magento\Backend\Block\Template\Context(
$this->_requestMock,
$this->_layoutMock,
$this->_eventManagerMock,
$this->_urlMock,
$this->_translatorMock,
$this->_cacheMock,
$this->_designMock,
$this->_sessionMock,
$this->_sidResolver,
$this->_scopeConfigMock,
$this->_controllerMock,
$assetRepoMock,
$viewConfigMock,
$cacheStateMock,
$this->_loggerMock,
$escaperMock,
$filterManagerMock,
$this->_filesystemMock,
$viewFileSystemMock,
$templatePoolMock,
$appState,
$this->_storeManagerMock,
$authorizationMock,
$backendSessionMock,
$this->_mathMock,
$this->_formKey
);
}

/**
* Generates a mocked object
*
* @param string $className
* @return \PHPUnit_Framework_MockObject_MockObject
*/
protected function _makeMock($className)
{
return $this->getMockBuilder($className)->disableOriginalConstructor()->getMock();
}

/**
* Sets up a stubbed method with specified behavior and expectations
*
* @param \PHPUnit_Framework_MockObject_MockObject $object
* @param string $stubName
* @param mixed $return
* @param \PHPUnit\Framework\MockObject\Matcher\InvokedCount|null $expects
*
* @return \PHPUnit\Framework\MockObject\Builder\InvocationMocker
*/
protected function _setStub(
\PHPUnit\Framework\MockObject\MockObject $object,
$stubName,
$return = null,
$expects = null
) {
$expects = isset($expects) ? $expects : $this->any();
$return = isset($return) ? $this->returnValue($return) : $this->returnSelf();

return $object->expects($expects)->method($stubName)->will($return);
}

/**
* Return the English text passed into the translate method
*
* @param array $args
* @return mixed
*/
public function translateCallback($args)
{
return $args[0]->getText();
}
}