2006-08-11 20:23:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'HTMLPurifier/Config.php';
|
|
|
|
|
|
|
|
class HTMLPurifier_ConfigTest extends UnitTestCase
|
|
|
|
{
|
|
|
|
|
2006-08-27 18:49:16 +00:00
|
|
|
var $our_copy, $old_copy;
|
|
|
|
|
|
|
|
function setUp() {
|
2006-09-30 18:55:17 +00:00
|
|
|
// set up a dummy schema object for testing
|
2006-09-16 22:36:58 +00:00
|
|
|
$our_copy = new HTMLPurifier_ConfigSchema();
|
|
|
|
$this->old_copy = HTMLPurifier_ConfigSchema::instance();
|
|
|
|
$this->our_copy =& HTMLPurifier_ConfigSchema::instance($our_copy);
|
2006-08-27 18:49:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function tearDown() {
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::instance($this->old_copy);
|
2006-08-27 18:49:16 +00:00
|
|
|
}
|
|
|
|
|
2006-08-11 20:23:41 +00:00
|
|
|
function test() {
|
|
|
|
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Core', 'Corestuff');
|
|
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Attr', 'Attributes');
|
|
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Extension', 'Extensible');
|
2006-08-27 18:49:16 +00:00
|
|
|
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::define(
|
2006-08-27 18:49:16 +00:00
|
|
|
'Core', 'Key', false, 'bool', 'A boolean directive.'
|
|
|
|
);
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::define(
|
2006-08-27 18:49:16 +00:00
|
|
|
'Attr', 'Key', 42, 'int', 'An integer directive.'
|
|
|
|
);
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::define(
|
2006-08-27 18:49:16 +00:00
|
|
|
'Extension', 'Pert', 'foo', 'string', 'A string directive.'
|
|
|
|
);
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::define(
|
2006-09-01 16:40:14 +00:00
|
|
|
'Core', 'Encoding', 'utf-8', 'istring', 'Case insensitivity!'
|
|
|
|
);
|
2006-08-27 18:49:16 +00:00
|
|
|
|
2006-11-12 03:35:41 +00:00
|
|
|
HTMLPurifier_ConfigSchema::define(
|
|
|
|
'Extension', 'CanBeNull', null, 'string/null', 'Null or string!'
|
|
|
|
);
|
|
|
|
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::defineAllowedValues(
|
2006-08-27 18:49:16 +00:00
|
|
|
'Extension', 'Pert', array('foo', 'moo')
|
|
|
|
);
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::defineValueAliases(
|
2006-08-27 18:49:16 +00:00
|
|
|
'Extension', 'Pert', array('cow' => 'moo')
|
2006-08-11 20:23:41 +00:00
|
|
|
);
|
2006-09-16 22:36:58 +00:00
|
|
|
HTMLPurifier_ConfigSchema::defineAllowedValues(
|
2006-09-01 16:40:14 +00:00
|
|
|
'Core', 'Encoding', array('utf-8', 'iso-8859-1')
|
|
|
|
);
|
2006-08-11 20:23:41 +00:00
|
|
|
|
2006-08-27 18:49:16 +00:00
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
2006-08-11 20:23:41 +00:00
|
|
|
|
|
|
|
// test default value retrieval
|
|
|
|
$this->assertIdentical($config->get('Core', 'Key'), false);
|
|
|
|
$this->assertIdentical($config->get('Attr', 'Key'), 42);
|
2006-08-27 18:49:16 +00:00
|
|
|
$this->assertIdentical($config->get('Extension', 'Pert'), 'foo');
|
2006-08-11 20:23:41 +00:00
|
|
|
|
|
|
|
// set some values
|
2006-08-27 18:49:16 +00:00
|
|
|
$config->set('Core', 'Key', true);
|
|
|
|
$this->assertIdentical($config->get('Core', 'Key'), true);
|
2006-08-11 20:23:41 +00:00
|
|
|
|
|
|
|
// try to retrieve undefined value
|
2007-01-20 19:22:55 +00:00
|
|
|
$this->expectError('Cannot retrieve value of undefined directive');
|
2006-08-11 20:23:41 +00:00
|
|
|
$config->get('Core', 'NotDefined');
|
|
|
|
|
|
|
|
// try to set undefined value
|
2007-01-20 19:22:55 +00:00
|
|
|
$this->expectError('Cannot set undefined directive to value');
|
2006-08-11 20:23:41 +00:00
|
|
|
$config->set('Foobar', 'Key', 'foobar');
|
|
|
|
|
2006-08-27 18:49:16 +00:00
|
|
|
// try to set not allowed value
|
2007-01-20 19:22:55 +00:00
|
|
|
$this->expectError('Value not supported');
|
2006-08-27 18:49:16 +00:00
|
|
|
$config->set('Extension', 'Pert', 'wizard');
|
|
|
|
|
|
|
|
// try to set not allowed value
|
2007-01-20 19:22:55 +00:00
|
|
|
$this->expectError('Value is of invalid type');
|
2006-08-27 18:49:16 +00:00
|
|
|
$config->set('Extension', 'Pert', 34);
|
|
|
|
|
|
|
|
// set aliased value
|
|
|
|
$config->set('Extension', 'Pert', 'cow');
|
|
|
|
$this->assertIdentical($config->get('Extension', 'Pert'), 'moo');
|
|
|
|
|
2006-09-01 16:40:14 +00:00
|
|
|
// case-insensitive attempt to set value that is allowed
|
|
|
|
$config->set('Core', 'Encoding', 'ISO-8859-1');
|
|
|
|
$this->assertIdentical($config->get('Core', 'Encoding'), 'iso-8859-1');
|
|
|
|
|
2006-11-12 03:35:41 +00:00
|
|
|
// set null to directive that allows null
|
|
|
|
$config->set('Extension', 'CanBeNull', null);
|
|
|
|
$this->assertIdentical($config->get('Extension', 'CanBeNull'), null);
|
|
|
|
|
|
|
|
$config->set('Extension', 'CanBeNull', 'foobar');
|
|
|
|
$this->assertIdentical($config->get('Extension', 'CanBeNull'), 'foobar');
|
|
|
|
|
|
|
|
// set null to directive that doesn't allow null
|
2007-01-20 19:22:55 +00:00
|
|
|
$this->expectError('Value is of invalid type');
|
2006-11-12 03:35:41 +00:00
|
|
|
$config->set('Extension', 'Pert', null);
|
|
|
|
|
2006-11-24 07:12:16 +00:00
|
|
|
// grab a namespace
|
|
|
|
$config->set('Attr', 'Key', 0xBEEF);
|
|
|
|
$this->assertIdentical(
|
|
|
|
$config->getBatch('Attr'),
|
|
|
|
array(
|
|
|
|
'Key' => 0xBEEF
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
// grab a non-existant namespace
|
2007-01-20 19:22:55 +00:00
|
|
|
$this->expectError('Cannot retrieve undefined namespace');
|
2006-11-24 07:12:16 +00:00
|
|
|
$config->getBatch('FurnishedGoods');
|
|
|
|
|
2006-08-11 20:23:41 +00:00
|
|
|
}
|
|
|
|
|
2006-09-30 18:55:17 +00:00
|
|
|
function test_getDefinition() {
|
|
|
|
|
2006-11-16 23:58:33 +00:00
|
|
|
// we actually want to use the old copy, because the definition
|
|
|
|
// generation routines have dependencies on configuration values
|
|
|
|
|
|
|
|
$this->old_copy = HTMLPurifier_ConfigSchema::instance($this->old_copy);
|
|
|
|
|
2006-09-30 18:55:17 +00:00
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
|
|
$def = $config->getHTMLDefinition();
|
|
|
|
$this->assertIsA($def, 'HTMLPurifier_HTMLDefinition');
|
|
|
|
|
|
|
|
$def = $config->getCSSDefinition();
|
|
|
|
$this->assertIsA($def, 'HTMLPurifier_CSSDefinition');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-10-21 18:18:36 +00:00
|
|
|
function test_loadArray() {
|
|
|
|
// setup a few dummy namespaces/directives for our testing
|
|
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Zoo', 'Animals we have.');
|
|
|
|
HTMLPurifier_ConfigSchema::define('Zoo', 'Aadvark', 0, 'int', 'Have?');
|
|
|
|
HTMLPurifier_ConfigSchema::define('Zoo', 'Boar', 0, 'int', 'Have?');
|
|
|
|
HTMLPurifier_ConfigSchema::define('Zoo', 'Camel', 0, 'int', 'Have?');
|
|
|
|
HTMLPurifier_ConfigSchema::define(
|
|
|
|
'Zoo', 'Others', array(), 'list', 'Other animals we have one of.'
|
|
|
|
);
|
|
|
|
|
|
|
|
$config_manual = HTMLPurifier_Config::createDefault();
|
|
|
|
$config_loadabbr = HTMLPurifier_Config::createDefault();
|
|
|
|
$config_loadfull = HTMLPurifier_Config::createDefault();
|
|
|
|
|
|
|
|
$config_manual->set('Zoo', 'Aadvark', 3);
|
|
|
|
$config_manual->set('Zoo', 'Boar', 5);
|
|
|
|
$config_manual->set('Zoo', 'Camel', 2000); // that's a lotta camels!
|
|
|
|
$config_manual->set('Zoo', 'Others', array('Peacock', 'Dodo')); // wtf!
|
|
|
|
|
|
|
|
// condensed form
|
|
|
|
$config_loadabbr->loadArray(array(
|
|
|
|
'Zoo.Aadvark' => 3,
|
|
|
|
'Zoo.Boar' => 5,
|
|
|
|
'Zoo.Camel' => 2000,
|
|
|
|
'Zoo.Others' => array('Peacock', 'Dodo')
|
|
|
|
));
|
|
|
|
|
|
|
|
// fully expanded form
|
|
|
|
$config_loadfull->loadArray(array(
|
|
|
|
'Zoo' => array(
|
|
|
|
'Aadvark' => 3,
|
|
|
|
'Boar' => 5,
|
|
|
|
'Camel' => 2000,
|
|
|
|
'Others' => array('Peacock', 'Dodo')
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertEqual($config_manual, $config_loadabbr);
|
|
|
|
$this->assertEqual($config_manual, $config_loadfull);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-12-15 02:12:03 +00:00
|
|
|
function test_create() {
|
|
|
|
|
|
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Cake', 'Properties of it.');
|
|
|
|
HTMLPurifier_ConfigSchema::define('Cake', 'Sprinkles', 666, 'int', 'Number of.');
|
|
|
|
HTMLPurifier_ConfigSchema::define('Cake', 'Flavor', 'vanilla', 'string', 'Flavor of the batter.');
|
|
|
|
|
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
|
|
$config->set('Cake', 'Sprinkles', 42);
|
|
|
|
|
|
|
|
// test flat pass-through
|
|
|
|
$created_config = HTMLPurifier_Config::create($config);
|
|
|
|
$this->assertEqual($config, $created_config);
|
|
|
|
|
|
|
|
// test loadArray
|
|
|
|
$created_config = HTMLPurifier_Config::create(array('Cake.Sprinkles' => 42));
|
|
|
|
$this->assertEqual($config, $created_config);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-20 18:43:58 +00:00
|
|
|
function testAliases() {
|
|
|
|
|
|
|
|
HTMLPurifier_ConfigSchema::defineNamespace('Home', 'Sweet home.');
|
|
|
|
HTMLPurifier_ConfigSchema::define('Home', 'Rug', 3, 'int', 'ID.');
|
|
|
|
HTMLPurifier_ConfigSchema::defineAlias('Home', 'Carpet', 'Home', 'Rug');
|
|
|
|
|
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
|
|
|
|
|
|
$this->assertEqual($config->get('Home', 'Rug'), 3);
|
|
|
|
|
|
|
|
$this->expectError('Cannot get value from aliased directive, use real name');
|
|
|
|
$config->get('Home', 'Carpet');
|
|
|
|
|
|
|
|
$config->set('Home', 'Carpet', 999);
|
|
|
|
$this->assertEqual($config->get('Home', 'Rug'), 999);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-08-11 20:23:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|