You are here

public function PathValidatorTest::testGetUrlIfValidWithoutAccessCheck in Drupal 9

Same name in this branch
  1. 9 core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php \Drupal\Tests\Core\Path\PathValidatorTest::testGetUrlIfValidWithoutAccessCheck()
  2. 9 core/tests/Drupal/KernelTests/Core/Path/PathValidatorTest.php \Drupal\KernelTests\Core\Path\PathValidatorTest::testGetUrlIfValidWithoutAccessCheck()
Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Path/PathValidatorTest.php \Drupal\KernelTests\Core\Path\PathValidatorTest::testGetUrlIfValidWithoutAccessCheck()

File

core/tests/Drupal/KernelTests/Core/Path/PathValidatorTest.php, line 36

Class

PathValidatorTest
Tests the path validator.

Namespace

Drupal\KernelTests\Core\Path

Code

public function testGetUrlIfValidWithoutAccessCheck() {
  $requestContext = \Drupal::service('router.request_context');
  $pathValidator = \Drupal::service('path.validator');
  $entity = EntityTest::create([
    'name' => 'test',
  ]);
  $entity
    ->save();
  $methods = [
    'POST',
    'GET',
    'PUT',
    'PATCH',
    'DELETE',
    // Used in CLI context.
    NULL,
    // If no request was even pushed onto the request stack, and hence.
    FALSE,
  ];
  foreach ($methods as $method) {
    if ($method === FALSE) {
      $request_stack = $this->container
        ->get('request_stack');
      while ($request_stack
        ->getCurrentRequest()) {
        $request_stack
          ->pop();
      }
      $this->container
        ->set('router.request_context', new RequestContext());
    }
    $requestContext
      ->setMethod($method);

    /** @var \Drupal\Core\Url $url */
    $url = $pathValidator
      ->getUrlIfValidWithoutAccessCheck($entity
      ->toUrl()
      ->toString(TRUE)
      ->getGeneratedUrl());
    $this
      ->assertEquals($method, $requestContext
      ->getMethod());
    $this
      ->assertInstanceOf(Url::class, $url);
    $this
      ->assertSame([
      'entity_test' => $entity
        ->id(),
    ], $url
      ->getRouteParameters());
  }
}