mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-08-03 04:37:39 +02:00
Add IDAccumulator.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@129 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
27
library/HTMLPurifier/IDAccumulator.php
Normal file
27
library/HTMLPurifier/IDAccumulator.php
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class HTMLPurifier_IDAccumulator
|
||||||
|
{
|
||||||
|
|
||||||
|
var $ids = array();
|
||||||
|
|
||||||
|
function &instance() {
|
||||||
|
static $instance = null;
|
||||||
|
if (empty($instance)) {
|
||||||
|
$instance = new HTMLPurifier_IDAccumulator();
|
||||||
|
}
|
||||||
|
return $instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
function add($id) {
|
||||||
|
if (isset($this->ids[$id])) return false;
|
||||||
|
return $this->ids[$id] = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function reset() {
|
||||||
|
$this->ids = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
26
tests/HTMLPurifier/IDAccumulatorTest.php
Normal file
26
tests/HTMLPurifier/IDAccumulatorTest.php
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require_once 'HTMLPurifier/IDAccumulator.php';
|
||||||
|
|
||||||
|
class HTMLPurifier_IDAccumulatorTest extends UnitTestCase
|
||||||
|
{
|
||||||
|
|
||||||
|
function test() {
|
||||||
|
|
||||||
|
// initialize the accumulator
|
||||||
|
$accumulator = HTMLPurifier_IDAccumulator::instance();
|
||||||
|
$accumulator->reset();
|
||||||
|
|
||||||
|
$this->assertTrue( $accumulator->add('id1'));
|
||||||
|
$this->assertTrue( $accumulator->add('id2'));
|
||||||
|
$this->assertFalse($accumulator->add('id1')); // repeated id
|
||||||
|
$accumulator->reset();
|
||||||
|
|
||||||
|
$this->assertTrue( $accumulator->add('id2')); // test reset
|
||||||
|
$accumulator->reset();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
@@ -33,6 +33,7 @@ $test->addTestFile('HTMLPurifier/Strategy/FixNestingTest.php');
|
|||||||
$test->addTestFile('HTMLPurifier/Strategy/CompositeTest.php');
|
$test->addTestFile('HTMLPurifier/Strategy/CompositeTest.php');
|
||||||
$test->addTestFile('HTMLPurifier/Strategy/CoreTest.php');
|
$test->addTestFile('HTMLPurifier/Strategy/CoreTest.php');
|
||||||
$test->addTestFile('HTMLPurifier/AttrDef/EnumTest.php');
|
$test->addTestFile('HTMLPurifier/AttrDef/EnumTest.php');
|
||||||
|
$test->addTestFile('HTMLPurifier/IDAccumulatorTest.php');
|
||||||
|
|
||||||
$test->run( new HtmlReporter() );
|
$test->run( new HtmlReporter() );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user