mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-10-15 14:14:24 +02:00
Implement ReverseAdapter. Also, debug some order of execution things in the Adapter.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1532 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
60
tests/ConfigSchema/StringHashReverseAdapterTest.php
Normal file
60
tests/ConfigSchema/StringHashReverseAdapterTest.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
class ConfigSchema_StringHashReverseAdapterTest extends UnitTestCase
|
||||
{
|
||||
|
||||
function makeSchema() {
|
||||
$schema = new HTMLPurifier_ConfigSchema();
|
||||
$schema->addNamespace('Ns', 'Description of ns.');
|
||||
$schema->addNamespace('Ns2', 'Description of ns2.');
|
||||
$schema->add('Ns', 'Dir', 'dairy', 'string',
|
||||
"Description of default.\n");
|
||||
$schema->addAllowedValues('Ns', 'Dir', array('dairy', 'meat'));
|
||||
$schema->addValueAliases('Ns', 'Dir', array('milk' => 'dairy', 'cheese' => 'dairy'));
|
||||
$schema->addAlias('Ns', 'Dir2', 'Ns', 'Dir');
|
||||
$schema->addAlias('Ns2', 'Dir', 'Ns', 'Dir');
|
||||
return $schema;
|
||||
}
|
||||
|
||||
function testNamespace() {
|
||||
$adapter = new ConfigSchema_StringHashReverseAdapter($this->makeSchema());
|
||||
$result = $adapter->get('Ns');
|
||||
$expect = array(
|
||||
'ID' => 'Ns',
|
||||
'DESCRIPTION' => "Description of ns.",
|
||||
);
|
||||
$this->assertIdentical($result, $expect);
|
||||
}
|
||||
|
||||
function testBadNamespace() {
|
||||
$adapter = new ConfigSchema_StringHashReverseAdapter($this->makeSchema());
|
||||
$this->expectError("Namespace 'BadNs' doesn't exist in schema");
|
||||
$adapter->get('BadNs');
|
||||
}
|
||||
|
||||
function testDirective() {
|
||||
|
||||
$adapter = new ConfigSchema_StringHashReverseAdapter($this->makeSchema());
|
||||
|
||||
$result = $adapter->get('Ns', 'Dir');
|
||||
$expect = array(
|
||||
'ID' => 'Ns.Dir',
|
||||
'TYPE' => 'string',
|
||||
'DEFAULT' => "'dairy'",
|
||||
'DESCRIPTION' => "Description of default.\n",
|
||||
'ALLOWED' => "'dairy', 'meat'",
|
||||
'VALUE-ALIASES' => "'milk' => 'dairy',\n'cheese' => 'dairy',\n",
|
||||
'ALIASES' => "Ns.Dir2, Ns2.Dir",
|
||||
);
|
||||
|
||||
$this->assertIdentical($result, $expect);
|
||||
|
||||
}
|
||||
|
||||
function testBadDirective() {
|
||||
$adapter = new ConfigSchema_StringHashReverseAdapter($this->makeSchema());
|
||||
$this->expectError("Directive 'BadNs.BadDir' doesn't exist in schema");
|
||||
$adapter->get('BadNs', 'BadDir');
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user