mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-08-06 06:07:26 +02:00
Factor out definitions to a ['child'] so that we could assign the ['attr'] definitions separately.
Also, added AttrDef/EnumTest.php git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@127 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
28
tests/HTMLPurifier/AttrDef/EnumTest.php
Normal file
28
tests/HTMLPurifier/AttrDef/EnumTest.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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'));
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
@@ -32,6 +32,7 @@ $test->addTestFile('HTMLPurifier/Strategy/MakeWellFormedTest.php');
|
||||
$test->addTestFile('HTMLPurifier/Strategy/FixNestingTest.php');
|
||||
$test->addTestFile('HTMLPurifier/Strategy/CompositeTest.php');
|
||||
$test->addTestFile('HTMLPurifier/Strategy/CoreTest.php');
|
||||
$test->addTestFile('HTMLPurifier/AttrDef/EnumTest.php');
|
||||
|
||||
$test->run( new HtmlReporter() );
|
||||
|
||||
|
Reference in New Issue
Block a user