2007-06-26 23:43:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HTMLPurifier_Strategy_FixNesting_ErrorsTest extends HTMLPurifier_Strategy_ErrorsHarness
|
|
|
|
{
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2008-04-21 15:24:18 +00:00
|
|
|
protected function getStrategy() {
|
2007-06-26 23:43:28 +00:00
|
|
|
return new HTMLPurifier_Strategy_FixNesting();
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-06-26 23:43:28 +00:00
|
|
|
function testNodeRemoved() {
|
|
|
|
$this->expectErrorCollection(E_ERROR, 'Strategy_FixNesting: Node removed');
|
|
|
|
$this->expectContext('CurrentToken', new HTMLPurifier_Token_Start('ul', array(), 1));
|
|
|
|
$this->invoke('<ul></ul>');
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-06-26 23:43:28 +00:00
|
|
|
function testNodeExcluded() {
|
|
|
|
$this->expectErrorCollection(E_ERROR, 'Strategy_FixNesting: Node excluded');
|
|
|
|
$this->expectContext('CurrentToken', new HTMLPurifier_Token_Start('a', array(), 2));
|
|
|
|
$this->invoke("<a>\n<a></a></a>");
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-06-26 23:43:28 +00:00
|
|
|
function testNodeReorganized() {
|
|
|
|
$this->expectErrorCollection(E_WARNING, 'Strategy_FixNesting: Node reorganized');
|
|
|
|
$this->expectContext('CurrentToken', new HTMLPurifier_Token_Start('span', array(), 1));
|
|
|
|
$this->invoke("<span>Valid<div>Invalid</div></span>");
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-10-02 01:19:46 +00:00
|
|
|
function testNoNodeReorganizedForEmptyNode() {
|
|
|
|
$this->expectNoErrorCollection();
|
|
|
|
$this->invoke("<span></span>");
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-06-26 23:43:28 +00:00
|
|
|
function testNodeContentsRemoved() {
|
|
|
|
$this->expectErrorCollection(E_ERROR, 'Strategy_FixNesting: Node contents removed');
|
|
|
|
$this->expectContext('CurrentToken', new HTMLPurifier_Token_Start('span', array(), 1));
|
|
|
|
$this->invoke("<span><div></div></span>");
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-06-26 23:43:28 +00:00
|
|
|
}
|
|
|
|
|
2008-12-06 09:24:59 +00:00
|
|
|
// vim: et sw=4 sts=4
|