Skip to content
Snippets Groups Projects
Commit fdf37cf3 authored by catch's avatar catch
Browse files

Issue #2958407 by alexpott: Properly deprecate SafeMarkup::isSafe,...

Issue #2958407 by alexpott: Properly deprecate SafeMarkup::isSafe, SafeMarkup::checkPlain and the SafeMarkup class
parent 68b8b52f
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -40,6 +40,7 @@ class SafeMarkup { ...@@ -40,6 +40,7 @@ class SafeMarkup {
* @see https://www.drupal.org/node/2549395 * @see https://www.drupal.org/node/2549395
*/ */
public static function isSafe($string, $strategy = 'html') { public static function isSafe($string, $strategy = 'html') {
@trigger_error('SafeMarkup::isSafe() is scheduled for removal in Drupal 9.0.0. Instead, you should just check if a variable is an instance of \Drupal\Component\Render\MarkupInterface. See https://www.drupal.org/node/2549395.', E_USER_DEPRECATED);
return $string instanceof MarkupInterface; return $string instanceof MarkupInterface;
} }
...@@ -66,6 +67,7 @@ public static function isSafe($string, $strategy = 'html') { ...@@ -66,6 +67,7 @@ public static function isSafe($string, $strategy = 'html') {
* @see drupal_validate_utf8() * @see drupal_validate_utf8()
*/ */
public static function checkPlain($text) { public static function checkPlain($text) {
@trigger_error('SafeMarkup::checkPlain() is scheduled for removal in Drupal 9.0.0. Rely on Twig\'s auto-escaping feature, or use the @link theme_render #plain_text @endlink key when constructing a render array that contains plain text in order to use the renderer\'s auto-escaping feature. If neither of these are possible, \Drupal\Component\Utility\Html::escape() can be used in places where explicit escaping is needed. See https://www.drupal.org/node/2549395.', E_USER_DEPRECATED);
return new HtmlEscapedText($text); return new HtmlEscapedText($text);
} }
......
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
* *
* @see \Drupal\Core\Template\TwigExtension::escapeFilter * @see \Drupal\Core\Template\TwigExtension::escapeFilter
* @see \Twig_Markup * @see \Twig_Markup
* @see \Drupal\Component\Utility\SafeMarkup
*/ */
final class Markup implements MarkupInterface, \Countable { final class Markup implements MarkupInterface, \Countable {
use MarkupTrait; use MarkupTrait;
......
...@@ -43,7 +43,7 @@ protected function doLeaveNode(\Twig_Node $node, \Twig_Environment $env) { ...@@ -43,7 +43,7 @@ protected function doLeaveNode(\Twig_Node $node, \Twig_Environment $env) {
elseif ($node instanceof \Twig_Node_Expression_Filter) { elseif ($node instanceof \Twig_Node_Expression_Filter) {
$name = $node->getNode('filter')->getAttribute('value'); $name = $node->getNode('filter')->getAttribute('value');
if ('escape' == $name || 'e' == $name) { if ('escape' == $name || 'e' == $name) {
// Use our own escape filter that is SafeMarkup aware. // Use our own escape filter that is MarkupInterface aware.
$node->getNode('filter')->setAttribute('value', 'drupal_escape'); $node->getNode('filter')->setAttribute('value', 'drupal_escape');
// Store that we have a filter active already that knows // Store that we have a filter active already that knows
......
...@@ -37,8 +37,7 @@ abstract class ContentTranslationUITestBase extends ContentTranslationTestBase { ...@@ -37,8 +37,7 @@ abstract class ContentTranslationUITestBase extends ContentTranslationTestBase {
protected $testLanguageSelector = TRUE; protected $testLanguageSelector = TRUE;
/** /**
* Flag that tells whether the HTML escaping of all languages works or not * Flag to determine if "all languages" rendering is tested.
* after SafeMarkup change.
* *
* @var bool * @var bool
*/ */
...@@ -117,8 +116,7 @@ protected function doTestBasicTranslation() { ...@@ -117,8 +116,7 @@ protected function doTestBasicTranslation() {
], ['language' => $language]); ], ['language' => $language]);
$this->drupalPostForm($add_url, $this->getEditValues($values, $langcode), $this->getFormSubmitActionForNewTranslation($entity, $langcode)); $this->drupalPostForm($add_url, $this->getEditValues($values, $langcode), $this->getFormSubmitActionForNewTranslation($entity, $langcode));
// Assert that HTML is escaped in "all languages" in UI after SafeMarkup // Assert that HTML is not escaped unexpectedly.
// change.
if ($this->testHTMLEscapeForAllLanguages) { if ($this->testHTMLEscapeForAllLanguages) {
$this->assertNoRaw('<span class="translation-entity-all-languages">(all languages)</span>'); $this->assertNoRaw('<span class="translation-entity-all-languages">(all languages)</span>');
$this->assertRaw('<span class="translation-entity-all-languages">(all languages)</span>'); $this->assertRaw('<span class="translation-entity-all-languages">(all languages)</span>');
......
...@@ -35,8 +35,7 @@ abstract class ContentTranslationUITestBase extends ContentTranslationTestBase { ...@@ -35,8 +35,7 @@ abstract class ContentTranslationUITestBase extends ContentTranslationTestBase {
protected $testLanguageSelector = TRUE; protected $testLanguageSelector = TRUE;
/** /**
* Flag that tells whether the HTML escaping of all languages works or not * Flag to determine if "all languages" rendering is tested.
* after SafeMarkup change.
* *
* @var bool * @var bool
*/ */
...@@ -115,8 +114,7 @@ protected function doTestBasicTranslation() { ...@@ -115,8 +114,7 @@ protected function doTestBasicTranslation() {
], ['language' => $language]); ], ['language' => $language]);
$this->drupalPostForm($add_url, $this->getEditValues($values, $langcode), $this->getFormSubmitActionForNewTranslation($entity, $langcode)); $this->drupalPostForm($add_url, $this->getEditValues($values, $langcode), $this->getFormSubmitActionForNewTranslation($entity, $langcode));
// Assert that HTML is escaped in "all languages" in UI after SafeMarkup // Assert that HTML is not escaped unexpectedly.
// change.
if ($this->testHTMLEscapeForAllLanguages) { if ($this->testHTMLEscapeForAllLanguages) {
$this->assertNoRaw('&lt;span class=&quot;translation-entity-all-languages&quot;&gt;(all languages)&lt;/span&gt;'); $this->assertNoRaw('&lt;span class=&quot;translation-entity-all-languages&quot;&gt;(all languages)&lt;/span&gt;');
$this->assertRaw('<span class="translation-entity-all-languages">(all languages)</span>'); $this->assertRaw('<span class="translation-entity-all-languages">(all languages)</span>');
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
* Tests marking strings as safe. * Tests marking strings as safe.
* *
* @group Utility * @group Utility
* @group legacy
* @coversDefaultClass \Drupal\Component\Utility\SafeMarkup * @coversDefaultClass \Drupal\Component\Utility\SafeMarkup
*/ */
class SafeMarkupTest extends TestCase { class SafeMarkupTest extends TestCase {
...@@ -35,6 +36,7 @@ protected function tearDown() { ...@@ -35,6 +36,7 @@ protected function tearDown() {
* Tests SafeMarkup::isSafe() with different objects. * Tests SafeMarkup::isSafe() with different objects.
* *
* @covers ::isSafe * @covers ::isSafe
* @expectedDeprecation SafeMarkup::isSafe() is scheduled for removal in Drupal 9.0.0. Instead, you should just check if a variable is an instance of \Drupal\Component\Render\MarkupInterface. See https://www.drupal.org/node/2549395.
*/ */
public function testIsSafe() { public function testIsSafe() {
$safe_string = $this->getMockBuilder('\Drupal\Component\Render\MarkupInterface')->getMock(); $safe_string = $this->getMockBuilder('\Drupal\Component\Render\MarkupInterface')->getMock();
...@@ -48,6 +50,7 @@ public function testIsSafe() { ...@@ -48,6 +50,7 @@ public function testIsSafe() {
* *
* @dataProvider providerCheckPlain * @dataProvider providerCheckPlain
* @covers ::checkPlain * @covers ::checkPlain
* @expectedDeprecation SafeMarkup::checkPlain() is scheduled for removal in Drupal 9.0.0. Rely on Twig's auto-escaping feature, or use the @link theme_render #plain_text @endlink key when constructing a render array that contains plain text in order to use the renderer's auto-escaping feature. If neither of these are possible, \Drupal\Component\Utility\Html::escape() can be used in places where explicit escaping is needed. See https://www.drupal.org/node/2549395.
* *
* @param string $text * @param string $text
* The text to provide to SafeMarkup::checkPlain(). * The text to provide to SafeMarkup::checkPlain().
...@@ -125,10 +128,6 @@ public function testFormat($string, array $args, $expected, $message, $expected_ ...@@ -125,10 +128,6 @@ public function testFormat($string, array $args, $expected, $message, $expected_
$result = SafeMarkup::format($string, $args); $result = SafeMarkup::format($string, $args);
$this->assertEquals($expected, (string) $result, $message); $this->assertEquals($expected, (string) $result, $message);
$this->assertEquals($expected_is_safe, $result instanceof MarkupInterface, 'SafeMarkup::format correctly sets the result as safe or not safe.'); $this->assertEquals($expected_is_safe, $result instanceof MarkupInterface, 'SafeMarkup::format correctly sets the result as safe or not safe.');
foreach ($args as $arg) {
$this->assertSame($arg instanceof SafeMarkupTestMarkup, SafeMarkup::isSafe($arg));
}
} }
/** /**
......
...@@ -110,7 +110,6 @@ public function testGetDataDefinition($is_multiple) { ...@@ -110,7 +110,6 @@ public function testGetDataDefinition($is_multiple) {
* @dataProvider providerGetDataDefinition * @dataProvider providerGetDataDefinition
* @covers ::getDataDefinition * @covers ::getDataDefinition
* @uses \Drupal * @uses \Drupal
* @uses \Drupal\Component\Utility\SafeMarkup
*/ */
public function testGetDataDefinitionInvalidType($is_multiple) { public function testGetDataDefinitionInvalidType($is_multiple) {
// Since we're trying to make getDataDefinition() throw an exception in // Since we're trying to make getDataDefinition() throw an exception in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment