mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-08-06 14:16:32 +02:00
All PHPT tests for now complete! Fix an SPL autoload bug.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1564 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
9
tests/HTMLPurifier/PHPT/func.phpt
Normal file
9
tests/HTMLPurifier/PHPT/func.phpt
Normal file
@@ -0,0 +1,9 @@
|
||||
--TEST--
|
||||
HTMLPurifier.func.php test
|
||||
--FILE--
|
||||
<?php
|
||||
require '../library/HTMLPurifier.auto.php';
|
||||
require 'HTMLPurifier.func.php';
|
||||
echo HTMLPurifier('<b>Salsa!');
|
||||
--EXPECT--
|
||||
<b>Salsa!</b>
|
@@ -1,5 +1,5 @@
|
||||
--TEST--
|
||||
HTMLPurifier.auto.php using spl_autoload_register with userland __autoload loading test
|
||||
HTMLPurifier.auto.php using spl_autoload_register with user registration loading test
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!function_exists('spl_autoload_register')) {
|
||||
@@ -7,10 +7,12 @@ if (!function_exists('spl_autoload_register')) {
|
||||
}
|
||||
--FILE--
|
||||
<?php
|
||||
function __autoload($class) {
|
||||
function my_autoload($class) {
|
||||
echo "Autoloading $class..." . PHP_EOL;
|
||||
eval("class $class {}");
|
||||
return true;
|
||||
}
|
||||
spl_autoload_register('my_autoload');
|
||||
|
||||
require '../library/HTMLPurifier.auto.php';
|
||||
require 'HTMLPurifier/PHPT/loading/_autoload.inc';
|
9
tests/HTMLPurifier/PHPT/utf8.phpt
Normal file
9
tests/HTMLPurifier/PHPT/utf8.phpt
Normal file
@@ -0,0 +1,9 @@
|
||||
--TEST--
|
||||
UTF-8 smoketest
|
||||
--FILE--
|
||||
<?php
|
||||
require '../library/HTMLPurifier.auto.php';
|
||||
$purifier = new HTMLPurifier();
|
||||
echo $purifier->purify('太極拳, ЊЎЖ, لمنس');
|
||||
--EXPECT--
|
||||
太極拳, ЊЎЖ, لمنس
|
Reference in New Issue
Block a user