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
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrDef/ID.php';
|
|
require_once 'HTMLPurifier/IDAccumulator.php';
|
|
|
|
class HTMLPurifier_AttrDef_IDTest extends UnitTestCase
|
|
{
|
|
|
|
function test() {
|
|
|
|
$acc = new HTMLPurifier_IDAccumulator();
|
|
|
|
$def = new HTMLPurifier_AttrDef_ID();
|
|
|
|
// valid ID names
|
|
$this->assertTrue($def->validate('alpha', $acc));
|
|
$this->assertTrue($def->validate('al_ha', $acc));
|
|
$this->assertTrue($def->validate('a0-:.', $acc));
|
|
$this->assertTrue($def->validate('a' , $acc));
|
|
|
|
// invalid ID names
|
|
$this->assertFalse($def->validate('<asa', $acc));
|
|
$this->assertFalse($def->validate('0123', $acc));
|
|
$this->assertFalse($def->validate('.asa', $acc));
|
|
|
|
// test duplicate detection
|
|
$this->assertFalse($def->validate('a' , $acc));
|
|
|
|
// valid once whitespace stripped, but needs to be amended
|
|
$this->assertEqual('whee', $def->validate(' whee ', $acc));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|