summaryrefslogtreecommitdiff
path: root/Zend/tests/get_defined_functions_basic.phpt
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2013-03-14 05:42:27 +0000
committer <>2013-04-03 16:25:08 +0000
commitc4dd7a1a684490673e25aaf4fabec5df138854c4 (patch)
tree4d57c44caae4480efff02b90b9be86f44bf25409 /Zend/tests/get_defined_functions_basic.phpt
downloadphp2-master.tar.gz
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'Zend/tests/get_defined_functions_basic.phpt')
-rw-r--r--Zend/tests/get_defined_functions_basic.phpt59
1 files changed, 59 insertions, 0 deletions
diff --git a/Zend/tests/get_defined_functions_basic.phpt b/Zend/tests/get_defined_functions_basic.phpt
new file mode 100644
index 0000000..a849e32
--- /dev/null
+++ b/Zend/tests/get_defined_functions_basic.phpt
@@ -0,0 +1,59 @@
+--TEST--
+get_defined_functions() function : basic functionality
+--FILE--
+<?php
+
+/* Prototype : array get_defined_functions ( void )
+ * Description: Gets an array of all defined functions.
+ * Source code: Zend/zend_builtin_functions.c
+*/
+
+echo "*** Testing get_defined_functions() : basic functionality ***\n";
+
+function foo() {}
+
+// mixed case function
+function HelloWorld() {}
+
+Class C {
+ function f1() {}
+ static function f2() {}
+}
+
+$func = get_defined_functions();
+
+if (!is_array($func)) {
+ echo "TEST FAILED: return type not an array\n";
+}
+
+
+if (!is_array($func["internal"])) {
+ echo "TEST FAILED: no element in result array with key 'internal'\n";
+}
+
+$internal = $func["internal"];
+
+//check for a few core functions
+if (!in_array("cos", $internal) || !in_array("strlen", $internal)) {
+ echo "TEST FAILED: missing elements from 'internal' array\n";
+ var_dump($internal);
+}
+
+if (!is_array($func["user"])) {
+ echo "TEST FAILED: no element in result array with key 'user'\n";
+}
+
+$user = $func["user"];
+if (count($user) == 2 && in_array("foo", $user) && in_array("helloworld", $user)) {
+ echo "TEST PASSED\n";
+} else {
+ echo "TEST FAILED: missing elements from 'user' array\n";
+ var_dump($user);
+}
+
+?>
+===Done===
+--EXPECT--
+*** Testing get_defined_functions() : basic functionality ***
+TEST PASSED
+===Done===