mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-08-04 21:28:06 +02:00
[1.7.0] Add DefinitionCache decorators, implement Memory decorator
- Move serialization responsibility to Config - Create DefinitionCacheFactory - Implement Null definition cache git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1117 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
65
tests/HTMLPurifier/DefinitionCacheFactoryTest.php
Normal file
65
tests/HTMLPurifier/DefinitionCacheFactoryTest.php
Normal file
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
require_once 'HTMLPurifier/DefinitionCacheFactory.php';
|
||||
|
||||
class HTMLPurifier_DefinitionCacheFactoryTest extends UnitTestCase
|
||||
{
|
||||
|
||||
var $newFactory;
|
||||
var $oldFactory;
|
||||
|
||||
function setup() {
|
||||
$new = new HTMLPurifier_DefinitionCacheFactory();
|
||||
$this->oldFactory = HTMLPurifier_DefinitionCacheFactory::instance();
|
||||
HTMLPurifier_DefinitionCacheFactory::instance($new);
|
||||
}
|
||||
|
||||
function teardown() {
|
||||
HTMLPurifier_DefinitionCacheFactory::instance($this->oldFactory);
|
||||
}
|
||||
|
||||
function test_create() {
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$factory = HTMLPurifier_DefinitionCacheFactory::instance();
|
||||
$cache = $factory->create('Test', $config);
|
||||
$this->assertEqual($cache, new HTMLPurifier_DefinitionCache_Serializer('Test'));
|
||||
}
|
||||
|
||||
function test_create_withDecorator() {
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$factory =& HTMLPurifier_DefinitionCacheFactory::instance();
|
||||
$factory->addDecorator('Memory');
|
||||
$cache =& $factory->create('Test', $config);
|
||||
$cache_real = new HTMLPurifier_DefinitionCache_Decorator_Memory();
|
||||
$cache_real = $cache_real->decorate(new HTMLPurifier_DefinitionCache_Serializer('Test'));
|
||||
$this->assertEqual($cache, $cache_real);
|
||||
}
|
||||
|
||||
function test_create_withDecoratorObject() {
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$factory =& HTMLPurifier_DefinitionCacheFactory::instance();
|
||||
$factory->addDecorator(new HTMLPurifier_DefinitionCache_Decorator_Memory());
|
||||
$cache =& $factory->create('Test', $config);
|
||||
$cache_real = new HTMLPurifier_DefinitionCache_Decorator_Memory();
|
||||
$cache_real = $cache_real->decorate(new HTMLPurifier_DefinitionCache_Serializer('Test'));
|
||||
$this->assertEqual($cache, $cache_real);
|
||||
}
|
||||
|
||||
function test_create_recycling() {
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$factory =& HTMLPurifier_DefinitionCacheFactory::instance();
|
||||
$cache =& $factory->create('Test', $config);
|
||||
$cache2 =& $factory->create('Test', $config);
|
||||
$this->assertReference($cache, $cache2);
|
||||
}
|
||||
|
||||
function test_null() {
|
||||
$config = HTMLPurifier_Config::create(array('Core.DefinitionCache' => null));
|
||||
$factory =& HTMLPurifier_DefinitionCacheFactory::instance();
|
||||
$cache =& $factory->create('Test', $config);
|
||||
$this->assertEqual($cache, new HTMLPurifier_DefinitionCache_Null('Test'));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user