1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-07-12 18:26:19 +02:00
Files
php-htmlpurifier/tests/HTMLPurifier/IDAccumulatorTest.php
Edward Z. Yang ec6b6821cf [2.1.4] Add information about PHP 5.0.5 or earlier.
- Fix segfault in 5.0.x with IDAccumulator test.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/branches/php4@1726 48356398-32a2-884e-a903-53898d9a118a
2008-05-16 01:25:22 +00:00

44 lines
1.3 KiB
PHP

<?php
require_once 'HTMLPurifier/IDAccumulator.php';
class HTMLPurifier_IDAccumulatorTest extends HTMLPurifier_Harness
{
function test() {
// initialize the accumulator
$accumulator = new HTMLPurifier_IDAccumulator();
$this->assertTrue( $accumulator->add('id1'));
$this->assertTrue( $accumulator->add('id2'));
$this->assertFalse($accumulator->add('id1')); // repeated id
// you can also access the properties (they're public)
$this->assertTrue( isset($accumulator->ids['id2']) );
}
function testLoad() {
$accumulator = new HTMLPurifier_IDAccumulator();
$accumulator->load(array('id1', 'id2', 'id3'));
$this->assertFalse($accumulator->add('id1')); // repeated id
$this->assertTrue($accumulator->add('id4'));
}
function testBuild() {
$this->config->set('Attr', 'IDBlacklist', array('foo'));
// For some reason, doing the static call here results in a segfault
// for early versions of PHP 5.0.x
$acc = new HTMLPurifier_IDAccumulator();
$accumulator = $acc->build($this->config, $this->context);
$this->assertTrue( isset($accumulator->ids['foo']) );
}
}