Same name and namespace in other branches
  1. 8.9.x core/modules/workspaces/tests/src/Unit/WorkspaceRequestSubscriberTest.php \Drupal\Tests\workspaces\Unit\WorkspaceRequestSubscriberTest
  2. 9 core/modules/workspaces/tests/src/Unit/WorkspaceRequestSubscriberTest.php \Drupal\Tests\workspaces\Unit\WorkspaceRequestSubscriberTest

@coversDefaultClass \Drupal\workspaces\EventSubscriber\WorkspaceRequestSubscriber

@group workspaces

Hierarchy

Expanded class hierarchy of WorkspaceRequestSubscriberTest

File

core/modules/workspaces/tests/src/Unit/WorkspaceRequestSubscriberTest.php, line 20

Namespace

Drupal\Tests\workspaces\Unit
View source
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() {
    $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() {
    $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));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function
WorkspaceRequestSubscriberTest::$workspaceManager protected property
WorkspaceRequestSubscriberTest::setUp protected function Overrides UnitTestCase::setUp
WorkspaceRequestSubscriberTest::testOnKernelRequestWithCacheableRouteProvider public function @covers ::onKernelRequest
WorkspaceRequestSubscriberTest::testOnKernelRequestWithoutCacheableRouteProvider public function @covers ::onKernelRequest