- MFB Add tests

This commit is contained in:
Marcus Boerger 2007-11-06 15:29:32 +00:00
parent c882ba8e69
commit 5dfcb7dee0
3 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--TEST--
Bug #38325 (spl_autoload_register() gaves wrong line for "class not found")
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--FILE--
<?php
spl_autoload_register();
new Foo();
?>
--EXPECTF--
Fatal error: spl_autoload(): Class Foo could not be loaded in %s on line 3

View File

@ -0,0 +1,39 @@
--TEST--
Bug #40091 (issue with spl_autoload_register() and 2 instances of the same class)
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--FILE--
<?php
class MyAutoloader {
function __construct($directory_to_use) {}
function autoload($class_name) {
// code to autoload based on directory
}
}
$autloader1 = new MyAutoloader('dir1');
spl_autoload_register(array($autloader1, 'autoload'));
$autloader2 = new MyAutoloader('dir2');
spl_autoload_register(array($autloader2, 'autoload'));
print_r(spl_autoload_functions());
?>
===DONE===
--EXPECT--
Array
(
[0] => Array
(
[0] => MyAutoloader
[1] => autoload
)
[1] => Array
(
[0] => MyAutoloader
[1] => autoload
)
)
===DONE===

12
ext/spl/tests/bug40442.phpt Executable file
View File

@ -0,0 +1,12 @@
--TEST--
Bug #40442 (ArrayObject::offsetExists broke in 5.2.1, works in 5.2.0)
--FILE--
<?php
$a = new ArrayObject();
$a->offsetSet('property', 0);
var_dump($a->offsetExists('property'));
?>
===DONE===
--EXPECT--
bool(true)
===DONE===