public function DrupalKernelTest::testFindSitePath in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php \Drupal\Tests\Core\DrupalKernel\DrupalKernelTest::testFindSitePath()
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.
@covers ::findSitePath @runInSeparateProcess
File
- core/
tests/ Drupal/ Tests/ Core/ DrupalKernel/ DrupalKernelTest.php, line 119 - Contains \Drupal\Tests\Core\DrupalKernel\DrupalKernelTest.
Class
- DrupalKernelTest
- @coversDefaultClass \Drupal\Core\DrupalKernel @group DrupalKernel
Namespace
Drupal\Tests\Core\DrupalKernelCode
public function testFindSitePath() {
$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',
],
],
]);
define('DRUPAL_ROOT', $vfs_root
->url('drupal_root'));
$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));
}