Browse Source

- MFB Add tests

experimental/phar_tar
Marcus Boerger 19 years ago
parent
commit
5dfcb7dee0
  1. 11
      ext/spl/tests/bug38325.phpt
  2. 39
      ext/spl/tests/bug40091.phpt
  3. 12
      ext/spl/tests/bug40442.phpt

11
ext/spl/tests/bug38325.phpt

@ -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

39
ext/spl/tests/bug40091.phpt

@ -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

@ -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===
Loading…
Cancel
Save