PerformanceTestBase.php

Same filename and directory in other branches
  1. 11.x core/tests/Drupal/FunctionalJavascriptTests/PerformanceTestBase.php

Namespace

Drupal\FunctionalJavascriptTests

File

core/tests/Drupal/FunctionalJavascriptTests/PerformanceTestBase.php

View source
<?php

declare (strict_types=1);
namespace Drupal\FunctionalJavascriptTests;

use Drupal\Core\Database\Database;
use Drupal\Tests\PerformanceTestTrait;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Collects performance metrics.
 *
 * @ingroup testing
 */
class PerformanceTestBase extends WebDriverTestBase {
    use PerformanceTestTrait;
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'performance_test',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->doSetUpTasks();
    }
    
    /**
     * {@inheritdoc}
     */
    protected function prepareEnvironment() {
        parent::prepareEnvironment();
        $db = Database::getConnection();
        $test_file_name = (new \ReflectionClass($this))->getFileName();
        $is_core_test = str_starts_with($test_file_name, DRUPAL_ROOT . DIRECTORY_SEPARATOR . 'core');
        if ($db->databaseType() !== 'mysql' && $is_core_test) {
            $this->markTestSkipped('Drupal core performance tests only run on MySQL');
        }
    }
    
    /**
     * {@inheritdoc}
     */
    protected function installModulesFromClassProperty(ContainerInterface $container) {
        $this->doInstallModulesFromClassProperty($container);
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getMinkDriverArgs() {
        return $this->doGetMinkDriverArgs();
    }

}

Classes

Title Deprecated Summary
PerformanceTestBase Collects performance metrics.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.