You are here

class SecuredRedirectResponseTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/HttpFoundation/SecuredRedirectResponseTest.php \Drupal\Tests\Component\HttpFoundation\SecuredRedirectResponseTest

Test secure redirect base class.

@group Routing @coversDefaultClass \Drupal\Component\HttpFoundation\SecuredRedirectResponse

Hierarchy

Expanded class hierarchy of SecuredRedirectResponseTest

File

core/tests/Drupal/Tests/Component/HttpFoundation/SecuredRedirectResponseTest.php, line 21
Contains \Drupal\Tests\Component\HttpFoundation\SecuredRedirectResponseTest.

Namespace

Drupal\Tests\Component\HttpFoundation
View source
class SecuredRedirectResponseTest extends UnitTestCase {

  /**
   * Test copying of redirect response.
   *
   * @covers ::createFromRedirectResponse
   * @covers ::fromResponse
   */
  public function testRedirectCopy() {
    $redirect = new RedirectResponse('/magic_redirect_url', 301, [
      'x-cache-foobar' => 123,
    ]);
    $redirect
      ->setProtocolVersion('2.0');
    $redirect
      ->setCharset('ibm-943_P14A-2000');
    $redirect->headers
      ->setCookie(new Cookie('name', 'value'));

    // Make a cloned redirect.
    $secureRedirect = SecuredRedirectStub::createFromRedirectResponse($redirect);
    $this
      ->assertEquals('/magic_redirect_url', $secureRedirect
      ->getTargetUrl());
    $this
      ->assertEquals(301, $secureRedirect
      ->getStatusCode());

    // We pull the headers from the original redirect because there are default headers applied.
    $headers1 = $redirect->headers
      ->allPreserveCase();
    $headers2 = $secureRedirect->headers
      ->allPreserveCase();

    // We unset cache headers so we don't test arcane Symfony weirdness.
    // https://github.com/symfony/symfony/issues/16171
    unset($headers1['Cache-Control'], $headers2['Cache-Control']);
    $this
      ->assertEquals($headers1, $headers2);
    $this
      ->assertEquals('2.0', $secureRedirect
      ->getProtocolVersion());
    $this
      ->assertEquals('ibm-943_P14A-2000', $secureRedirect
      ->getCharset());
    $this
      ->assertEquals($redirect->headers
      ->getCookies(), $secureRedirect->headers
      ->getCookies());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SecuredRedirectResponseTest::testRedirectCopy public function Test copying of redirect response.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in 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::setUp protected function 259