mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 23:08:42 +00:00
0db1cbb7ac
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@203 48356398-32a2-884e-a903-53898d9a118a
44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/Config.php';
|
|
|
|
class HTMLPurifier_ConfigTest extends UnitTestCase
|
|
{
|
|
|
|
function test() {
|
|
|
|
$def = new HTMLPurifier_ConfigDef();
|
|
$def->info = array(
|
|
'Core' => array('Key' => false),
|
|
'Attr' => array('Key' => 42),
|
|
'Extension' => array('Pert' => 'moo')
|
|
);
|
|
|
|
$config = new HTMLPurifier_Config($def);
|
|
|
|
// test default value retrieval
|
|
$this->assertIdentical($config->get('Core', 'Key'), false);
|
|
$this->assertIdentical($config->get('Attr', 'Key'), 42);
|
|
$this->assertIdentical($config->get('Extension', 'Pert'), 'moo');
|
|
|
|
// set some values
|
|
$config->set('Core', 'Key', 'foobar');
|
|
$this->assertIdentical($config->get('Core', 'Key'), 'foobar');
|
|
|
|
// try to retrieve undefined value
|
|
$config->get('Core', 'NotDefined');
|
|
$this->assertError('Cannot retrieve value of undefined directive');
|
|
$this->assertNoErrors();
|
|
$this->swallowErrors();
|
|
|
|
// try to set undefined value
|
|
$config->set('Foobar', 'Key', 'foobar');
|
|
$this->assertError('Cannot set undefined directive to value');
|
|
$this->assertNoErrors();
|
|
$this->swallowErrors();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|