function ProtocolVersionCacheContextTest::testGetContext

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\ProtocolVersionCacheContextTest::testGetContext()
  2. 10 core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\ProtocolVersionCacheContextTest::testGetContext()
  3. 11.x core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\ProtocolVersionCacheContextTest::testGetContext()

@covers ::getContext

@dataProvider providerTestGetContext

File

core/tests/Drupal/Tests/Core/Cache/Context/ProtocolVersionCacheContextTest.php, line 21

Class

ProtocolVersionCacheContextTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Cache%21Context%21ProtocolVersionCacheContext.php/class/ProtocolVersionCacheContext/8.9.x" title="Defines the ProtocolVersionCacheContext service, for &quot;per protocol&quot; caching." class="local">\Drupal\Core\Cache\Context\ProtocolVersionCacheContext</a> @group Cache

Namespace

Drupal\Tests\Core\Cache\Context

Code

public function testGetContext($protocol, $context) {
    $request_stack = new RequestStack();
    $request = Request::create('/');
    $request->server
        ->set('SERVER_PROTOCOL', $protocol);
    $request_stack->push($request);
    $cache_context = new ProtocolVersionCacheContext($request_stack);
    $this->assertSame($cache_context->getContext(), $context);
}

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