mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
68b29e13e2
BUG Fix encoding of cms add-option in js ENHANCEMENT Sanitise literal HTML content
39 lines
990 B
PHP
39 lines
990 B
PHP
<?php
|
|
|
|
/**
|
|
* Tests the {@see EditableLiteralField} class
|
|
*/
|
|
class EditableLiteralFieldTest extends SapphireTest {
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
Config::nest();
|
|
HtmlEditorConfig::set_active('cms');
|
|
}
|
|
|
|
|
|
public function tearDown() {
|
|
Config::unnest();
|
|
parent::tearDown();
|
|
}
|
|
|
|
/**
|
|
* Tests the sanitisation of HTML content
|
|
*/
|
|
public function testSanitisation() {
|
|
$rawContent = '<h1>Welcome</h1><script>alert("Hello!");</script><p>Giant Robots!</p>';
|
|
$safeContent = '<h1>Welcome</h1><p>Giant Robots!</p>';
|
|
$field = new EditableLiteralField();
|
|
|
|
// Test with sanitisation enabled
|
|
Config::inst()->update('HtmlEditorField', 'sanitise_server_side', true);
|
|
$field->setContent($rawContent);
|
|
$this->assertEquals($safeContent, $field->getContent());
|
|
|
|
// Test with sanitisation disabled
|
|
Config::inst()->remove('HtmlEditorField', 'sanitise_server_side');
|
|
$field->setContent($rawContent);
|
|
$this->assertEquals($rawContent, $field->getContent());
|
|
}
|
|
}
|