12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Acl\Test\Unit;
- use Magento\Framework\Acl\Builder;
- class BuilderTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $_aclFactoryMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $_aclMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $_ruleLoader;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $_roleLoader;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $_resourceLoader;
- /**
- * @var \Magento\Framework\Acl\Builder
- */
- protected $_model;
- protected function setUp()
- {
- $this->_aclMock = new \Magento\Framework\Acl();
- $this->_aclFactoryMock = $this->createMock(\Magento\Framework\AclFactory::class);
- $this->_aclFactoryMock->expects($this->any())->method('create')->will($this->returnValue($this->_aclMock));
- $this->_roleLoader = $this->createMock(\Magento\Framework\Acl\Loader\DefaultLoader::class);
- $this->_ruleLoader = $this->createMock(\Magento\Framework\Acl\Loader\DefaultLoader::class);
- $this->_resourceLoader = $this->createMock(\Magento\Framework\Acl\Loader\DefaultLoader::class);
- $this->_model = new \Magento\Framework\Acl\Builder(
- $this->_aclFactoryMock,
- $this->_roleLoader,
- $this->_resourceLoader,
- $this->_ruleLoader
- );
- }
- public function testGetAclUsesLoadersProvidedInConfigurationToPopulateAclIfCacheIsEmpty()
- {
- $this->_ruleLoader->expects($this->once())->method('populateAcl')->with($this->equalTo($this->_aclMock));
- $this->_roleLoader->expects($this->once())->method('populateAcl')->with($this->equalTo($this->_aclMock));
- $this->_resourceLoader->expects($this->once())->method('populateAcl')->with($this->equalTo($this->_aclMock));
- $this->assertEquals($this->_aclMock, $this->_model->getAcl());
- }
- public function testGetAclReturnsAclStoredInCache()
- {
- $this->assertEquals($this->_aclMock, $this->_model->getAcl());
- $this->assertEquals($this->_aclMock, $this->_model->getAcl());
- }
- /**
- * @expectedException \LogicException
- */
- public function testGetAclRethrowsException()
- {
- $this->_aclFactoryMock->expects(
- $this->once()
- )->method(
- 'create'
- )->will(
- $this->throwException(new \InvalidArgumentException())
- );
- $this->_model->getAcl();
- }
- public function testResetRuntimeAcl()
- {
- $this->assertInstanceOf(Builder::class, $this->_model->resetRuntimeAcl());
- }
- }
|