mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
0da17072d1
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@269 48356398-32a2-884e-a903-53898d9a118a
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/StrategyHarness.php';
|
|
require_once 'HTMLPurifier/Strategy/Core.php';
|
|
|
|
class HTMLPurifier_Strategy_CoreTest
|
|
extends HTMLPurifier_StrategyHarness
|
|
{
|
|
|
|
function test() {
|
|
$strategy = new HTMLPurifier_Strategy_Core();
|
|
|
|
$inputs = array();
|
|
$expect = array();
|
|
$config = array();
|
|
|
|
$config_escape = HTMLPurifier_Config::createDefault();
|
|
$config_escape->set('Core', 'EscapeInvalidChildren', true);
|
|
|
|
$inputs[0] = '';
|
|
$expect[0] = '';
|
|
|
|
$inputs[1] = '<b>Make well formed.';
|
|
$expect[1] = '<b>Make well formed.</b>';
|
|
|
|
$inputs[2] = '<b><div>Fix nesting.</div></b>';
|
|
$expect[2] = '<b>Fix nesting.</b>';
|
|
|
|
$inputs[3] = '<asdf>Foreign element removal.</asdf>';
|
|
$expect[3] = 'Foreign element removal.';
|
|
|
|
$inputs[4] = '<foo><b><div>All three.</div></b>';
|
|
$expect[4] = '<b>All three.</b>';
|
|
|
|
$this->assertStrategyWorks($strategy, $inputs, $expect, $config);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|