0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-20 03:05:18 +00:00
htmlpurifier/tests/HTMLPurifier/AttrDef/ClassTest.php
Edward Z. Yang a2fc5da060 Implement AttrDef_Class.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@157 48356398-32a2-884e-a903-53898d9a118a
2006-08-04 02:48:20 +00:00

32 lines
918 B
PHP

<?php
require_once 'HTMLPurifier/AttrDef/Class.php';
require_once 'HTMLPurifier/Config.php';
class HTMLPurifier_AttrDef_ClassTest extends UnitTestCase
{
function testDefault() {
$def = new HTMLPurifier_AttrDef_Class();
$this->assertTrue($def->validate('valid'));
$this->assertTrue($def->validate('a0-_'));
$this->assertTrue($def->validate('-valid'));
$this->assertTrue($def->validate('_valid'));
$this->assertTrue($def->validate('double valid'));
$this->assertFalse($def->validate('0invalid'));
$this->assertFalse($def->validate('-0'));
// test conditional replacement
$this->assertEqual('validassoc', $def->validate('validassoc 0invalid'));
// test whitespace leniency
$this->assertTrue('double valid', $def->validate(" double\nvalid\r"));
}
}
?>