first commit
This commit is contained in:
36
htmlpurifier-4.10.0/tests/HTMLPurifier/DefinitionCacheHarness.php
Executable file
36
htmlpurifier-4.10.0/tests/HTMLPurifier/DefinitionCacheHarness.php
Executable file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
class HTMLPurifier_DefinitionCacheHarness extends HTMLPurifier_Harness
|
||||
{
|
||||
|
||||
/**
|
||||
* Generate a configuration mock object that returns $values
|
||||
* to a getBatch() call
|
||||
* @param $values Values to return when getBatch is invoked
|
||||
*/
|
||||
protected function generateConfigMock($serial = 'defaultserial')
|
||||
{
|
||||
generate_mock_once('HTMLPurifier_Config');
|
||||
$config = new HTMLPurifier_ConfigMock();
|
||||
$config->returns('getBatchSerial', $serial, array('Test'));
|
||||
$config->version = '1.0.0';
|
||||
return $config;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an anonymous def that has been setup and named Test
|
||||
*/
|
||||
protected function generateDefinition($member_vars = array())
|
||||
{
|
||||
$def = new HTMLPurifier_DefinitionTestable();
|
||||
$def->setup = true;
|
||||
$def->type = 'Test';
|
||||
foreach ($member_vars as $key => $val) {
|
||||
$def->$key = $val;
|
||||
}
|
||||
return $def;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// vim: et sw=4 sts=4
|
Reference in New Issue
Block a user