mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<?php
|
|
|
|
class TextareaFieldTest extends SapphireTest {
|
|
|
|
/**
|
|
* Quick smoke test to ensure that text is being encoded properly.
|
|
*/
|
|
public function testTextEncoding() {
|
|
$inputText = "These are some unicodes: äöü";
|
|
$field = new TextareaField("Test", "Test");
|
|
$field->setValue($inputText);
|
|
$this->assertContains('These are some unicodes: äöü', $field->Field());
|
|
}
|
|
|
|
/**
|
|
* 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 testReadonlyDisplaySepcialHTML() {
|
|
$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());
|
|
}
|
|
|
|
}
|