<?php
/**
* PHPTAL templating engine
*
* PHP Version 5
*
* @category HTML
* @package PHPTAL
* @author Laurent Bedubourg <hide@address.com>
* @author Kornel LesiÅski <hide@address.com>
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id: $
* @link http://phptal.org/
*/
require_once dirname(__FILE__)."/config.php";
PHPTAL::setIncludePath();
require_once 'PHPTAL/PreFilter.php';
require_once 'PHPTAL/PreFilter/Normalize.php';
PHPTAL::restoreIncludePath();
class PreFilterNormalizeTest extends PHPTAL_TestCase
{
function testBasic()
{
$tpl = $this->newPHPTAL()->setSource("<p>\t\n\rhello world</p>");
$tpl->addPreFilter(new PHPTAL_PreFilter_Normalize());
$this->assertEquals("<p> hello world</p>", $tpl->execute());
}
function testPreSkipped()
{
$tpl = $this->newPHPTAL()->setSource("<pre>\r\n foo</pre>");
$tpl->addPreFilter(new PHPTAL_PreFilter_Normalize());
$this->assertEquals("<pre>\n foo</pre>", $tpl->execute());
}
function testTextAreaSkipped()
{
$tpl = $this->newPHPTAL()->setSource("<t:textarea xmlns:t='http://www.w3.org/1999/xhtml'>\r\n foo</t:textarea><p> </p>");
$tpl->addPreFilter(new PHPTAL_PreFilter_Normalize());
$this->assertEquals("<t:textarea xmlns:t=\"http://www.w3.org/1999/xhtml\">\n foo</t:textarea><p> </p>", $tpl->execute());
}
function testNormalizesAttrs()
{
$tpl = $this->newPHPTAL()->setSource("<p title=' foo \r\n bar \t\tbaz '> </p>");
$tpl->addPreFilter(new PHPTAL_PreFilter_Normalize());
$this->assertEquals('<p title="foo bar baz"> </p>',$tpl->execute());
}
function testNormalizesPreAttrs()
{
$tpl = $this->newPHPTAL()->setSource("<pre title=' foo \r\n bar \t\tbaz '> </pre>");
$tpl->addPreFilter(new PHPTAL_PreFilter_Normalize());
$this->assertEquals('<pre title="foo bar baz"> </pre>',$tpl->execute());
}
function testSkipsXMLSpacePreserve()
{
$tpl = $this->newPHPTAL()->setSource("<p title=' foo \r\n bar \t\tbaz '>
<span xml:space='preserve' title=' spa ced '> \n </span> </p>");
$tpl->addPreFilter(new PHPTAL_PreFilter_Normalize());
$this->assertEquals('<p title="foo bar baz"> <span xml:space="preserve" title=" spa ced "> '.
"\n".' </span> </p>',$tpl->execute());
}
function testResumesXMLSpaceDefault()
{
$tpl = $this->newPHPTAL()->setSource("<p title=' foo \r\n bar \t\tbaz '>
<span xml:space='preserve' title=' spa ced '> \n <x xml:space='default' y=' a '>\r\n</x> </span> </p>");
$tpl->addPreFilter(new PHPTAL_PreFilter_Normalize());
$this->assertEquals('<p title="foo bar baz"> <span xml:space="preserve" title=" spa ced "> '.
"\n".' <x xml:space="default" y="a"> </x> </span> </p>',$tpl->execute());
}
function runFilter(PHPTAL_Dom_Element $el)
{
$f = new PHPTAL_PreFilter_Normalize();
// assertNull checks for "void" functions
$this->assertNull($f->setPHPTAL($this->newPHPTAL()));
$this->assertNull($f->filterDOM($el));
}
private function newElement($name = 'foo',$ns = '')
{
$xmlns = new PHPTAL_Dom_XmlnsState(array(),'');
return new PHPTAL_Dom_Element($name,$ns,array(),$xmlns);
}
function testNormalizeSpaceRemovesEmpty()
{
$el = $this->newElement();
$el->appendChild(new PHPTAL_Dom_Text('','UTF-8'));
$el->appendChild(new PHPTAL_Dom_Text('','UTF-8'));
$this->assertEquals(2, count($el->childNodes));
$this->runFilter($el);
$this->assertEquals(0, count($el->childNodes));
}
function testNormalizeSpaceMerges()
{
$el = $this->newElement();
$el->appendChild(new PHPTAL_Dom_Text('a','UTF-8'));
$el->appendChild(new PHPTAL_Dom_Text('b','UTF-8'));
$this->assertEquals(2, count($el->childNodes));
$this->runFilter($el);
$this->assertEquals(1, count($el->childNodes));
}
function testNormalizeSpaceSkipsElement()
{
$el = $this->newElement();
$el->appendChild(new PHPTAL_Dom_Text('a','UTF-8'));
$el->appendChild($this->newElement());
$el->appendChild(new PHPTAL_Dom_Text('b','UTF-8'));
$this->assertEquals(3, count($el->childNodes));
$this->runFilter($el);
$this->assertEquals(3, count($el->childNodes));
}
}