mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 23:08:42 +00:00
0c88b090b0
git-svn-id: http://htmlpurifier.org/svnroot/html_purifier/trunk@36 48356398-32a2-884e-a903-53898d9a118a
80 lines
2.3 KiB
PHP
80 lines
2.3 KiB
PHP
<?php
|
|
|
|
class Test_HTML_Generator extends UnitTestCase
|
|
{
|
|
|
|
var $gen;
|
|
|
|
function Test_HTML_Generator() {
|
|
$this->UnitTestCase();
|
|
$this->gen = new HTML_Generator();
|
|
}
|
|
|
|
function test_generateFromToken() {
|
|
|
|
$inputs = array();
|
|
$expect = array();
|
|
|
|
$inputs[0] = new MF_Text('Foobar.<>');
|
|
$expect[0] = 'Foobar.<>';
|
|
|
|
$inputs[1] = new MF_StartTag('a', array('href' => 'dyn?a=foo&b=bar'));
|
|
$expect[1] = '<a href="dyn?a=foo&b=bar">';
|
|
|
|
$inputs[2] = new MF_EndTag('b');
|
|
$expect[2] = '</b>';
|
|
|
|
$inputs[3] = new MF_EmptyTag('br', array('style' => 'font-family:"Courier New";'));
|
|
$expect[3] = '<br style="font-family:"Courier New";" />';
|
|
|
|
$inputs[4] = new MF_StartTag('asdf');
|
|
$expect[4] = '<asdf>';
|
|
|
|
foreach ($inputs as $i => $input) {
|
|
$result = $this->gen->generateFromToken($input);
|
|
$this->assertEqual($result, $expect[$i]);
|
|
paintIf($result, $result != $expect[$i]);
|
|
}
|
|
|
|
}
|
|
|
|
function test_generateAttributes() {
|
|
|
|
$inputs = array();
|
|
$expect = array();
|
|
|
|
$inputs[0] = array();
|
|
$expect[0] = '';
|
|
|
|
$inputs[1] = array('href' => 'dyn?a=foo&b=bar');
|
|
$expect[1] = 'href="dyn?a=foo&b=bar"';
|
|
|
|
$inputs[2] = array('style' => 'font-family:"Courier New";');
|
|
$expect[2] = 'style="font-family:"Courier New";"';
|
|
|
|
$inputs[3] = array('src' => 'picture.jpg', 'alt' => 'Short & interesting');
|
|
$expect[3] = 'src="picture.jpg" alt="Short & interesting"';
|
|
|
|
foreach ($inputs as $i => $input) {
|
|
$result = $this->gen->generateAttributes($input);
|
|
$this->assertEqual($result, $expect[$i]);
|
|
paintIf($result, $result != $expect[$i]);
|
|
}
|
|
|
|
}
|
|
|
|
function test_generateFromTokens() {
|
|
|
|
$tokens = array(
|
|
new MF_StartTag('b'),
|
|
new MF_Text('Foobar!'),
|
|
new MF_EndTag('b')
|
|
);
|
|
$expect = '<b>Foobar!</b>';
|
|
$this->assertEqual($expect, $this->gen->generateFromTokens($tokens));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|