You are here

public function RedirectResponseSubscriberTest::testDestinationRedirectToExternalUrl in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/EventSubscriber/RedirectResponseSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\RedirectResponseSubscriberTest::testDestinationRedirectToExternalUrl()
  2. 9 core/tests/Drupal/Tests/Core/EventSubscriber/RedirectResponseSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\RedirectResponseSubscriberTest::testDestinationRedirectToExternalUrl()

@dataProvider providerTestDestinationRedirectToExternalUrl

File

core/tests/Drupal/Tests/Core/EventSubscriber/RedirectResponseSubscriberTest.php, line 118

Class

RedirectResponseSubscriberTest
@coversDefaultClass \Drupal\Core\EventSubscriber\RedirectResponseSubscriber @group EventSubscriber

Namespace

Drupal\Tests\Core\EventSubscriber

Code

public function testDestinationRedirectToExternalUrl($request, $expected) {
  $dispatcher = new EventDispatcher(\Drupal::getContainer());
  $kernel = $this
    ->createMock('Symfony\\Component\\HttpKernel\\HttpKernelInterface');
  $response = new RedirectResponse('http://other-example.com');
  $listener = new RedirectResponseSubscriber($this->urlAssembler, $this->requestContext);
  $dispatcher
    ->addListener(KernelEvents::RESPONSE, [
    $listener,
    'checkRedirectUrl',
  ]);
  $event = new ResponseEvent($kernel, $request, HttpKernelInterface::SUB_REQUEST, $response);
  $this
    ->expectError();
  $dispatcher
    ->dispatch($event, KernelEvents::RESPONSE);
}