WorkspaceRequestSubscriberTest.php

Same filename and directory in other branches
  1. 9 core/modules/workspaces/tests/src/Unit/WorkspaceRequestSubscriberTest.php
  2. 8.9.x core/modules/workspaces/tests/src/Unit/WorkspaceRequestSubscriberTest.php
  3. 11.x core/modules/workspaces/tests/src/Unit/WorkspaceRequestSubscriberTest.php

Namespace

Drupal\Tests\workspaces\Unit

File

core/modules/workspaces/tests/src/Unit/WorkspaceRequestSubscriberTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\workspaces\Unit;

use Drupal\Core\Routing\CacheableRouteProviderInterface;
use Drupal\Core\Routing\RouteProviderInterface;
use Drupal\Tests\UnitTestCase;
use Drupal\workspaces\EventSubscriber\WorkspaceRequestSubscriber;
use Drupal\workspaces\WorkspaceInterface;
use Drupal\workspaces\WorkspaceManagerInterface;
use Symfony\Component\HttpKernel\Event\RequestEvent;

/**
 * @coversDefaultClass \Drupal\workspaces\EventSubscriber\WorkspaceRequestSubscriber
 *
 * @group workspaces
 */
class WorkspaceRequestSubscriberTest extends UnitTestCase {
  
  /**
   * @var \Drupal\workspaces\WorkspaceManagerInterface
   */
  protected $workspaceManager;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->workspaceManager = $this->prophesize(WorkspaceManagerInterface::class);
    $active_workspace = $this->prophesize(WorkspaceInterface::class);
    $active_workspace->id()
      ->willReturn('test');
    $this->workspaceManager
      ->getActiveWorkspace()
      ->willReturn($active_workspace->reveal());
    $this->workspaceManager
      ->hasActiveWorkspace()
      ->willReturn(TRUE);
  }
  
  /**
   * @covers ::onKernelRequest
   */
  public function testOnKernelRequestWithCacheableRouteProvider() : void {
    $route_provider = $this->prophesize(CacheableRouteProviderInterface::class);
    $route_provider->addExtraCacheKeyPart('workspace', 'test')
      ->shouldBeCalled();
    // Check that WorkspaceRequestSubscriber::onKernelRequest() calls
    // addExtraCacheKeyPart() on a route provider that implements
    // CacheableRouteProviderInterface.
    $workspace_request_subscriber = new WorkspaceRequestSubscriber($route_provider->reveal(), $this->workspaceManager
      ->reveal());
    $event = $this->prophesize(RequestEvent::class)
      ->reveal();
    $this->assertNull($workspace_request_subscriber->onKernelRequest($event));
  }
  
  /**
   * @covers ::onKernelRequest
   */
  public function testOnKernelRequestWithoutCacheableRouteProvider() : void {
    $route_provider = $this->prophesize(RouteProviderInterface::class);
    // Check that WorkspaceRequestSubscriber::onKernelRequest() doesn't call
    // addExtraCacheKeyPart() on a route provider that does not implement
    // CacheableRouteProviderInterface.
    $workspace_request_subscriber = new WorkspaceRequestSubscriber($route_provider->reveal(), $this->workspaceManager
      ->reveal());
    $event = $this->prophesize(RequestEvent::class)
      ->reveal();
    $this->assertNull($workspace_request_subscriber->onKernelRequest($event));
  }

}

Classes

Title Deprecated Summary
WorkspaceRequestSubscriberTest @coversDefaultClass \Drupal\workspaces\EventSubscriber\WorkspaceRequestSubscriber[[api-linebreak]]

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