You are here

class RedirectDestinationTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php \Drupal\Tests\Core\Routing\RedirectDestinationTest
  2. 9 core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php \Drupal\Tests\Core\Routing\RedirectDestinationTest

@coversDefaultClass \Drupal\Core\Routing\RedirectDestination @group Routing

Hierarchy

Expanded class hierarchy of RedirectDestinationTest

File

core/tests/Drupal/Tests/Core/Routing/RedirectDestinationTest.php, line 15

Namespace

Drupal\Tests\Core\Routing
View source
class RedirectDestinationTest extends UnitTestCase {

  /**
   * The request stack.
   *
   * @var \Symfony\Component\HttpFoundation\RequestStack
   */
  protected $requestStack;

  /**
   * The mocked URL generator.
   *
   * @var \Drupal\Core\Routing\UrlGeneratorInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $urlGenerator;

  /**
   * The tested redirect destination.
   *
   * @var \Drupal\Core\Routing\RedirectDestination
   */
  protected $redirectDestination;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->requestStack = new RequestStack();
    $this->urlGenerator = $this
      ->createMock('Drupal\\Core\\Routing\\UrlGeneratorInterface');
    $this->redirectDestination = new RedirectDestination($this->requestStack, $this->urlGenerator);
  }
  protected function setupUrlGenerator() {
    $this->urlGenerator
      ->expects($this
      ->any())
      ->method('generateFromRoute')
      ->willReturnCallback(function ($route, $parameters, $options) {
      $query_string = '';
      if (!empty($options['query'])) {
        $query_string = '?' . UrlHelper::buildQuery($options['query']);
      }
      return '/current-path' . $query_string;
    });
  }

  /**
   * Tests destination passed via $_GET.
   *
   * @param \Symfony\Component\HttpFoundation\Request $request
   *   The request to test.
   * @param string $expected_destination
   *   The expected destination.
   *
   * @dataProvider providerGet
   *
   * @covers ::get
   */
  public function testGet(Request $request, $expected_destination) {
    $this->requestStack
      ->push($request);
    $this
      ->setupUrlGenerator();

    // Call in twice in order to ensure it returns the same the next time.
    $this
      ->assertEquals($expected_destination, $this->redirectDestination
      ->get());
    $this
      ->assertEquals($expected_destination, $this->redirectDestination
      ->get());
  }

  /**
   * @dataProvider providerGet
   *
   * @covers ::getAsArray
   */
  public function testGetAsArray(Request $request, $expected_destination) {
    $this->requestStack
      ->push($request);
    $this
      ->setupUrlGenerator();

    // Call in twice in order to ensure it returns the same the next time.
    $this
      ->assertEquals([
      'destination' => $expected_destination,
    ], $this->redirectDestination
      ->getAsArray());
    $this
      ->assertEquals([
      'destination' => $expected_destination,
    ], $this->redirectDestination
      ->getAsArray());
  }
  public function providerGet() {
    $data = [];
    $request = Request::create('/');
    $request->query
      ->set('destination', '/example');

    // A request with a destination query.
    $data[] = [
      $request,
      '/example',
    ];

    // A request without a destination query,
    $request = Request::create('/');
    $data[] = [
      $request,
      '/current-path',
    ];

    // A request without destination query, but other query attributes.
    $request = Request::create('/');
    $request->query
      ->set('other', 'value');
    $data[] = [
      $request,
      '/current-path?other=value',
    ];

    // A request with a dedicated specified external destination.
    $request = Request::create('/');
    $request->query
      ->set('destination', 'https://www.drupal.org');
    $data[] = [
      $request,
      '/',
    ];
    return $data;
  }

  /**
   * @covers ::set
   * @covers ::get
   */
  public function testSetBeforeGetCall() {
    $this->redirectDestination
      ->set('/example');
    $this
      ->assertEquals('/example', $this->redirectDestination
      ->get());
  }

  /**
   * @covers ::set
   * @covers ::get
   */
  public function testSetAfterGetCall() {
    $request = Request::create('/');
    $request->query
      ->set('destination', '/other-example');
    $this->requestStack
      ->push($request);
    $this
      ->setupUrlGenerator();
    $this->redirectDestination
      ->set('/example');
    $this
      ->assertEquals('/example', $this->redirectDestination
      ->get());
  }

}

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.
RedirectDestinationTest::$redirectDestination protected property The tested redirect destination.
RedirectDestinationTest::$requestStack protected property The request stack.
RedirectDestinationTest::$urlGenerator protected property The mocked URL generator.
RedirectDestinationTest::providerGet public function
RedirectDestinationTest::setUp protected function Overrides UnitTestCase::setUp
RedirectDestinationTest::setupUrlGenerator protected function
RedirectDestinationTest::testGet public function Tests destination passed via $_GET.
RedirectDestinationTest::testGetAsArray public function @dataProvider providerGet
RedirectDestinationTest::testSetAfterGetCall public function @covers ::set @covers ::get
RedirectDestinationTest::testSetBeforeGetCall public function @covers ::set @covers ::get
UnitTestCase::$randomGenerator protected property The random generator.
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::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUpBeforeClass public static function