/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/DB/Test/Unit/ProfilerTest.php
69 строк
2 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php declare(strict_types=1); /** * \Magento\Framework\DB\Profiler test case * * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Framework\DB\Test\Unit; use Magento\Framework\DB\Profiler; use PHPUnit\Framework\TestCase; class ProfilerTest extends TestCase { /** * Profiler instance for test * @var \Magento\Framework\DB\Profiler */ protected $_profiler; /** * Setup */ protected function setUp(): void { $this->_profiler = new Profiler(true); } public function testSetHost() { $this->markTestSkipped('Skipped in #27500 due to testing protected/private methods and properties'); $this->_profiler->setHost('localhost'); $this->assertAttributeEquals('localhost', '_host', $this->_profiler); } public function testSetType() { $this->markTestSkipped('Skipped in #27500 due to testing protected/private methods and properties'); $this->_profiler->setType('mysql'); $this->assertAttributeEquals('mysql', '_type', $this->_profiler); } public function testQueryStart() { $lastQueryId = $this->_profiler->queryStart('SELECT * FROM table'); $this->assertEquals(0, $lastQueryId); } public function testQueryEnd() { $this->markTestSkipped('Skipped in #27500 due to testing protected/private methods and properties'); $lastQueryId = $this->_profiler->queryStart('SELECT * FROM table'); $endResult = $this->_profiler->queryEnd($lastQueryId); $this->assertAttributeEquals(null, '_lastQueryId', $this->_profiler); $this->assertEquals(Profiler::STORED, $endResult); } public function testQueryEndLast() { $this->markTestSkipped('Skipped in #27500 due to testing protected/private methods and properties'); $this->_profiler->queryStart('SELECT * FROM table'); $endResult = $this->_profiler->queryEndLast(); $this->assertAttributeEquals(null, '_lastQueryId', $this->_profiler); $this->assertEquals(Profiler::STORED, $endResult); $endResult = $this->_profiler->queryEndLast(); $this->assertEquals(Profiler::IGNORED, $endResult); } }