![]() 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/Profiler/Test/Unit/Driver/Standard/Output/ |
<?php declare(strict_types=1); /** * Test class for \Magento\Framework\Profiler\Driver\Standard\Output\Factory * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Profiler\Test\Unit\Driver\Standard\Output; use Magento\Framework\Profiler\Driver\Standard\Output\Factory; use Magento\Framework\Profiler\Driver\Standard\OutputInterface; use PHPUnit\Framework\TestCase; class FactoryTest extends TestCase { /** * @var Factory */ protected $_factory; /** * @var string */ protected $_defaultOutputPrefix = 'Magento_Framework_Profiler_Driver_Standard_Output_Test_'; /** * @var string */ protected $_defaultOutputType = 'default'; protected function setUp(): void { $this->_factory = new Factory( $this->_defaultOutputPrefix, $this->_defaultOutputType ); } public function testConstructor() { $this->markTestSkipped('Skipped in #27500 due to testing protected/private methods and properties'); $this->assertAttributeEquals($this->_defaultOutputPrefix, '_defaultOutputPrefix', $this->_factory); $this->assertAttributeEquals($this->_defaultOutputType, '_defaultOutputType', $this->_factory); } public function testDefaultConstructor() { $this->markTestSkipped('Skipped in #27500 due to testing protected/private methods and properties'); $factory = new Factory(); $this->assertAttributeNotEmpty('_defaultOutputPrefix', $factory); $this->assertAttributeNotEmpty('_defaultOutputType', $factory); } /** * @dataProvider createDataProvider * @param array $configData * @param string $expectedClass */ public function testCreate($configData, $expectedClass) { $driver = $this->_factory->create($configData); $this->assertInstanceOf($expectedClass, $driver); $this->assertInstanceOf(OutputInterface::class, $driver); } /** * @return array */ public function createDataProvider() { $defaultOutputClass = $this->getMockClass( OutputInterface::class, [], [], 'Magento_Framework_Profiler_Driver_Standard_Output_Test_Default' ); $testOutputClass = $this->getMockClass( OutputInterface::class, [], [], 'Magento_Framework_Profiler_Driver_Standard_Output_Test_Test' ); return [ 'Prefix and concrete type' => [['type' => 'test'], $testOutputClass], 'Prefix and default type' => [[], $defaultOutputClass], 'Concrete class' => [['type' => $testOutputClass], $testOutputClass] ]; } public function testCreateUndefinedClass() { $this->expectException('InvalidArgumentException'); $this->expectExceptionMessage( sprintf( 'Cannot create standard driver output, class "%s" doesn\'t exist.', 'Magento_Framework_Profiler_Driver_Standard_Output_Test_Baz' ) ); $this->_factory->create(['type' => 'baz']); } public function testCreateInvalidClass() { $this->expectException('InvalidArgumentException'); $this->expectExceptionMessage( 'Output class "stdClass" must implement \Magento\Framework\Profiler\Driver\Standard\OutputInterface.' ); $this->_factory->create(['type' => 'stdClass']); } }