![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/DB/Test/Unit/ |
<?php declare(strict_types=1); /** * \Magento\Framework\DB\Profiler test case * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ 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); } }