/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Config/Test/Unit/DataTest.php
112 строк
3 KB
Manish Ranjan
AC-16248: PHPUnit 12 Upgrade | Fix Framework unit tests
09 янв 2026, 19:35
09 янв 2026, 19:35
de6cafc
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Config\Test\Unit; use Magento\Framework\Config\CacheInterface; use Magento\Framework\Config\Data; use Magento\Framework\Config\ReaderInterface; use Magento\Framework\Serialize\SerializerInterface; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class DataTest extends TestCase { /** * @var ReaderInterface|MockObject */ private $readerMock; /** * @var CacheInterface|MockObject */ private $cacheMock; /** * @var SerializerInterface|MockObject */ private $serializerMock; protected function setUp(): void { $this->readerMock = $this->createMock(ReaderInterface::class); $this->cacheMock = $this->createMock(CacheInterface::class); $this->serializerMock = $this->createMock(SerializerInterface::class); } public function testGetConfigNotCached() { $data = ['a' => 'b']; $cacheId = 'test'; $this->cacheMock->expects($this->once()) ->method('load') ->willReturn(false); $this->readerMock->expects($this->once()) ->method('read') ->willReturn($data); $this->serializerMock->expects($this->once()) ->method('serialize') ->with($data); $config = new Data( $this->readerMock, $this->cacheMock, $cacheId, $this->serializerMock ); $this->assertEquals($data, $config->get()); $this->assertEquals('b', $config->get('a')); $this->assertNull($config->get('a/b')); $this->assertEquals(33, $config->get('a/b', 33)); } public function testGetConfigCached() { $data = ['a' => 'b']; $serializedData = '{"a":"b"}'; $cacheId = 'test'; $this->cacheMock->expects($this->once()) ->method('load') ->willReturn($serializedData); $this->readerMock->expects($this->never()) ->method('read'); $this->serializerMock->expects($this->once()) ->method('unserialize') ->with($serializedData) ->willReturn($data); $config = new Data( $this->readerMock, $this->cacheMock, $cacheId, $this->serializerMock ); $this->assertEquals($data, $config->get()); $this->assertEquals('b', $config->get('a')); } public function testReset() { $serializedData = ''; $cacheId = 'test'; $this->cacheMock->expects($this->once()) ->method('load') ->willReturn($serializedData); $this->serializerMock->expects($this->once()) ->method('unserialize') ->with($serializedData) ->willReturn([]); $this->cacheMock->expects($this->once()) ->method('remove') ->with($cacheId); $config = new Data( $this->readerMock, $this->cacheMock, $cacheId, $this->serializerMock ); $config->reset(); } }