0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-11-09 15:28:40 +00:00

Begin fleshing out test_fixNesting(). Still needs more test-cases.

git-svn-id: http://htmlpurifier.org/svnroot/html_purifier/trunk@52 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2006-06-11 22:53:40 +00:00
parent e1464fa2f6
commit d9c8effc9b

View File

@ -3,12 +3,13 @@
class Test_PureHTMLDefinition extends UnitTestCase
{
var $def;
var $def, $lexer;
function Test_PureHTMLDefinition() {
$this->UnitTestCase();
$this->def = new PureHTMLDefinition();
$this->def->loadData();
$this->lexer = new HTML_Lexer();
}
function test_removeForeignElements() {
@ -185,6 +186,54 @@ class Test_PureHTMLDefinition extends UnitTestCase
}
function test_fixNesting() {
$inputs = array();
$expect = array();
// some legal nestings
$inputs[0] = array(
new MF_StartTag('b'),
new MF_Text('Bold text'),
new MF_EndTag('b'),
);
$expect[0] = $inputs[0];
// test acceptance of inline and block
// as the parent element is considered FLOW
$inputs[1] = array(
new MF_StartTag('a', array('href' => 'http://www.example.com/')),
new MF_Text('Linky'),
new MF_EndTag('a'),
new MF_StartTag('div'),
new MF_Text('Block element'),
new MF_EndTag('div'),
);
$expect[1] = $inputs[1];
// test illegal block element -> text
$inputs[2] = array(
new MF_StartTag('b'),
new MF_StartTag('div'),
new MF_Text('Illegal Div'),
new MF_EndTag('div'),
new MF_EndTag('b'),
);
$expect[2] = array(
new MF_StartTag('b'),
new MF_Text('<div>'),
new MF_Text('Illegal Div'),
new MF_Text('</div>'),
new MF_EndTag('b'),
);
foreach ($inputs as $i => $input) {
$result = $this->def->fixNesting($input);
$this->assertEqual($expect[$i], $result);
paintIf($result, $result != $expect[$i]);
}
}
}
class Test_HTMLDTD_ChildDef extends UnitTestCase