mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
69996acc9e
- Factored out large portion of ValidateAttributes to AttrValidator - Implemented ValidateAttributes armor - Fix clear cache bug - Implement armoring for ValidateAttributes git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1174 48356398-32a2-884e-a903-53898d9a118a
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrTransform/ImgRequired.php';
|
|
require_once 'HTMLPurifier/AttrTransformHarness.php';
|
|
|
|
class HTMLPurifier_AttrTransform_ImgRequiredTest extends HTMLPurifier_AttrTransformHarness
|
|
{
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
$this->obj = new HTMLPurifier_AttrTransform_ImgRequired();
|
|
}
|
|
|
|
function test() {
|
|
|
|
$this->assertResult(
|
|
array(),
|
|
array('src' => '', 'alt' => 'Invalid image'),
|
|
array(
|
|
'Core.RemoveInvalidImg' => false
|
|
)
|
|
);
|
|
|
|
$this->assertResult(
|
|
array(),
|
|
array('src' => 'blank.png', 'alt' => 'Pawned!'),
|
|
array(
|
|
'Attr.DefaultInvalidImage' => 'blank.png',
|
|
'Attr.DefaultInvalidImageAlt' => 'Pawned!',
|
|
'Core.RemoveInvalidImg' => false
|
|
)
|
|
);
|
|
|
|
$this->assertResult(
|
|
array('src' => '/path/to/foobar.png'),
|
|
array('src' => '/path/to/foobar.png', 'alt' => 'foobar.png')
|
|
);
|
|
|
|
$this->assertResult(
|
|
array('alt' => 'intrigue'),
|
|
array('alt' => 'intrigue', 'src' => ''),
|
|
array(
|
|
'Core.RemoveInvalidImg' => false
|
|
)
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|