/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/Test/Unit/ConfigTest.php
91 строка
2 KB
Manish Ranjan
AC-16248: PHPUnit 12 Upgrade | Fix Framework unit tests
09 янв 2026, 19:35
09 янв 2026, 19:35
de6cafc
Код
Авторство
О чём код?
<?php /** * Copyright 2016 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\App\Test\Unit; use Magento\Framework\App\Config; use Magento\Framework\App\Config\ConfigTypeInterface; use Magento\Framework\App\Config\ScopeCodeResolver; use Magento\Framework\App\ScopeInterface; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\TestCase; class ConfigTest extends TestCase { /** * @var ScopeCodeResolver|MockObject */ private $scopeCodeResolver; /** * @var ConfigTypeInterface|MockObject */ private $configType; /** * @var ScopeInterface|MockObject */ private $scope; /** * @var Config */ private $appConfig; protected function setUp(): void { $this->scopeCodeResolver = $this->getMockBuilder(ScopeCodeResolver::class) ->disableOriginalConstructor() ->getMock(); $this->configType = $this->getMockBuilder(ConfigTypeInterface::class) ->getMock(); $this->scope = $this->getMockBuilder(ScopeInterface::class) ->getMock(); $this->appConfig = new Config($this->scopeCodeResolver, ['system' => $this->configType]); } /** * @param string $scope * @param string|null $scopeCode * * @return void */ #[DataProvider('getValueDataProvider')] public function testGetValue($scope, $scopeCode = null) { $path = 'path'; if (!is_string($scope)) { $this->scopeCodeResolver->expects($this->once()) ->method('resolve') ->with('stores', $scopeCode) ->willReturn('myStore'); } elseif (!$scopeCode) { $this->scope->expects($this->once()) ->method('getCode') ->willReturn('myWebsite'); } $this->configType->expects($this->once()) ->method('get') ->with($scope =='store' ? 'stores/path' : 'websites/myWebsite/path') ->willReturn(true); $this->assertTrue($this->appConfig->getValue($path, $scope, $scopeCode ?: $this->scope)); } /** * @return array */ public static function getValueDataProvider() { return [ ['store', 1], ['website'], ]; } }