class DrupalKernelTest
Tests Drupal\Core\DrupalKernel.
Attributes
#[CoversClass(DrupalKernel::class)]
#[Group('DrupalKernel')]
  Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait extends \PHPUnit\Framework\TestCase- class \Drupal\Tests\Core\DrupalKernel\DrupalKernelTest extends \Drupal\Tests\UnitTestCase
 
Expanded class hierarchy of DrupalKernelTest
File
- 
              core/tests/ Drupal/ Tests/ Core/ DrupalKernel/ DrupalKernelTest.php, line 21 
Namespace
Drupal\Tests\Core\DrupalKernelView source
class DrupalKernelTest extends UnitTestCase {
  
  /**
   * Tests hostname validation with settings.
   *
   * @legacy-covers ::setupTrustedHosts
   */
  public function testTrustedHosts($host, $server_name, $message, $expected = FALSE) : void {
    $request = new Request();
    $trusted_host_patterns = [
      '^example\\.com$',
      '^.+\\.example\\.com$',
      '^example\\.org',
      '^.+\\.example\\.org',
    ];
    if (!empty($host)) {
      $request->headers
        ->set('HOST', $host);
    }
    $request->server
      ->set('SERVER_NAME', $server_name);
    $method = new \ReflectionMethod('Drupal\\Core\\DrupalKernel', 'setupTrustedHosts');
    $valid_host = $method->invoke(NULL, $request, $trusted_host_patterns);
    $this->assertSame($expected, $valid_host, $message);
    // Reset the trusted hosts because it is statically stored on the request.
    $method->invoke(NULL, $request, []);
    // Reset the request factory because it is statically stored on the request.
    Request::setFactory(NULL);
  }
  
  /**
   * Provides test data for testTrustedHosts().
   */
  public static function providerTestTrustedHosts() {
    $data = [];
    // Tests canonical URL.
    $data[] = [
      'www.example.com',
      'www.example.com',
      'canonical URL is trusted',
      TRUE,
    ];
    // Tests missing hostname for HTTP/1.0 compatibility where the Host
    // header is optional.
    $data[] = [
      NULL,
      'www.example.com',
      'empty Host is valid',
      TRUE,
    ];
    // Tests the additional patterns from the settings.
    $data[] = [
      'example.com',
      'www.example.com',
      'host from settings is trusted',
      TRUE,
    ];
    $data[] = [
      'subdomain.example.com',
      'www.example.com',
      'host from settings is trusted',
      TRUE,
    ];
    $data[] = [
      'www.example.org',
      'www.example.com',
      'host from settings is trusted',
      TRUE,
    ];
    $data[] = [
      'example.org',
      'www.example.com',
      'host from settings is trusted',
      TRUE,
    ];
    // Tests mismatch.
    $data[] = [
      'www.black_hat.com',
      'www.example.com',
      'unspecified host is untrusted',
      FALSE,
    ];
    return $data;
  }
  
  /**
   * Tests site path finding.
   *
   * This test is run in a separate process since it defines DRUPAL_ROOT. This
   * stops any possible pollution of other tests.
   *
   * @legacy-covers ::findSitePath
   */
  public function testFindSitePath() : void {
    $vfs_root = vfsStream::setup('drupal_root');
    $sites_php = <<<'EOD'
    <?php
    $sites['8888.www.example.org'] = 'example';
    EOD;
    // Create the expected directory structure.
    vfsStream::create([
      'sites' => [
        'sites.php' => $sites_php,
        'example' => [
          'settings.php' => 'test',
        ],
      ],
    ]);
    $request = new Request();
    $request->server
      ->set('SERVER_NAME', 'www.example.org');
    $request->server
      ->set('SERVER_PORT', '8888');
    $request->server
      ->set('SCRIPT_NAME', '/index.php');
    $this->assertEquals('sites/example', DrupalKernel::findSitePath($request, TRUE, $vfs_root->url()));
    $this->assertEquals('sites/example', DrupalKernel::findSitePath($request, FALSE, $vfs_root->url()));
  }
  
  /**
   * Tests un booted terminate.
   *
   * @legacy-covers ::terminate
   */
  public function testUnBootedTerminate() : void {
    $kernel = new DrupalKernel('test', new ClassLoader());
    $kernel->terminate(new Request(), new Response());
    $this->assertTrue(TRUE, "\\Drupal\\Core\\DrupalKernel::terminate() called without error on kernel which has not booted");
  }
}Members
| Title Sort descending | Modifiers | Object type | Summary | Overrides | 
|---|---|---|---|---|
| DrupalKernelTest::providerTestTrustedHosts | public static | function | Provides test data for testTrustedHosts(). | |
| DrupalKernelTest::testFindSitePath | public | function | Tests site path finding. | |
| DrupalKernelTest::testTrustedHosts | public | function | Tests hostname validation with settings. | |
| DrupalKernelTest::testUnBootedTerminate | public | function | Tests un booted terminate. | |
| ExpectDeprecationTrait::expectDeprecation | public | function | Adds an expected deprecation. | |
| ExpectDeprecationTrait::setUpErrorHandler | public | function | Sets up the test error handler. | |
| ExpectDeprecationTrait::tearDownErrorHandler | public | function | Tears down the test error handler. | |
| RandomGeneratorTrait::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | |
| RandomGeneratorTrait::randomMachineName | protected | function | Generates a unique random string containing letters and numbers. | |
| RandomGeneratorTrait::randomObject | public | function | Generates a random PHP object. | |
| RandomGeneratorTrait::randomString | public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
| UnitTestCase::$root | protected | property | The app root. | |
| UnitTestCase::getClassResolverStub | protected | function | Returns a stub class resolver. | |
| UnitTestCase::getConfigFactoryStub | public | function | Returns a stub config factory that behaves according to the passed array. | |
| UnitTestCase::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | |
| UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | |
| UnitTestCase::setDebugDumpHandler | public static | function | Registers the dumper CLI handler when the DebugDump extension is enabled. | |
| UnitTestCase::setUp | protected | function | 366 | |
| UnitTestCase::setupMockIterator | protected | function | Set up a traversable class mock to return specific items when iterated. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
