| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The Open Group Test Suite License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Database\Expression;
- use Cake\Database\Expression\FunctionExpression;
- use Cake\Database\ValueBinder;
- use Cake\TestSuite\TestCase;
- /**
- * Tests FunctionExpression class
- */
- class FunctionExpressionTest extends TestCase
- {
- /**
- * Tests generating a function with no arguments
- *
- * @return void
- */
- public function testArityZero()
- {
- $f = new FunctionExpression('MyFunction');
- $this->assertEquals('MyFunction()', $f->sql(new ValueBinder));
- }
- /**
- * Tests generating a function one or multiple arguments and make sure
- * they are correctly replaced by placeholders
- *
- * @return void
- */
- public function testArityMultiplePlainValues()
- {
- $f = new FunctionExpression('MyFunction', ['foo', 'bar']);
- $binder = new ValueBinder;
- $this->assertEquals("MyFunction(:c0, :c1)", $f->sql($binder));
- $this->assertEquals('foo', $binder->bindings()[':c0']['value']);
- $this->assertEquals('bar', $binder->bindings()[':c1']['value']);
- $binder = new ValueBinder;
- $f = new FunctionExpression('MyFunction', ['bar']);
- $this->assertEquals("MyFunction(:c0)", $f->sql($binder));
- $this->assertEquals('bar', $binder->bindings()[':c0']['value']);
- }
- /**
- * Tests that it is possible to use literal strings as arguments
- *
- * @return void
- */
- public function testLiteralParams()
- {
- $binder = new ValueBinder;
- $f = new FunctionExpression('MyFunction', ['foo' => 'literal', 'bar']);
- $this->assertEquals("MyFunction(foo, :c0)", $f->sql($binder));
- }
- /**
- * Tests that it is possible to nest expression objects and pass them as arguments
- * In particular nesting multiple FunctionExpression
- *
- * @return void
- */
- public function testFunctionNesting()
- {
- $binder = new ValueBinder;
- $f = new FunctionExpression('MyFunction', ['foo', 'bar']);
- $g = new FunctionExpression('Wrapper', ['bar' => 'literal', $f]);
- $this->assertEquals("Wrapper(bar, (MyFunction(:c0, :c1)))", $g->sql($binder));
- }
- /**
- * Tests that it is possible to use a number as a literal in a function.
- *
- * @return void
- */
- public function testNumericLiteral()
- {
- $binder = new ValueBinder;
- $f = new FunctionExpression('MyFunction', ['a_field' => 'literal', '32' => 'literal']);
- $this->assertEquals('MyFunction(a_field, 32)', $f->sql($binder));
- $f = new FunctionExpression('MyFunction', ['a_field' => 'literal', 32 => 'literal']);
- $this->assertEquals('MyFunction(a_field, 32)', $f->sql($binder));
- }
- }
|