RedirectResponseSubscriberTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/EventSubscriber/RedirectResponseSubscriberTest.php
  2. 8.9.x core/tests/Drupal/Tests/Core/EventSubscriber/RedirectResponseSubscriberTest.php
  3. 11.x core/tests/Drupal/Tests/Core/EventSubscriber/RedirectResponseSubscriberTest.php

Namespace

Drupal\Tests\Core\EventSubscriber

File

core/tests/Drupal/Tests/Core/EventSubscriber/RedirectResponseSubscriberTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\EventSubscriber;

use Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher as EventDispatcher;
use Drupal\Core\EventSubscriber\RedirectResponseSubscriber;
use Drupal\Core\Routing\TrustedRedirectResponse;
use Drupal\Core\Utility\UnroutedUrlAssemblerInterface;
use Drupal\Tests\UnitTestCase;
use Psr\Log\LoggerInterface;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Event\ResponseEvent;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\HttpKernel\KernelEvents;

/**
 * @coversDefaultClass \Drupal\Core\EventSubscriber\RedirectResponseSubscriber
 * @group EventSubscriber
 */
class RedirectResponseSubscriberTest extends UnitTestCase {
  
  /**
   * The mocked request context.
   *
   * @var \Drupal\Core\Routing\RequestContext|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $requestContext;
  
  /**
   * The mocked request context.
   *
   * @var \Drupal\Core\Utility\UnroutedUrlAssemblerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $urlAssembler;
  
  /**
   * The mocked logger closure.
   */
  protected \Closure $loggerClosure;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->loggerClosure = function () : LoggerInterface {
      return $this->prophesize(LoggerInterface::class)
        ->reveal();
    };
    $this->requestContext = $this->getMockBuilder('Drupal\\Core\\Routing\\RequestContext')
      ->disableOriginalConstructor()
      ->getMock();
    $this->requestContext
      ->expects($this->any())
      ->method('getCompleteBaseUrl')
      ->willReturn('http://example.com/drupal');
    $this->urlAssembler = $this->createMock(UnroutedUrlAssemblerInterface::class);
    $this->urlAssembler
      ->expects($this->any())
      ->method('assemble')
      ->willReturnMap([
      [
        'base:test',
        [
          'query' => [],
          'fragment' => '',
          'absolute' => TRUE,
        ],
        FALSE,
        'http://example.com/drupal/test',
      ],
      [
        'base:example.com',
        [
          'query' => [],
          'fragment' => '',
          'absolute' => TRUE,
        ],
        FALSE,
        'http://example.com/drupal/example.com',
      ],
      [
        'base:example:com',
        [
          'query' => [],
          'fragment' => '',
          'absolute' => TRUE,
        ],
        FALSE,
        'http://example.com/drupal/example:com',
      ],
      [
        'base:javascript:alert(0)',
        [
          'query' => [],
          'fragment' => '',
          'absolute' => TRUE,
        ],
        FALSE,
        'http://example.com/drupal/javascript:alert(0)',
      ],
    ]);
    $container = new Container();
    $container->set('router.request_context', $this->requestContext);
    \Drupal::setContainer($container);
  }
  
  /**
   * Tests destination detection and redirection.
   *
   * @param \Symfony\Component\HttpFoundation\Request $request
   *   The request object with destination query set.
   * @param string|bool $expected
   *   The expected target URL or FALSE.
   *
   * @covers ::checkRedirectUrl
   * @dataProvider providerTestDestinationRedirect
   */
  public function testDestinationRedirect(Request $request, $expected) : void {
    $dispatcher = new EventDispatcher(\Drupal::getContainer());
    $kernel = $this->createMock('Symfony\\Component\\HttpKernel\\HttpKernelInterface');
    $response = new RedirectResponse('http://example.com/drupal');
    $request->headers
      ->set('HOST', 'example.com');
    $listener = new RedirectResponseSubscriber($this->urlAssembler, $this->requestContext, $this->loggerClosure);
    $dispatcher->addListener(KernelEvents::RESPONSE, [
      $listener,
      'checkRedirectUrl',
    ]);
    $event = new ResponseEvent($kernel, $request, HttpKernelInterface::SUB_REQUEST, $response);
    $dispatcher->dispatch($event, KernelEvents::RESPONSE);
    $target_url = $event->getResponse()
      ->getTargetUrl();
    if ($expected) {
      $this->assertEquals($expected, $target_url);
    }
    else {
      $this->assertEquals('http://example.com/drupal', $target_url);
    }
  }
  
  /**
   * Data provider for testDestinationRedirect().
   *
   * @see \Drupal\Tests\Core\EventSubscriber\RedirectResponseSubscriberTest::testDestinationRedirect()
   */
  public static function providerTestDestinationRedirect() {
    return [
      [
        new Request(),
        FALSE,
      ],
      [
        new Request([
          'destination' => 'test',
        ]),
        'http://example.com/drupal/test',
      ],
      [
        new Request([
          'destination' => '/drupal/test',
        ]),
        'http://example.com/drupal/test',
      ],
      [
        new Request([
          'destination' => 'example.com',
        ]),
        'http://example.com/drupal/example.com',
      ],
      [
        new Request([
          'destination' => 'example:com',
        ]),
        'http://example.com/drupal/example:com',
      ],
      [
        new Request([
          'destination' => 'javascript:alert(0)',
        ]),
        'http://example.com/drupal/javascript:alert(0)',
      ],
      [
        new Request([
          'destination' => 'http://example.com/drupal/',
        ]),
        'http://example.com/drupal/',
      ],
      [
        new Request([
          'destination' => 'http://example.com/drupal/test',
        ]),
        'http://example.com/drupal/test',
      ],
    ];
  }
  
  /**
   * @dataProvider providerTestDestinationRedirectToExternalUrl
   */
  public function testDestinationRedirectToExternalUrl($request, $expected) : void {
    $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, $this->loggerClosure);
    $dispatcher->addListener(KernelEvents::RESPONSE, [
      $listener,
      'checkRedirectUrl',
    ]);
    $event = new ResponseEvent($kernel, $request, HttpKernelInterface::SUB_REQUEST, $response);
    $dispatcher->dispatch($event, KernelEvents::RESPONSE);
    $this->assertSame(400, $event->getResponse()
      ->getStatusCode());
  }
  
  /**
   * @covers ::checkRedirectUrl
   */
  public function testRedirectWithOptInExternalUrl() : void {
    $dispatcher = new EventDispatcher(\Drupal::getContainer());
    $kernel = $this->createMock('Symfony\\Component\\HttpKernel\\HttpKernelInterface');
    $response = new TrustedRedirectResponse('http://external-url.com');
    $request = Request::create('');
    $request->headers
      ->set('HOST', 'example.com');
    $listener = new RedirectResponseSubscriber($this->urlAssembler, $this->requestContext, $this->loggerClosure);
    $dispatcher->addListener(KernelEvents::RESPONSE, [
      $listener,
      'checkRedirectUrl',
    ]);
    $event = new ResponseEvent($kernel, $request, HttpKernelInterface::SUB_REQUEST, $response);
    $dispatcher->dispatch($event, KernelEvents::RESPONSE);
    $target_url = $event->getResponse()
      ->getTargetUrl();
    $this->assertEquals('http://external-url.com', $target_url);
  }
  
  /**
   * Data provider for testDestinationRedirectToExternalUrl().
   */
  public static function providerTestDestinationRedirectToExternalUrl() {
    return [
      'absolute external url' => [
        new Request([
          'destination' => 'http://example.com',
        ]),
        'http://example.com',
      ],
      'absolute external url with folder' => [
        new Request([
          'destination' => 'http://example.com/foobar',
        ]),
        'http://example.com/foobar',
      ],
      'absolute external url with folder2' => [
        new Request([
          'destination' => 'http://example.ca/drupal',
        ]),
        'http://example.ca/drupal',
      ],
      'path without drupal basepath' => [
        new Request([
          'destination' => '/test',
        ]),
        'http://example.com/test',
      ],
      'path with URL' => [
        new Request([
          'destination' => '/example.com',
        ]),
        'http://example.com/example.com',
      ],
      'path with URL and two slashes' => [
        new Request([
          'destination' => '//example.com',
        ]),
        'http://example.com//example.com',
      ],
    ];
  }
  
  /**
   * @dataProvider providerTestDestinationRedirectWithInvalidUrl
   */
  public function testDestinationRedirectWithInvalidUrl(Request $request) : void {
    $dispatcher = new EventDispatcher(\Drupal::getContainer());
    $kernel = $this->createMock('Symfony\\Component\\HttpKernel\\HttpKernelInterface');
    $response = new RedirectResponse('http://example.com/drupal');
    $listener = new RedirectResponseSubscriber($this->urlAssembler, $this->requestContext, $this->loggerClosure);
    $dispatcher->addListener(KernelEvents::RESPONSE, [
      $listener,
      'checkRedirectUrl',
    ]);
    $event = new ResponseEvent($kernel, $request, HttpKernelInterface::SUB_REQUEST, $response);
    $dispatcher->dispatch($event, KernelEvents::RESPONSE);
    $this->assertSame(400, $event->getResponse()
      ->getStatusCode());
  }
  
  /**
   * Data provider for testDestinationRedirectWithInvalidUrl().
   */
  public static function providerTestDestinationRedirectWithInvalidUrl() {
    $data = [];
    $data[] = [
      new Request([
        'destination' => '//example:com',
      ]),
    ];
    $data[] = [
      new Request([
        'destination' => '//example:com/test',
      ]),
    ];
    $data['absolute external url'] = [
      new Request([
        'destination' => 'http://example.com',
      ]),
    ];
    $data['absolute external url with folder'] = [
      new Request([
        'destination' => 'http://example.ca/drupal',
      ]),
    ];
    $data['path without drupal basepath'] = [
      new Request([
        'destination' => '/test',
      ]),
    ];
    $data['path with URL'] = [
      new Request([
        'destination' => '/example.com',
      ]),
    ];
    $data['path with URL and two slashes'] = [
      new Request([
        'destination' => '//example.com',
      ]),
    ];
    return $data;
  }

}

Classes

Title Deprecated Summary
RedirectResponseSubscriberTest @coversDefaultClass \Drupal\Core\EventSubscriber\RedirectResponseSubscriber[[api-linebreak]] @group EventSubscriber

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