function QuickStartTest::testQuickStartCommand

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Command/QuickStartTest.php \Drupal\Tests\Core\Command\QuickStartTest::testQuickStartCommand()
  2. 8.9.x core/tests/Drupal/Tests/Core/Command/QuickStartTest.php \Drupal\Tests\Core\Command\QuickStartTest::testQuickStartCommand()
  3. 10 core/tests/Drupal/Tests/Core/Command/QuickStartTest.php \Drupal\Tests\Core\Command\QuickStartTest::testQuickStartCommand()

Tests the quick-start command.

File

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

Class

QuickStartTest
Tests the quick-start commands.

Namespace

Drupal\Tests\Core\Command

Code

public function testQuickStartCommand() : void {
    $sqlite = (new \PDO('sqlite::memory:'))->query('select sqlite_version()')
        ->fetch()[0];
    if (version_compare($sqlite, Tasks::SQLITE_MINIMUM_VERSION) < 0) {
        $this->markTestSkipped();
    }
    // Install a site using the standard profile to ensure the one time login
    // link generation works.
    $install_command = [
        $this->php,
        'core/scripts/drupal',
        'quick-start',
        'standard',
        "--site-name='Test site {$this->testDb->getDatabasePrefix()}'",
        '--suppress-login',
    ];
    $process = new Process($install_command, NULL, [
        'DRUPAL_DEV_SITE_PATH' => $this->testDb
            ->getTestSitePath(),
    ]);
    $process->setTimeout(500);
    $process->start();
    $guzzle = new Client();
    $port = FALSE;
    $process->waitUntil(function ($type, $output) use (&$port) {
        if (preg_match('/127.0.0.1:(\\d+)/', $output, $match)) {
            $port = $match[1];
            return TRUE;
        }
    });
    // The progress bar uses STDERR to write messages.
    $this->assertStringContainsString('Congratulations, you installed Drupal!', $process->getErrorOutput());
    // Ensure the command does not trigger any PHP deprecations.
    $this->assertStringNotContainsString('Deprecated', $process->getErrorOutput());
    $this->assertNotFalse($port, "Web server running on port {$port}");
    // Give the server a couple of seconds to be ready.
    sleep(2);
    $this->assertStringContainsString("127.0.0.1:{$port}/user/reset/1/", $process->getOutput());
    // Generate a cookie so we can make a request against the installed site.
    define('DRUPAL_TEST_IN_CHILD_SITE', FALSE);
    chmod($this->testDb
        ->getTestSitePath(), 0755);
    $cookieJar = CookieJar::fromArray([
        'SIMPLETEST_USER_AGENT' => drupal_generate_test_ua($this->testDb
            ->getDatabasePrefix()),
    ], '127.0.0.1');
    $response = $guzzle->get('http://127.0.0.1:' . $port, [
        'cookies' => $cookieJar,
    ]);
    $content = (string) $response->getBody();
    $this->assertStringContainsString('Test site ' . $this->testDb
        ->getDatabasePrefix(), $content);
    // Stop the web server.
    $process->stop();
}

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