mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
38 lines
1.0 KiB
PHP
38 lines
1.0 KiB
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/Strategy/RemoveForeignElements.php';
|
||
|
|
||
|
class HTMLPurifier_Strategy_RemoveForeignElementsTest
|
||
|
extends HTMLPurifier_StrategyAbstractTest
|
||
|
{
|
||
|
|
||
|
function test() {
|
||
|
|
||
|
$strategy = new HTMLPurifier_Strategy_RemoveForeignElements();
|
||
|
|
||
|
$inputs = array();
|
||
|
$expect = array();
|
||
|
|
||
|
$inputs[0] = '';
|
||
|
$expect[0] = $inputs[0];
|
||
|
|
||
|
$inputs[1] = 'This is <b>bold text</b>.';
|
||
|
$expect[1] = $inputs[1];
|
||
|
|
||
|
// [INVALID]
|
||
|
$inputs[2] = '<asdf>Bling</asdf><d href="bang">Bong</d><foobar />';
|
||
|
$expect[2] = htmlspecialchars($inputs[2]);
|
||
|
|
||
|
foreach ($inputs as $i => $input) {
|
||
|
$tokens = $this->lex->tokenizeHTML($input);
|
||
|
$result_tokens = $this->strategy->execute($tokens);
|
||
|
$result = $this->gen->generateFromTokens($result_tokens);
|
||
|
$this->assertEqual($expect[$i], $result, "Test $i: %s");
|
||
|
paintIf($result, $result != $expect[$i]);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|