FormattableMarkupKernelTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Component/Render/FormattableMarkupKernelTest.php
  2. 8.9.x core/tests/Drupal/KernelTests/Component/Render/FormattableMarkupKernelTest.php
  3. 10 core/tests/Drupal/KernelTests/Component/Render/FormattableMarkupKernelTest.php

Namespace

Drupal\KernelTests\Component\Render

File

core/tests/Drupal/KernelTests/Component/Render/FormattableMarkupKernelTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Component\Render;

use Drupal\Component\Render\FormattableMarkup;
use Drupal\Core\Url;
use Drupal\KernelTests\KernelTestBase;

/**
 * Provides a test covering integration of FormattableMarkup with other systems.
 *
 * @group Render
 */
class FormattableMarkupKernelTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'system',
  ];
  
  /**
   * Gets arguments for FormattableMarkup based on Url::fromUri() parameters.
   *
   * @param string $uri
   *   The URI of the resource.
   * @param array $options
   *   The options to pass to Url::fromUri().
   *
   * @return array
   *   Array containing:
   *   - ':url': A URL string.
   *
   * @see \Drupal\Component\Render\FormattableMarkup
   */
  protected static function getFormattableMarkupUriArgs($uri, $options = []) {
    $args[':url'] = Url::fromUri($uri, $options)->toString();
    return $args;
  }
  
  /**
   * Tests URL ":placeholders" in \Drupal\Component\Render\FormattableMarkup.
   *
   * @dataProvider providerTestFormattableMarkupUri
   */
  public function testFormattableMarkupUri($string, $uri, $options, $expected) : void {
    $args = self::getFormattableMarkupUriArgs($uri, $options);
    $this->assertSame($expected, (string) new FormattableMarkup($string, $args));
  }
  
  /**
   * @return array
   *   Data provider for testFormattableMarkupUri().
   */
  public static function providerTestFormattableMarkupUri() {
    $data = [];
    $data['routed-url'] = [
      'Hey giraffe <a href=":url">example</a>',
      'route:system.admin',
      [],
      'Hey giraffe <a href="/admin">example</a>',
    ];
    $data['routed-with-query'] = [
      'Hey giraffe <a href=":url">example</a>',
      'route:system.admin',
      [
        'query' => [
          'bar' => 'baz#',
        ],
      ],
      'Hey giraffe <a href="/admin?bar=baz%23">example</a>',
    ];
    $data['routed-with-fragment'] = [
      'Hey giraffe <a href=":url">example</a>',
      'route:system.admin',
      [
        'fragment' => 'bar&lt;',
      ],
      'Hey giraffe <a href="/admin#bar&amp;lt;">example</a>',
    ];
    $data['unrouted-url'] = [
      'Hey giraffe <a href=":url">example</a>',
      'base://foo',
      [],
      'Hey giraffe <a href="/foo">example</a>',
    ];
    $data['unrouted-with-query'] = [
      'Hey giraffe <a href=":url">example</a>',
      'base://foo',
      [
        'query' => [
          'bar' => 'baz#',
        ],
      ],
      'Hey giraffe <a href="/foo?bar=baz%23">example</a>',
    ];
    $data['unrouted-with-fragment'] = [
      'Hey giraffe <a href=":url">example</a>',
      'base://foo',
      [
        'fragment' => 'bar&lt;',
      ],
      'Hey giraffe <a href="/foo#bar&amp;lt;">example</a>',
    ];
    $data['mailto-protocol'] = [
      'Hey giraffe <a href=":url">example</a>',
      'mailto:test@example.com',
      [],
      'Hey giraffe <a href="mailto:test@example.com">example</a>',
    ];
    return $data;
  }
  
  /**
   * @dataProvider providerTestFormattableMarkupUriWithException
   */
  public function testFormattableMarkupUriWithExceptionUri($string, $uri) : void {
    // Should throw an \InvalidArgumentException, due to Uri::toString().
    $this->expectException(\InvalidArgumentException::class);
    $args = self::getFormattableMarkupUriArgs($uri);
    new FormattableMarkup($string, $args);
  }
  
  /**
   * @return array
   *   Data provider for testFormattableMarkupUriWithExceptionUri().
   */
  public static function providerTestFormattableMarkupUriWithException() {
    $data = [];
    $data['js-protocol'] = [
      'Hey giraffe <a href=":url">example</a>',
      "javascript:alert('xss')",
    ];
    $data['js-with-fromCharCode'] = [
      'Hey giraffe <a href=":url">example</a>',
      "javascript:alert(String.fromCharCode(88,83,83))",
    ];
    $data['non-url-with-colon'] = [
      'Hey giraffe <a href=":url">example</a>',
      "llamas: they are not URLs",
    ];
    $data['non-url-with-html'] = [
      'Hey giraffe <a href=":url">example</a>',
      '<span>not a url</span>',
    ];
    return $data;
  }

}

Classes

Title Deprecated Summary
FormattableMarkupKernelTest Provides a test covering integration of FormattableMarkup with other systems.

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