public function DenyNodePreviewTest::testPrivateImageStyleDownloadPolicy in Drupal 8
Same name and namespace in other branches
- 9 core/modules/node/tests/src/Unit/PageCache/DenyNodePreviewTest.php \Drupal\Tests\node\Unit\PageCache\DenyNodePreviewTest::testPrivateImageStyleDownloadPolicy()
Asserts that caching is denied on the node preview route.
@dataProvider providerPrivateImageStyleDownloadPolicy @covers ::check
File
- core/modules/ node/ tests/ src/ Unit/ PageCache/ DenyNodePreviewTest.php, line 58 
Class
- DenyNodePreviewTest
- @coversDefaultClass \Drupal\node\PageCache\DenyNodePreview @group node
Namespace
Drupal\Tests\node\Unit\PageCacheCode
public function testPrivateImageStyleDownloadPolicy($expected_result, $route_name) {
  $this->routeMatch
    ->expects($this
    ->once())
    ->method('getRouteName')
    ->will($this
    ->returnValue($route_name));
  $actual_result = $this->policy
    ->check($this->response, $this->request);
  $this
    ->assertSame($expected_result, $actual_result);
}