summaryrefslogtreecommitdiff
path: root/tests/CurryTest.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-12-17 15:29:44 -0500
committerSarven Capadisli <csarven@status.net>2009-12-17 15:29:44 -0500
commit31f2079490b69d7e6485b893efa78e769a156b3a (patch)
tree3ceeecc0b503bed0308835c2b41d101850b9739f /tests/CurryTest.php
parentbf123d146185ffa686396713a3d3067629047ee5 (diff)
parent7ee875b10ffbf9fae0934426d6abda2be48d01c7 (diff)
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'tests/CurryTest.php')
-rw-r--r--tests/CurryTest.php72
1 files changed, 72 insertions, 0 deletions
diff --git a/tests/CurryTest.php b/tests/CurryTest.php
new file mode 100644
index 000000000..37b66cc74
--- /dev/null
+++ b/tests/CurryTest.php
@@ -0,0 +1,72 @@
+<?php
+
+if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
+ print "This script must be run from the command line\n";
+ exit();
+}
+
+define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
+define('STATUSNET', true);
+define('LACONICA', true);
+
+require_once INSTALLDIR . '/lib/common.php';
+
+class CurryTest extends PHPUnit_Framework_TestCase
+{
+ /**
+ * @dataProvider provider
+ *
+ */
+ public function testProduction($callback, $curry_params, $call_params, $expected)
+ {
+ $params = array_merge(array($callback), $curry_params);
+ $curried = call_user_func_array('curry', $params);
+ $result = call_user_func_array($curried, $call_params);
+ $this->assertEquals($expected, $result);
+ }
+
+ static public function provider()
+ {
+ $obj = new CurryTestHelperObj('oldval');
+ return array(array(array('CurryTest', 'callback'),
+ array('curried'),
+ array('called'),
+ 'called|curried'),
+ array(array('CurryTest', 'callback'),
+ array('curried1', 'curried2'),
+ array('called1', 'called2'),
+ 'called1|called2|curried1|curried2'),
+ array(array('CurryTest', 'callbackObj'),
+ array($obj),
+ array('newval1'),
+ 'oldval|newval1'),
+ // Confirm object identity is retained...
+ array(array('CurryTest', 'callbackObj'),
+ array($obj),
+ array('newval2'),
+ 'newval1|newval2'));
+ }
+
+ static function callback()
+ {
+ $args = func_get_args();
+ return implode("|", $args);
+ }
+
+ static function callbackObj($val, $obj)
+ {
+ $old = $obj->val;
+ $obj->val = $val;
+ return "$old|$val";
+ }
+}
+
+class CurryTestHelperObj
+{
+ public $val='';
+
+ function __construct($val)
+ {
+ $this->val = $val;
+ }
+}