mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms\Tests;
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
use SilverStripe\Forms\TextareaField;
|
|
|
|
class TextareaFieldTest extends SapphireTest {
|
|
|
|
/**
|
|
* Quick smoke test to ensure that text with unicodes is being displayed properly in readonly fields.
|
|
*/
|
|
public function testReadonlyDisplayUnicodes() {
|
|
$inputText = "These are some unicodes: äöü";
|
|
$field = new TextareaField("Test", "Test");
|
|
$field->setValue($inputText);
|
|
$field = $field->performReadonlyTransformation();
|
|
$this->assertContains('These are some unicodes: äöü', $field->Field());
|
|
}
|
|
|
|
/**
|
|
* Quick smoke test to ensure that text with special html chars is being displayed properly in readonly fields.
|
|
*/
|
|
public function testReadonlyDisplaySpecialHTML() {
|
|
$inputText = "These are some special <html> chars including 'single' & \"double\" quotations";
|
|
$field = new TextareaField("Test", "Test");
|
|
$field = $field->performReadonlyTransformation();
|
|
$field->setValue($inputText);
|
|
$this->assertContains('These are some special <html> chars including 'single' &'
|
|
. ' "double" quotations', $field->Field());
|
|
}
|
|
|
|
public function testValueEntities() {
|
|
$inputText = "These <b>are</b> some unicodes: äöü";
|
|
$field = new TextareaField("Test", "Test");
|
|
$field->setValue($inputText);
|
|
|
|
// Value should be safe-encoding only, but ValueEntities should be more aggressive
|
|
$this->assertEquals(
|
|
"These <b>are</b> some unicodes: äöü",
|
|
$field->obj('ValueEntities')->forTemplate()
|
|
);
|
|
|
|
// Shortcodes are disabled
|
|
$this->assertEquals(
|
|
false,
|
|
$field->obj('ValueEntities')->getProcessShortcodes()
|
|
);
|
|
}
|
|
|
|
}
|