mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
7d2bf08d2f
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@152 48356398-32a2-884e-a903-53898d9a118a
36 lines
798 B
PHP
36 lines
798 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrDef/Enum.php';
|
|
|
|
class HTMLPurifier_AttrDef_EnumTest extends UnitTestCase
|
|
{
|
|
|
|
function testCaseInsensitive() {
|
|
|
|
$def = new HTMLPurifier_AttrDef_Enum(array('one', 'two'));
|
|
|
|
$this->assertTrue($def->validate('one'));
|
|
$this->assertTrue($def->validate('ONE'));
|
|
|
|
}
|
|
|
|
function testCaseSensitive() {
|
|
|
|
$def = new HTMLPurifier_AttrDef_Enum(array('one', 'two'), true);
|
|
|
|
$this->assertTrue($def->validate('one'));
|
|
$this->assertFalse($def->validate('ONE'));
|
|
|
|
}
|
|
|
|
function testFixing() {
|
|
|
|
$def = new HTMLPurifier_AttrDef_Enum(array('one'));
|
|
|
|
$this->assertEqual('one', $def->validate(' one '));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|