mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
77dc826278
MINOR: Added tests for saving and managing invalid HTML with SS_HTMLValue. From: Andrew Short <andrewjshort@gmail.com> git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@88773 467b73ca-7a2a-4603-9d3b-597d59a354a9
41 lines
1.2 KiB
PHP
Executable File
41 lines
1.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage tests
|
|
*/
|
|
class SS_HTMLValueTest extends SapphireTest {
|
|
|
|
public function testInvalidHTMLSaving() {
|
|
$value = new SS_HTMLValue();
|
|
$invalid = array (
|
|
'<p>Enclosed Value</p></p>' => '<p>Enclosed Value</p>',
|
|
'<p><div class="example"></div></p>' => '<p/><div class="example"/>',
|
|
'<html><html><body><falsetag "attribute=""attribute""">' => '<falsetag/>',
|
|
'<body<body<body>/bodu>/body>' => '/bodu>/body>'
|
|
);
|
|
|
|
foreach($invalid as $input => $expected) {
|
|
$value->setContent($input);
|
|
$this->assertEquals($expected, $value->getContent(), 'Invalid HTML can be saved');
|
|
}
|
|
}
|
|
|
|
public function testInvalidHTMLTagNames() {
|
|
$value = new SS_HTMLValue();
|
|
$invalid = array (
|
|
'<p><div><a href="test-link"></p></div>',
|
|
'<html><div><a href="test-link"></a></a></html_>',
|
|
'""\'\'\'"""\'""<<<>/</<htmlbody><a href="test-link"<<>'
|
|
);
|
|
|
|
foreach($invalid as $input) {
|
|
$value->setContent($input);
|
|
$this->assertEquals (
|
|
'test-link',
|
|
$value->getElementsByTagName('a')->item(0)->getAttribute('href'),
|
|
'Link data can be extraced from malformed HTML'
|
|
);
|
|
}
|
|
}
|
|
|
|
} |