summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/parameters_002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/parameters_002.phpt')
-rwxr-xr-xext/reflection/tests/parameters_002.phpt209
1 files changed, 0 insertions, 209 deletions
diff --git a/ext/reflection/tests/parameters_002.phpt b/ext/reflection/tests/parameters_002.phpt
deleted file mode 100755
index 6f911448c2..0000000000
--- a/ext/reflection/tests/parameters_002.phpt
+++ /dev/null
@@ -1,209 +0,0 @@
---TEST--
-ReflectionParameter::getClass(), getDeclaringClass(), getDeclaringFunction()
---SKIPIF--
-<?php extension_loaded('reflection') or die('skip'); ?>
---FILE--
-<?php
-
-function test($nix, Array $ar, &$ref, stdClass $std, NonExistingClass $na, stdClass &$opt = NULL, $def = "FooBar")
-{
-}
-
-class test
-{
- function test($nix, Array $ar, &$ref, stdClass $std, NonExistingClass $na, stdClass $opt = NULL, $def = "FooBar")
- {
- }
-}
-
-function check_params_decl_func($r, $f)
-{
- $c = $r->$f();
- echo $f . ': ' . ($c ? ($c instanceof ReflectionMethod ? $c->class . '::' : '') . $c->name : 'NULL') . "()\n";
-}
-
-function check_params_decl_class($r, $f)
-{
- $c = $r->$f();
- echo $f . ': ' . ($c ? $c->name : 'NULL') . "\n";
-}
-
-function check_params_func($r, $f)
-{
- echo $f . ': ';
- $v = $r->$f();
- var_dump($v);
-}
-
-function check_params($r)
-{
- echo "#####" . ($r instanceof ReflectionMethod ? $r->class . '::' : '') . $r->name . "()#####\n";
- $i = 0;
- foreach($r->getParameters() as $p)
- {
- echo "===" . $i . "===\n";
- $i++;
- check_params_func($p, 'getName');
- check_params_func($p, 'isPassedByReference');
- try
- {
- check_params_decl_class($p, 'getClass');
- }
- catch(ReflectionException $e)
- {
- echo $e->getMessage() . "\n";
- }
- check_params_decl_class($p, 'getDeclaringClass');
-// check_params_decl_func($p, 'getDeclaringFunction');
- check_params_func($p, 'isArray');
- check_params_func($p, 'allowsNull');
- check_params_func($p, 'isOptional');
- check_params_func($p, 'isDefaultValueAvailable');
- if ($p->isOptional())
- {
- check_params_func($p, 'getDefaultValue');
- }
- }
-}
-
-check_params(new ReflectionFunction('test'));
-
-check_params(new ReflectionMethod('test::test'));
-
-?>
-===DONE===
-<?php exit(0); ?>
---EXPECT--
-#####test()#####
-===0===
-getName: string(3) "nix"
-isPassedByReference: bool(false)
-getClass: NULL
-getDeclaringClass: NULL
-isArray: bool(false)
-allowsNull: bool(true)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===1===
-getName: string(2) "ar"
-isPassedByReference: bool(false)
-getClass: NULL
-getDeclaringClass: NULL
-isArray: bool(true)
-allowsNull: bool(false)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===2===
-getName: string(3) "ref"
-isPassedByReference: bool(true)
-getClass: NULL
-getDeclaringClass: NULL
-isArray: bool(false)
-allowsNull: bool(true)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===3===
-getName: string(3) "std"
-isPassedByReference: bool(false)
-getClass: stdClass
-getDeclaringClass: NULL
-isArray: bool(false)
-allowsNull: bool(false)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===4===
-getName: string(2) "na"
-isPassedByReference: bool(false)
-Class NonExistingClass does not exist
-getDeclaringClass: NULL
-isArray: bool(false)
-allowsNull: bool(false)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===5===
-getName: string(3) "opt"
-isPassedByReference: bool(true)
-getClass: stdClass
-getDeclaringClass: NULL
-isArray: bool(false)
-allowsNull: bool(true)
-isOptional: bool(true)
-isDefaultValueAvailable: bool(true)
-getDefaultValue: NULL
-===6===
-getName: string(3) "def"
-isPassedByReference: bool(false)
-getClass: NULL
-getDeclaringClass: NULL
-isArray: bool(false)
-allowsNull: bool(true)
-isOptional: bool(true)
-isDefaultValueAvailable: bool(true)
-getDefaultValue: string(6) "FooBar"
-#####test::test()#####
-===0===
-getName: string(3) "nix"
-isPassedByReference: bool(false)
-getClass: NULL
-getDeclaringClass: test
-isArray: bool(false)
-allowsNull: bool(true)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===1===
-getName: string(2) "ar"
-isPassedByReference: bool(false)
-getClass: NULL
-getDeclaringClass: test
-isArray: bool(true)
-allowsNull: bool(false)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===2===
-getName: string(3) "ref"
-isPassedByReference: bool(true)
-getClass: NULL
-getDeclaringClass: test
-isArray: bool(false)
-allowsNull: bool(true)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===3===
-getName: string(3) "std"
-isPassedByReference: bool(false)
-getClass: stdClass
-getDeclaringClass: test
-isArray: bool(false)
-allowsNull: bool(false)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===4===
-getName: string(2) "na"
-isPassedByReference: bool(false)
-Class NonExistingClass does not exist
-getDeclaringClass: test
-isArray: bool(false)
-allowsNull: bool(false)
-isOptional: bool(false)
-isDefaultValueAvailable: bool(false)
-===5===
-getName: string(3) "opt"
-isPassedByReference: bool(false)
-getClass: stdClass
-getDeclaringClass: test
-isArray: bool(false)
-allowsNull: bool(true)
-isOptional: bool(true)
-isDefaultValueAvailable: bool(true)
-getDefaultValue: NULL
-===6===
-getName: string(3) "def"
-isPassedByReference: bool(false)
-getClass: NULL
-getDeclaringClass: test
-isArray: bool(false)
-allowsNull: bool(true)
-isOptional: bool(true)
-isDefaultValueAvailable: bool(true)
-getDefaultValue: string(6) "FooBar"
-===DONE===