mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-13 00:38:42 +00:00
784b756b3f
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@156 48356398-32a2-884e-a903-53898d9a118a
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrDef/ID.php';
|
|
require_once 'HTMLPurifier/IDAccumulator.php';
|
|
require_once 'HTMLPurifier/Config.php';
|
|
|
|
class HTMLPurifier_AttrDef_IDTest extends UnitTestCase
|
|
{
|
|
|
|
function test() {
|
|
|
|
$acc = new HTMLPurifier_IDAccumulator();
|
|
$def = new HTMLPurifier_AttrDef_ID();
|
|
|
|
generate_mock_once('HTMLPurifier_Config');
|
|
|
|
$config = new HTMLPurifier_ConfigMock();
|
|
|
|
// valid ID names
|
|
$this->assertTrue($def->validate('alpha', $config, $acc));
|
|
$this->assertTrue($def->validate('al_ha', $config, $acc));
|
|
$this->assertTrue($def->validate('a0-:.', $config, $acc));
|
|
$this->assertTrue($def->validate('a' , $config, $acc));
|
|
|
|
// invalid ID names
|
|
$this->assertFalse($def->validate('<asa', $config, $acc));
|
|
$this->assertFalse($def->validate('0123', $config, $acc));
|
|
$this->assertFalse($def->validate('.asa', $config, $acc));
|
|
|
|
// test duplicate detection
|
|
$this->assertFalse($def->validate('a' , $config, $acc));
|
|
|
|
// valid once whitespace stripped, but needs to be amended
|
|
$this->assertEqual('whee', $def->validate(' whee ', $config, $acc));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|