2007-05-24 22:08:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'HTMLPurifier/Definition.php';
|
|
|
|
|
|
|
|
Mock::generatePartial(
|
|
|
|
'HTMLPurifier_Definition',
|
|
|
|
'HTMLPurifier_Definition_Testable',
|
|
|
|
array('doSetup'));
|
|
|
|
|
2007-08-01 14:06:59 +00:00
|
|
|
class HTMLPurifier_DefinitionTest extends HTMLPurifier_Harness
|
2007-05-24 22:08:29 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|