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
|
|
|
|
2013-07-16 11:56:14 +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
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testNodeRemoved()
|
|
|
|
{
|
2007-06-26 23:43:28 +00:00
|
|
|
$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
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testNodeExcluded()
|
|
|
|
{
|
2007-06-26 23:43:28 +00:00
|
|
|
$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
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testNodeReorganized()
|
|
|
|
{
|
2007-06-26 23:43:28 +00:00
|
|
|
$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
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testNoNodeReorganizedForEmptyNode()
|
|
|
|
{
|
2007-10-02 01:19:46 +00:00
|
|
|
$this->expectNoErrorCollection();
|
|
|
|
$this->invoke("<span></span>");
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testNodeContentsRemoved()
|
|
|
|
{
|
2007-06-26 23:43:28 +00:00
|
|
|
$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
|