function DestructableServiceTest::testDestructableServiceExecutionOrder

Same name and namespace in other branches
  1. 10 core/tests/Drupal/FunctionalTests/HttpKernel/DestructableServiceTest.php \Drupal\FunctionalTests\HttpKernel\DestructableServiceTest::testDestructableServiceExecutionOrder()

File

core/tests/Drupal/FunctionalTests/HttpKernel/DestructableServiceTest.php, line 30

Class

DestructableServiceTest
Tests invocation of services performing deferred tasks after response flush.

Namespace

Drupal\FunctionalTests\HttpKernel

Code

public function testDestructableServiceExecutionOrder() : void {
    $file_system = $this->container
        ->get('file_system');
    assert($file_system instanceof FileSystemInterface);
    $semaphore = $file_system->tempnam($file_system->getTempDirectory(), 'destructable_semaphore');
    $this->drupalGet(Url::fromRoute('destructable', [], [
        'query' => [
            'semaphore' => $semaphore,
        ],
    ]));
    // This should be false as the response should flush before running the
    // test service.
    $this->assertEmpty(file_get_contents($semaphore), 'Destructable service did not run when response flushed to client.');
    // The destructable service will sleep for 3 seconds, then run.
    // To ensure no race conditions on slow test runners, wait another 3s.
    sleep(6);
    $this->assertTrue(file_get_contents($semaphore) === 'ran', 'Destructable service did run.');
}

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