mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-01-08 23:11:52 +00:00
f3646a3a06
- Add context parameter to AttrTransform objects. - Update documentation on attribute transformations in ValidateAttributes.php git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@493 48356398-32a2-884e-a903-53898d9a118a
25 lines
816 B
PHP
25 lines
816 B
PHP
<?php
|
|
|
|
// todo: change testing harness from accepting arrays to
|
|
// have one call per test
|
|
|
|
class HTMLPurifier_AttrTransformHarness extends UnitTestCase
|
|
{
|
|
|
|
var $transform;
|
|
|
|
function assertTransform($inputs, $expect, $config = array(), $context = array()) {
|
|
$default_config = HTMLPurifier_Config::createDefault();
|
|
$default_context = new HTMLPurifier_Context();
|
|
foreach ($inputs as $i => $input) {
|
|
if (!isset($config[$i])) $config[$i] = $default_config;
|
|
if (!isset($context[$i])) $context[$i] = $default_context;
|
|
$result = $this->transform->transform($input, $config[$i], $context[$i]);
|
|
if ($expect[$i] === true) $expect[$i] = $input;
|
|
$this->assertEqual($expect[$i], $result, "Test $i: %s");
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|