| Current Path : /home/rtorresani/www/vendor/magento/framework/App/Test/Unit/Config/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/App/Test/Unit/Config/ScopeCodeResolverTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\App\Test\Unit\Config;
use Magento\Framework\App\Config\ScopeCodeResolver;
use Magento\Framework\App\ScopeInterface;
use Magento\Framework\App\ScopeResolverInterface;
use Magento\Framework\App\ScopeResolverPool;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class ScopeCodeResolverTest extends TestCase
{
/**
* @var ScopeResolverPool|MockObject
*/
private $scopeResolverPool;
/**
* @var ScopeResolverInterface|MockObject
*/
private $scopeResolver;
/**
* @var ScopeInterface|MockObject
*/
private $scope;
/**
* @var ScopeCodeResolver
*/
private $scopeCodeResolver;
protected function setUp(): void
{
$this->scopeResolverPool = $this->getMockBuilder(ScopeResolverPool::class)
->disableOriginalConstructor()
->getMock();
$this->scopeResolver = $this->getMockBuilder(ScopeResolverInterface::class)
->disableOriginalConstructor()
->getMockForAbstractClass();
$this->scope = $this->getMockBuilder(ScopeInterface::class)
->disableOriginalConstructor()
->getMockForAbstractClass();
$this->scopeCodeResolver = new ScopeCodeResolver($this->scopeResolverPool);
}
public function testResolve()
{
$scopeType = 'website';
$scopeCode = 'myWebsite';
$scopeId = 4;
$this->scopeResolverPool->expects($this->once())
->method('get')
->with($scopeType)
->willReturn($this->scopeResolver);
$this->scopeResolver->expects($this->once())
->method('getScope')
->with($scopeId)
->willReturn($this->scope);
$this->scope->expects($this->once())
->method('getCode')
->willReturn($scopeCode);
$this->assertEquals($scopeCode, $this->scopeCodeResolver->resolve($scopeType, $scopeId));
}
}