2006-09-01 17:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
2007-08-04 14:51:06 +00:00
|
|
|
class HTMLPurifierTest extends HTMLPurifier_Harness
|
2006-09-01 17:56:55 +00:00
|
|
|
{
|
2007-11-25 02:24:39 +00:00
|
|
|
protected $purifier;
|
2006-09-01 17:56:55 +00:00
|
|
|
|
2006-11-22 18:17:39 +00:00
|
|
|
function testNull() {
|
|
|
|
$this->assertPurification("Null byte\0", "Null byte");
|
|
|
|
}
|
2008-04-26 03:14:01 +00:00
|
|
|
|
2006-12-20 23:51:09 +00:00
|
|
|
function test_purifyArray() {
|
|
|
|
|
2007-05-05 20:17:04 +00:00
|
|
|
$this->assertIdentical(
|
2006-12-20 23:51:09 +00:00
|
|
|
$this->purifier->purifyArray(
|
|
|
|
array('Good', '<b>Sketchy', 'foo' => '<script>bad</script>')
|
|
|
|
),
|
2007-06-16 19:31:45 +00:00
|
|
|
array('Good', '<b>Sketchy</b>', 'foo' => '')
|
2006-12-20 23:51:09 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertIsA($this->purifier->context, 'array');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-08-03 15:11:08 +00:00
|
|
|
function testGetInstance() {
|
2008-02-17 18:21:45 +00:00
|
|
|
$purifier = HTMLPurifier::getInstance();
|
|
|
|
$purifier2 = HTMLPurifier::getInstance();
|
2007-08-03 15:11:08 +00:00
|
|
|
$this->assertReference($purifier, $purifier2);
|
|
|
|
}
|
|
|
|
|
2007-08-03 21:17:15 +00:00
|
|
|
function testMakeAbsolute() {
|
2008-04-26 03:14:01 +00:00
|
|
|
$this->config->set('URI', 'Base', 'http://example.com/bar/baz.php');
|
|
|
|
$this->config->set('URI', 'MakeAbsolute', true);
|
2007-08-03 21:17:15 +00:00
|
|
|
$this->assertPurification(
|
|
|
|
'<a href="foo.txt">Foobar</a>',
|
2008-04-26 03:14:01 +00:00
|
|
|
'<a href="http://example.com/bar/foo.txt">Foobar</a>'
|
2007-08-03 21:17:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-04-22 06:40:04 +00:00
|
|
|
function test_addFilter_deprecated() {
|
|
|
|
$this->expectError('HTMLPurifier->addFilter() is deprecated, use configuration directives in the Filter namespace or Filter.Custom');
|
|
|
|
generate_mock_once('HTMLPurifier_Filter');
|
2008-04-26 03:14:01 +00:00
|
|
|
$this->purifier->addFilter($mock = new HTMLPurifier_FilterMock());
|
2008-04-22 06:40:04 +00:00
|
|
|
$mock->expectOnce('preFilter');
|
|
|
|
$mock->expectOnce('postFilter');
|
2008-04-26 03:14:01 +00:00
|
|
|
$this->purifier->purify('foo');
|
2008-04-22 06:40:04 +00:00
|
|
|
}
|
|
|
|
|
2006-09-01 17:56:55 +00:00
|
|
|
}
|
|
|
|
|