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;
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testNull()
|
|
|
|
{
|
2006-11-22 18:17:39 +00:00
|
|
|
$this->assertPurification("Null byte\0", "Null byte");
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public 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
|
|
|
);
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-12-20 23:51:09 +00:00
|
|
|
$this->assertIsA($this->purifier->context, 'array');
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-12-20 23:51:09 +00:00
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2019-07-14 18:10:33 +00:00
|
|
|
public function test_purifyArray_nested()
|
|
|
|
{
|
|
|
|
$this->assertIdentical(
|
|
|
|
$this->purifier->purifyArray(
|
|
|
|
array('Good', '<b>Sketchy', 'foo' => array('bar' => '<script>bad</script>'))
|
|
|
|
),
|
|
|
|
array('Good', '<b>Sketchy</b>', 'foo' => array('bar' => ''))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-22 17:12:02 +00:00
|
|
|
public function test_purifyArray_empty() {
|
|
|
|
$purifiedEmptyArray = $this->purifier->purifyArray(array());
|
|
|
|
$this->assertTrue(
|
|
|
|
empty($purifiedEmptyArray)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public 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);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testMakeAbsolute()
|
|
|
|
{
|
2009-02-20 00:17:49 +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-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function testDisableResources()
|
|
|
|
{
|
2012-03-02 18:25:00 +00:00
|
|
|
$this->config->set('URI.DisableResources', true);
|
|
|
|
$this->assertPurification('<img src="foo.jpg" />', '');
|
|
|
|
}
|
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function test_addFilter_deprecated()
|
|
|
|
{
|
2008-04-22 06:40:04 +00:00
|
|
|
$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
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-09-01 17:56:55 +00:00
|
|
|
}
|
|
|
|
|
2008-12-06 09:24:59 +00:00
|
|
|
// vim: et sw=4 sts=4
|