mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 14:58:42 +00:00
3b30c2ca5b
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@424 48356398-32a2-884e-a903-53898d9a118a
98 lines
3.4 KiB
PHP
98 lines
3.4 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/Config.php';
|
|
|
|
class HTMLPurifier_ConfigTest extends UnitTestCase
|
|
{
|
|
|
|
var $our_copy, $old_copy;
|
|
|
|
function setUp() {
|
|
$our_copy = new HTMLPurifier_ConfigSchema();
|
|
$this->old_copy = HTMLPurifier_ConfigSchema::instance();
|
|
$this->our_copy =& HTMLPurifier_ConfigSchema::instance($our_copy);
|
|
}
|
|
|
|
function tearDown() {
|
|
HTMLPurifier_ConfigSchema::instance($this->old_copy);
|
|
}
|
|
|
|
function test() {
|
|
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Core', 'Corestuff');
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Attr', 'Attributes');
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Extension', 'Extensible');
|
|
|
|
HTMLPurifier_ConfigSchema::define(
|
|
'Core', 'Key', false, 'bool', 'A boolean directive.'
|
|
);
|
|
HTMLPurifier_ConfigSchema::define(
|
|
'Attr', 'Key', 42, 'int', 'An integer directive.'
|
|
);
|
|
HTMLPurifier_ConfigSchema::define(
|
|
'Extension', 'Pert', 'foo', 'string', 'A string directive.'
|
|
);
|
|
HTMLPurifier_ConfigSchema::define(
|
|
'Core', 'Encoding', 'utf-8', 'istring', 'Case insensitivity!'
|
|
);
|
|
|
|
HTMLPurifier_ConfigSchema::defineAllowedValues(
|
|
'Extension', 'Pert', array('foo', 'moo')
|
|
);
|
|
HTMLPurifier_ConfigSchema::defineValueAliases(
|
|
'Extension', 'Pert', array('cow' => 'moo')
|
|
);
|
|
HTMLPurifier_ConfigSchema::defineAllowedValues(
|
|
'Core', 'Encoding', array('utf-8', 'iso-8859-1')
|
|
);
|
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
|
|
// test default value retrieval
|
|
$this->assertIdentical($config->get('Core', 'Key'), false);
|
|
$this->assertIdentical($config->get('Attr', 'Key'), 42);
|
|
$this->assertIdentical($config->get('Extension', 'Pert'), 'foo');
|
|
|
|
// set some values
|
|
$config->set('Core', 'Key', true);
|
|
$this->assertIdentical($config->get('Core', 'Key'), true);
|
|
|
|
// 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();
|
|
|
|
// try to set not allowed value
|
|
$config->set('Extension', 'Pert', 'wizard');
|
|
$this->assertError('Value not supported');
|
|
$this->assertNoErrors();
|
|
$this->swallowErrors();
|
|
|
|
// try to set not allowed value
|
|
$config->set('Extension', 'Pert', 34);
|
|
$this->assertError('Value is of invalid type');
|
|
$this->assertNoErrors();
|
|
$this->swallowErrors();
|
|
|
|
// set aliased value
|
|
$config->set('Extension', 'Pert', 'cow');
|
|
$this->assertNoErrors();
|
|
$this->assertIdentical($config->get('Extension', 'Pert'), 'moo');
|
|
|
|
// case-insensitive attempt to set value that is allowed
|
|
$config->set('Core', 'Encoding', 'ISO-8859-1');
|
|
$this->assertNoErrors();
|
|
$this->assertIdentical($config->get('Core', 'Encoding'), 'iso-8859-1');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|