You are here

public function QuickStartTest::testServerWithNoInstall in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Command/QuickStartTest.php \Drupal\Tests\Core\Command\QuickStartTest::testServerWithNoInstall()

Tests the server command when there is no installation.

File

core/tests/Drupal/Tests/Core/Command/QuickStartTest.php, line 281

Class

QuickStartTest
Tests the quick-start commands.

Namespace

Drupal\Tests\Core\Command

Code

public function testServerWithNoInstall() {
  $server_command = [
    $this->php,
    'core/scripts/drupal',
    'server',
    '--suppress-login',
  ];
  $server_process = new Process($server_command, NULL, [
    'DRUPAL_DEV_SITE_PATH' => $this->testDb
      ->getTestSitePath(),
  ]);
  $server_process
    ->inheritEnvironmentVariables();
  $server_process
    ->run();
  $this
    ->assertContains('No installation found. Use the \'install\' command.', $server_process
    ->getErrorOutput());
}