From 0b792021402c2fdf5ac811dece8471e2d0837b08 Mon Sep 17 00:00:00 2001 From: Ant Phillips Date: Mon, 17 Nov 2008 12:26:43 +0000 Subject: [PATCH] Commit tests for ext/reflection --- .../tests/reflectionClass_export_basic1.phpt | 62 +++++++++++++++++++ .../tests/reflectionClass_export_basic2.phpt | 54 ++++++++++++++++ .../reflectionObject___toString_basic1.phpt | 36 +++++++++++ .../reflectionObject___toString_basic2.phpt | 39 ++++++++++++ .../tests/reflectionObject_export_basic1.phpt | 36 +++++++++++ .../tests/reflectionObject_export_basic2.phpt | 39 ++++++++++++ .../tests/reflectionObject_export_basic3.phpt | 38 ++++++++++++ ...ectionProperty_constructor_variation1.phpt | 58 +++++++++++++++++ 8 files changed, 362 insertions(+) create mode 100644 ext/reflection/tests/reflectionClass_export_basic1.phpt create mode 100644 ext/reflection/tests/reflectionClass_export_basic2.phpt create mode 100644 ext/reflection/tests/reflectionObject___toString_basic1.phpt create mode 100644 ext/reflection/tests/reflectionObject___toString_basic2.phpt create mode 100644 ext/reflection/tests/reflectionObject_export_basic1.phpt create mode 100644 ext/reflection/tests/reflectionObject_export_basic2.phpt create mode 100644 ext/reflection/tests/reflectionObject_export_basic3.phpt create mode 100644 ext/reflection/tests/reflectionProperty_constructor_variation1.phpt diff --git a/ext/reflection/tests/reflectionClass_export_basic1.phpt b/ext/reflection/tests/reflectionClass_export_basic1.phpt new file mode 100644 index 0000000000..8729731f56 --- /dev/null +++ b/ext/reflection/tests/reflectionClass_export_basic1.phpt @@ -0,0 +1,62 @@ +--TEST-- +ReflectionClass::export() - various parameters +--FILE-- + +--EXPECTF-- +Class [ class C extends A ] { + @@ %s 14-14 + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ public method privf ] { + @@ %s 3 - 3 + + - Parameters [1] { + Parameter #0 [ Exception $a ] + } + } + + Method [ public method pubf ] { + @@ %s 4 - 11 + + - Parameters [8] { + Parameter #0 [ A $a ] + Parameter #1 [ $b ] + Parameter #2 [ C or NULL $c = NULL ] + Parameter #3 [ $d = '16 chars long -...' ] + Parameter #4 [ $e = '15 chars long -' ] + Parameter #5 [ $f = NULL ] + Parameter #6 [ $g = false ] + Parameter #7 [ array or NULL $h = NULL ] + } + } + } +} \ No newline at end of file diff --git a/ext/reflection/tests/reflectionClass_export_basic2.phpt b/ext/reflection/tests/reflectionClass_export_basic2.phpt new file mode 100644 index 0000000000..b6644883ee --- /dev/null +++ b/ext/reflection/tests/reflectionClass_export_basic2.phpt @@ -0,0 +1,54 @@ +--TEST-- +ReflectionClass::export() - ensure inherited private props are hidden. +--FILE-- + +--EXPECTF-- +Class [ class c ] { + @@ %s 2-5 + + - Constants [0] { + } + + - Static properties [1] { + Property [ private static $b ] + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ private $a ] + } + + - Methods [0] { + } +} + +Class [ class d extends c ] { + @@ %s 7-7 + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } +} \ No newline at end of file diff --git a/ext/reflection/tests/reflectionObject___toString_basic1.phpt b/ext/reflection/tests/reflectionObject___toString_basic1.phpt new file mode 100644 index 0000000000..fefa220c9e --- /dev/null +++ b/ext/reflection/tests/reflectionObject___toString_basic1.phpt @@ -0,0 +1,36 @@ +--TEST-- +ReflectionObject::__toString() : very basic test with no dynamic properties +--FILE-- + +--EXPECTF-- +Object of class [ class Foo ] { + @@ %s 3-5 + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ public $bar ] + } + + - Dynamic properties [0] { + } + + - Methods [0] { + } +} \ No newline at end of file diff --git a/ext/reflection/tests/reflectionObject___toString_basic2.phpt b/ext/reflection/tests/reflectionObject___toString_basic2.phpt new file mode 100644 index 0000000000..332386afd3 --- /dev/null +++ b/ext/reflection/tests/reflectionObject___toString_basic2.phpt @@ -0,0 +1,39 @@ +--TEST-- +ReflectionObject::__toString() : very basic test with dynamic properties +--FILE-- +dynProp = 'hello'; +$f->dynProp2 = 'hello again'; +echo new ReflectionObject($f); + +?> +--EXPECTF-- +Object of class [ class Foo ] { + @@ %s 3-5 + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ public $bar ] + } + + - Dynamic properties [2] { + Property [ public $dynProp ] + Property [ public $dynProp2 ] + } + + - Methods [0] { + } +} \ No newline at end of file diff --git a/ext/reflection/tests/reflectionObject_export_basic1.phpt b/ext/reflection/tests/reflectionObject_export_basic1.phpt new file mode 100644 index 0000000000..f7dfef8670 --- /dev/null +++ b/ext/reflection/tests/reflectionObject_export_basic1.phpt @@ -0,0 +1,36 @@ +--TEST-- +ReflectionObject::export() : very basic test with no dynamic properties +--FILE-- + +--EXPECTF-- +Object of class [ class Foo ] { + @@ %s 3-5 + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ public $bar ] + } + + - Dynamic properties [0] { + } + + - Methods [0] { + } +} \ No newline at end of file diff --git a/ext/reflection/tests/reflectionObject_export_basic2.phpt b/ext/reflection/tests/reflectionObject_export_basic2.phpt new file mode 100644 index 0000000000..277f06eaf5 --- /dev/null +++ b/ext/reflection/tests/reflectionObject_export_basic2.phpt @@ -0,0 +1,39 @@ +--TEST-- +ReflectionObject::export() : very basic test with dynamic properties +--FILE-- +dynProp = 'hello'; +$f->dynProp2 = 'hello again'; +ReflectionObject::export($f); + +?> +--EXPECTF-- +Object of class [ class Foo ] { + @@ %s 3-5 + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ public $bar ] + } + + - Dynamic properties [2] { + Property [ public $dynProp ] + Property [ public $dynProp2 ] + } + + - Methods [0] { + } +} \ No newline at end of file diff --git a/ext/reflection/tests/reflectionObject_export_basic3.phpt b/ext/reflection/tests/reflectionObject_export_basic3.phpt new file mode 100644 index 0000000000..7c1da34c93 --- /dev/null +++ b/ext/reflection/tests/reflectionObject_export_basic3.phpt @@ -0,0 +1,38 @@ +--TEST-- +ReflectionObject::export() - ensure dynamic property with same name as inherited private property is shown. +--FILE-- +p = 'value'; +ReflectionObject::export($Obj) +?> +--EXPECTF-- +Object of class [ class D extends C ] { + @@ %s 6-7 + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Dynamic properties [0] { + } + + - Methods [0] { + } +} + diff --git a/ext/reflection/tests/reflectionProperty_constructor_variation1.phpt b/ext/reflection/tests/reflectionProperty_constructor_variation1.phpt new file mode 100644 index 0000000000..d61480377c --- /dev/null +++ b/ext/reflection/tests/reflectionProperty_constructor_variation1.phpt @@ -0,0 +1,58 @@ +--TEST-- +ReflectionProperty::__construct(): ensure inherited private props can't be accessed through ReflectionProperty. +--FILE-- +getMessage(); + } + } +} + +class D extends C{ + static function testFromD() { + try { + $rp = new ReflectionProperty("D", "p"); + var_dump($rp); + } catch (Exception $e) { + echo $e->getMessage(); + } + } +} + +echo "--> Reflect inherited private from global scope:\n"; +try { + $rp = new ReflectionProperty("D", "p"); + var_dump($rp); +} catch (Exception $e) { + echo $e->getMessage(); +} + +echo "\n\n--> Reflect inherited private from declaring scope:\n"; +C::testFromC(); + +echo "\n\n--> Reflect inherited private from declaring scope via subclass:\n"; +D::testFromC(); + +echo "\n\n--> Reflect inherited private from subclass:\n"; +D::testFromD(); +?> +--EXPECTF-- +--> Reflect inherited private from global scope: +Property D::$p does not exist + +--> Reflect inherited private from declaring scope: +Property D::$p does not exist + +--> Reflect inherited private from declaring scope via subclass: +Property D::$p does not exist + +--> Reflect inherited private from subclass: +Property D::$p does not exist \ No newline at end of file -- 2.50.1