mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 15:28:40 +00:00
Add missing parent class Definition.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1092 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
a62f8971e4
commit
ea46d79b0a
36
library/HTMLPurifier/Definition.php
Normal file
36
library/HTMLPurifier/Definition.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Super-class for definition datatype objects, implements serialization
|
||||
* functions for the class.
|
||||
*/
|
||||
class HTMLPurifier_Definition
|
||||
{
|
||||
|
||||
/**
|
||||
* Has setup() been called yet?
|
||||
*/
|
||||
var $setup = false;
|
||||
|
||||
/**
|
||||
* Sets up the definition object into the final form, something
|
||||
* not done by the constructor
|
||||
* @param $config HTMLPurifier_Config instance
|
||||
*/
|
||||
function doSetup($config) {
|
||||
trigger_error('Cannot call abstract method', E_USER_ERROR);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setup function that aborts if already setup
|
||||
* @param $config HTMLPurifier_Config instance
|
||||
*/
|
||||
function setup($config) {
|
||||
if ($this->setup) return;
|
||||
$this->setup = true;
|
||||
$this->doSetup($config);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
33
tests/HTMLPurifier/DefinitionTest.php
Normal file
33
tests/HTMLPurifier/DefinitionTest.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
require_once 'HTMLPurifier/Definition.php';
|
||||
|
||||
Mock::generatePartial(
|
||||
'HTMLPurifier_Definition',
|
||||
'HTMLPurifier_Definition_Testable',
|
||||
array('doSetup'));
|
||||
|
||||
class HTMLPurifier_DefinitionTest extends UnitTestCase
|
||||
{
|
||||
function test_setup() {
|
||||
$def = new HTMLPurifier_Definition_Testable();
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$def->expectOnce('doSetup', array($config));
|
||||
$def->setup($config);
|
||||
}
|
||||
function test_setup_redundant() {
|
||||
$def = new HTMLPurifier_Definition_Testable();
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$def->expectNever('doSetup');
|
||||
$def->setup = true;
|
||||
$def->setup($config);
|
||||
}
|
||||
function test_doSetup_abstract() {
|
||||
$def = new HTMLPurifier_Definition();
|
||||
$this->expectError('Cannot call abstract method');
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$def->doSetup($config);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
@ -58,6 +58,7 @@ $test_files[] = 'ChildDef/TableTest.php';
|
||||
$test_files[] = 'ConfigSchemaTest.php';
|
||||
$test_files[] = 'ConfigTest.php';
|
||||
$test_files[] = 'ContextTest.php';
|
||||
$test_files[] = 'DefinitionTest.php';
|
||||
$test_files[] = 'DoctypeRegistryTest.php';
|
||||
$test_files[] = 'ElementDefTest.php';
|
||||
$test_files[] = 'EncoderTest.php';
|
||||
|
Loading…
Reference in New Issue
Block a user