| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862 |
- <?php
- /**
- * DboSourceTest file
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
- * Copyright 2005-2012, 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 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
- * @package Cake.Test.Case.Model.Datasource
- * @since CakePHP(tm) v 1.2.0.4206
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('Model', 'Model');
- App::uses('AppModel', 'Model');
- App::uses('DataSource', 'Model/Datasource');
- App::uses('DboSource', 'Model/Datasource');
- require_once dirname(dirname(__FILE__)) . DS . 'models.php';
- class MockPDO extends PDO {
- public function __construct() {
- }
- }
- class MockDataSource extends DataSource {
- }
- class DboTestSource extends DboSource {
- public function connect($config = array()) {
- $this->connected = true;
- }
- public function mergeAssociation(&$data, &$merge, $association, $type, $selfJoin = false) {
- return parent::_mergeAssociation($data, $merge, $association, $type, $selfJoin);
- }
- public function setConfig($config = array()) {
- $this->config = $config;
- }
- public function setConnection($conn) {
- $this->_connection = $conn;
- }
- }
- /**
- * DboSourceTest class
- *
- * @package Cake.Test.Case.Model.Datasource
- */
- class DboSourceTest extends CakeTestCase {
- /**
- * debug property
- *
- * @var mixed null
- */
- public $debug = null;
- /**
- * autoFixtures property
- *
- * @var bool false
- */
- public $autoFixtures = false;
- /**
- * fixtures property
- *
- * @var array
- */
- public $fixtures = array(
- 'core.apple', 'core.article', 'core.articles_tag', 'core.attachment', 'core.comment',
- 'core.sample', 'core.tag', 'core.user', 'core.post', 'core.author', 'core.data_test'
- );
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $this->__config = $this->db->config;
- $this->testDb = new DboTestSource();
- $this->testDb->cacheSources = false;
- $this->testDb->startQuote = '`';
- $this->testDb->endQuote = '`';
- $this->Model = new TestModel();
- }
- /**
- * endTest method
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- unset($this->Model);
- }
- /**
- * test that booleans and null make logical condition strings.
- *
- * @return void
- */
- public function testBooleanNullConditionsParsing() {
- $result = $this->testDb->conditions(true);
- $this->assertEquals(' WHERE 1 = 1', $result, 'true conditions failed %s');
- $result = $this->testDb->conditions(false);
- $this->assertEquals(' WHERE 0 = 1', $result, 'false conditions failed %s');
- $result = $this->testDb->conditions(null);
- $this->assertEquals(' WHERE 1 = 1', $result, 'null conditions failed %s');
- $result = $this->testDb->conditions(array());
- $this->assertEquals(' WHERE 1 = 1', $result, 'array() conditions failed %s');
- $result = $this->testDb->conditions('');
- $this->assertEquals(' WHERE 1 = 1', $result, '"" conditions failed %s');
- $result = $this->testDb->conditions(' ', '" " conditions failed %s');
- $this->assertEquals(' WHERE 1 = 1', $result);
- }
- /**
- * test that order() will accept objects made from DboSource::expression
- *
- * @return void
- */
- public function testOrderWithExpression() {
- $expression = $this->testDb->expression("CASE Sample.id WHEN 1 THEN 'Id One' ELSE 'Other Id' END AS case_col");
- $result = $this->testDb->order($expression);
- $expected = " ORDER BY CASE Sample.id WHEN 1 THEN 'Id One' ELSE 'Other Id' END AS case_col";
- $this->assertEquals($expected, $result);
- }
- /**
- * testMergeAssociations method
- *
- * @return void
- */
- public function testMergeAssociations() {
- $data = array('Article2' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article',
- 'body' => 'First Article Body', 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ));
- $merge = array('Topic' => array(array(
- 'id' => '1', 'topic' => 'Topic', 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- )));
- $expected = array(
- 'Article2' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article',
- 'body' => 'First Article Body', 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ),
- 'Topic' => array(
- 'id' => '1', 'topic' => 'Topic', 'created' => '2007-03-17 01:16:23',
- 'updated' => '2007-03-17 01:18:31'
- )
- );
- $this->testDb->mergeAssociation($data, $merge, 'Topic', 'hasOne');
- $this->assertEquals($expected, $data);
- $data = array('Article2' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article',
- 'body' => 'First Article Body', 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ));
- $merge = array('User2' => array(array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )));
- $expected = array(
- 'Article2' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article',
- 'body' => 'First Article Body', 'published' => 'Y',
- 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ),
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- );
- $this->testDb->mergeAssociation($data, $merge, 'User2', 'belongsTo');
- $this->assertEquals($expected, $data);
- $data = array(
- 'Article2' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- )
- );
- $merge = array(array('Comment' => false));
- $expected = array(
- 'Article2' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ),
- 'Comment' => array()
- );
- $this->testDb->mergeAssociation($data, $merge, 'Comment', 'hasMany');
- $this->assertEquals($expected, $data);
- $data = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- )
- );
- $merge = array(
- array(
- 'Comment' => array(
- 'id' => '1', 'comment' => 'Comment 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- ),
- array(
- 'Comment' => array(
- 'id' => '2', 'comment' => 'Comment 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- )
- );
- $expected = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ),
- 'Comment' => array(
- array(
- 'id' => '1', 'comment' => 'Comment 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- array(
- 'id' => '2', 'comment' => 'Comment 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- )
- );
- $this->testDb->mergeAssociation($data, $merge, 'Comment', 'hasMany');
- $this->assertEquals($expected, $data);
- $data = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- )
- );
- $merge = array(
- array(
- 'Comment' => array(
- 'id' => '1', 'comment' => 'Comment 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- ),
- array(
- 'Comment' => array(
- 'id' => '2', 'comment' => 'Comment 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- )
- );
- $expected = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ),
- 'Comment' => array(
- array(
- 'id' => '1', 'comment' => 'Comment 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31',
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- ),
- array(
- 'id' => '2', 'comment' => 'Comment 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31',
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- )
- )
- );
- $this->testDb->mergeAssociation($data, $merge, 'Comment', 'hasMany');
- $this->assertEquals($expected, $data);
- $data = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- )
- );
- $merge = array(
- array(
- 'Comment' => array(
- 'id' => '1', 'comment' => 'Comment 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- 'Tag' => array(
- array('id' => 1, 'tag' => 'Tag 1'),
- array('id' => 2, 'tag' => 'Tag 2')
- )
- ),
- array(
- 'Comment' => array(
- 'id' => '2', 'comment' => 'Comment 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- 'Tag' => array()
- )
- );
- $expected = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ),
- 'Comment' => array(
- array(
- 'id' => '1', 'comment' => 'Comment 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31',
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- 'Tag' => array(
- array('id' => 1, 'tag' => 'Tag 1'),
- array('id' => 2, 'tag' => 'Tag 2')
- )
- ),
- array(
- 'id' => '2', 'comment' => 'Comment 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31',
- 'User2' => array(
- 'id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- 'Tag' => array()
- )
- )
- );
- $this->testDb->mergeAssociation($data, $merge, 'Comment', 'hasMany');
- $this->assertEquals($expected, $data);
- $data = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- )
- );
- $merge = array(
- array(
- 'Tag' => array(
- 'id' => '1', 'tag' => 'Tag 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- ),
- array(
- 'Tag' => array(
- 'id' => '2', 'tag' => 'Tag 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- ),
- array(
- 'Tag' => array(
- 'id' => '3', 'tag' => 'Tag 3', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- )
- );
- $expected = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ),
- 'Tag' => array(
- array(
- 'id' => '1', 'tag' => 'Tag 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- array(
- 'id' => '2', 'tag' => 'Tag 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- ),
- array(
- 'id' => '3', 'tag' => 'Tag 3', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- )
- );
- $this->testDb->mergeAssociation($data, $merge, 'Tag', 'hasAndBelongsToMany');
- $this->assertEquals($expected, $data);
- $data = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- )
- );
- $merge = array(
- array(
- 'Tag' => array(
- 'id' => '1', 'tag' => 'Tag 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- ),
- array(
- 'Tag' => array(
- 'id' => '2', 'tag' => 'Tag 2', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- ),
- array(
- 'Tag' => array(
- 'id' => '3', 'tag' => 'Tag 3', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'
- )
- )
- );
- $expected = array(
- 'Article' => array(
- 'id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'
- ),
- 'Tag' => array('id' => '1', 'tag' => 'Tag 1', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31')
- );
- $this->testDb->mergeAssociation($data, $merge, 'Tag', 'hasOne');
- $this->assertEquals($expected, $data);
- }
- /**
- * testMagicMethodQuerying method
- *
- * @return void
- */
- public function testMagicMethodQuerying() {
- $result = $this->db->query('findByFieldName', array('value'), $this->Model);
- $expected = array('first', array(
- 'conditions' => array('TestModel.field_name' => 'value'),
- 'fields' => null, 'order' => null, 'recursive' => null
- ));
- $this->assertEquals($expected, $result);
- $result = $this->db->query('findByFindBy', array('value'), $this->Model);
- $expected = array('first', array(
- 'conditions' => array('TestModel.find_by' => 'value'),
- 'fields' => null, 'order' => null, 'recursive' => null
- ));
- $this->assertEquals($expected, $result);
- $result = $this->db->query('findAllByFieldName', array('value'), $this->Model);
- $expected = array('all', array(
- 'conditions' => array('TestModel.field_name' => 'value'),
- 'fields' => null, 'order' => null, 'limit' => null,
- 'page' => null, 'recursive' => null
- ));
- $this->assertEquals($expected, $result);
- $result = $this->db->query('findAllById', array('a'), $this->Model);
- $expected = array('all', array(
- 'conditions' => array('TestModel.id' => 'a'),
- 'fields' => null, 'order' => null, 'limit' => null,
- 'page' => null, 'recursive' => null
- ));
- $this->assertEquals($expected, $result);
- $result = $this->db->query('findByFieldName', array(array('value1', 'value2', 'value3')), $this->Model);
- $expected = array('first', array(
- 'conditions' => array('TestModel.field_name' => array('value1', 'value2', 'value3')),
- 'fields' => null, 'order' => null, 'recursive' => null
- ));
- $this->assertEquals($expected, $result);
- $result = $this->db->query('findByFieldName', array(null), $this->Model);
- $expected = array('first', array(
- 'conditions' => array('TestModel.field_name' => null),
- 'fields' => null, 'order' => null, 'recursive' => null
- ));
- $this->assertEquals($expected, $result);
- $result = $this->db->query('findByFieldName', array('= a'), $this->Model);
- $expected = array('first', array(
- 'conditions' => array('TestModel.field_name' => '= a'),
- 'fields' => null, 'order' => null, 'recursive' => null
- ));
- $this->assertEquals($expected, $result);
- $result = $this->db->query('findByFieldName', array(), $this->Model);
- $expected = false;
- $this->assertEquals($expected, $result);
- }
- /**
- *
- * @expectedException PDOException
- * @return void
- */
- public function testDirectCallThrowsException() {
- $result = $this->db->query('directCall', array(), $this->Model);
- }
- /**
- * testValue method
- *
- * @return void
- */
- public function testValue() {
- if ($this->db instanceof Sqlserver) {
- $this->markTestSkipped('Cannot run this test with SqlServer');
- }
- $result = $this->db->value('{$__cakeForeignKey__$}');
- $this->assertEquals('{$__cakeForeignKey__$}', $result);
- $result = $this->db->value(array('first', 2, 'third'));
- $expected = array('\'first\'', 2, '\'third\'');
- $this->assertEquals($expected, $result);
- }
- /**
- * testReconnect method
- *
- * @return void
- */
- public function testReconnect() {
- $this->testDb->reconnect(array('prefix' => 'foo'));
- $this->assertTrue($this->testDb->connected);
- $this->assertEquals('foo', $this->testDb->config['prefix']);
- }
- /**
- * testName method
- *
- * @return void
- */
- public function testName() {
- $result = $this->testDb->name('name');
- $expected = '`name`';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name(array('name', 'Model.*'));
- $expected = array('`name`', '`Model`.*');
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('MTD()');
- $expected = 'MTD()';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('(sm)');
- $expected = '(sm)';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('name AS x');
- $expected = '`name` AS `x`';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('Model.name AS x');
- $expected = '`Model`.`name` AS `x`';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('Function(Something.foo)');
- $expected = 'Function(`Something`.`foo`)';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('Function(SubFunction(Something.foo))');
- $expected = 'Function(SubFunction(`Something`.`foo`))';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('Function(Something.foo) AS x');
- $expected = 'Function(`Something`.`foo`) AS `x`';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('name-with-minus');
- $expected = '`name-with-minus`';
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name(array('my-name', 'Foo-Model.*'));
- $expected = array('`my-name`', '`Foo-Model`.*');
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name(array('Team.P%', 'Team.G/G'));
- $expected = array('`Team`.`P%`', '`Team`.`G/G`');
- $this->assertEquals($expected, $result);
- $result = $this->testDb->name('Model.name as y');
- $expected = '`Model`.`name` AS `y`';
- $this->assertEquals($expected, $result);
- }
- /**
- * test that cacheMethod works as expected
- *
- * @return void
- */
- public function testCacheMethod() {
- $this->testDb->cacheMethods = true;
- $result = $this->testDb->cacheMethod('name', 'some-key', 'stuff');
- $this->assertEquals('stuff', $result);
- $result = $this->testDb->cacheMethod('name', 'some-key');
- $this->assertEquals('stuff', $result);
- $result = $this->testDb->cacheMethod('conditions', 'some-key');
- $this->assertNull($result);
- $result = $this->testDb->cacheMethod('name', 'other-key');
- $this->assertNull($result);
- $this->testDb->cacheMethods = false;
- $result = $this->testDb->cacheMethod('name', 'some-key', 'stuff');
- $this->assertEquals('stuff', $result);
- $result = $this->testDb->cacheMethod('name', 'some-key');
- $this->assertNull($result);
- }
- /**
- * testLog method
- *
- * @outputBuffering enabled
- * @return void
- */
- public function testLog() {
- $this->testDb->logQuery('Query 1');
- $this->testDb->logQuery('Query 2');
- $log = $this->testDb->getLog(false, false);
- $result = Hash::extract($log['log'], '{n}.query');
- $expected = array('Query 1', 'Query 2');
- $this->assertEquals($expected, $result);
- $oldDebug = Configure::read('debug');
- Configure::write('debug', 2);
- ob_start();
- $this->testDb->showLog();
- $contents = ob_get_clean();
- $this->assertRegExp('/Query 1/s', $contents);
- $this->assertRegExp('/Query 2/s', $contents);
- ob_start();
- $this->testDb->showLog(true);
- $contents = ob_get_clean();
- $this->assertRegExp('/Query 1/s', $contents);
- $this->assertRegExp('/Query 2/s', $contents);
- Configure::write('debug', $oldDebug);
- }
- /**
- * test getting the query log as an array.
- *
- * @return void
- */
- public function testGetLog() {
- $this->testDb->logQuery('Query 1');
- $this->testDb->logQuery('Query 2');
- $log = $this->testDb->getLog();
- $expected = array('query' => 'Query 1', 'params' => array(), 'affected' => '', 'numRows' => '', 'took' => '');
- $this->assertEquals($expected, $log['log'][0]);
- $expected = array('query' => 'Query 2', 'params' => array(), 'affected' => '', 'numRows' => '', 'took' => '');
- $this->assertEquals($expected, $log['log'][1]);
- $expected = array('query' => 'Error 1', 'affected' => '', 'numRows' => '', 'took' => '');
- }
- /**
- * test getting the query log as an array, setting bind params.
- *
- * @return void
- */
- public function testGetLogParams() {
- $this->testDb->logQuery('Query 1', array(1,2,'abc'));
- $this->testDb->logQuery('Query 2', array('field1' => 1, 'field2' => 'abc'));
- $log = $this->testDb->getLog();
- $expected = array('query' => 'Query 1', 'params' => array(1,2,'abc'), 'affected' => '', 'numRows' => '', 'took' => '');
- $this->assertEquals($expected, $log['log'][0]);
- $expected = array('query' => 'Query 2', 'params' => array('field1' => 1, 'field2' => 'abc'), 'affected' => '', 'numRows' => '', 'took' => '');
- $this->assertEquals($expected, $log['log'][1]);
- }
- /**
- * test that query() returns boolean values from operations like CREATE TABLE
- *
- * @return void
- */
- public function testFetchAllBooleanReturns() {
- $name = $this->db->fullTableName('test_query');
- $query = "CREATE TABLE {$name} (name varchar(10));";
- $result = $this->db->query($query);
- $this->assertTrue($result, 'Query did not return a boolean');
- $query = "DROP TABLE {$name};";
- $result = $this->db->query($query);
- $this->assertTrue($result, 'Query did not return a boolean');
- }
- /**
- * test order to generate query order clause for virtual fields
- *
- * @return void
- */
- public function testVirtualFieldsInOrder() {
- $Article = ClassRegistry::init('Article');
- $Article->virtualFields = array(
- 'this_moment' => 'NOW()',
- 'two' => '1 + 1',
- );
- $order = array('two', 'this_moment');
- $result = $this->db->order($order, 'ASC', $Article);
- $expected = ' ORDER BY (1 + 1) ASC, (NOW()) ASC';
- $this->assertEquals($expected, $result);
- $order = array('Article.two', 'Article.this_moment');
- $result = $this->db->order($order, 'ASC', $Article);
- $expected = ' ORDER BY (1 + 1) ASC, (NOW()) ASC';
- $this->assertEquals($expected, $result);
- }
- /**
- * test the permutations of fullTableName()
- *
- * @return void
- */
- public function testFullTablePermutations() {
- $Article = ClassRegistry::init('Article');
- $result = $this->testDb->fullTableName($Article, false, false);
- $this->assertEquals('articles', $result);
- $Article->tablePrefix = 'tbl_';
- $result = $this->testDb->fullTableName($Article, false, false);
- $this->assertEquals('tbl_articles', $result);
- $Article->useTable = $Article->table = 'with spaces';
- $Article->tablePrefix = '';
- $result = $this->testDb->fullTableName($Article, true, false);
- $this->assertEquals('`with spaces`', $result);
- $this->loadFixtures('Article');
- $Article->useTable = $Article->table = 'articles';
- $Article->setDataSource('test');
- $testdb = $Article->getDataSource();
- $result = $testdb->fullTableName($Article, false, true);
- $this->assertEquals($testdb->getSchemaName() . '.articles', $result);
- // tests for empty schemaName
- $noschema = ConnectionManager::create('noschema', array(
- 'datasource' => 'DboTestSource'
- ));
- $Article->setDataSource('noschema');
- $Article->schemaName = null;
- $result = $noschema->fullTableName($Article, false, true);
- $this->assertEquals('articles', $result);
- }
- /**
- * test that read() only calls queryAssociation on db objects when the method is defined.
- *
- * @return void
- */
- public function testReadOnlyCallingQueryAssociationWhenDefined() {
- $this->loadFixtures('Article', 'User', 'ArticlesTag', 'Tag');
- ConnectionManager::create('test_no_queryAssociation', array(
- 'datasource' => 'MockDataSource'
- ));
- $Article = ClassRegistry::init('Article');
- $Article->Comment->useDbConfig = 'test_no_queryAssociation';
- $result = $Article->find('all');
- $this->assertTrue(is_array($result));
- }
- /**
- * test that fields() is using methodCache()
- *
- * @return void
- */
- public function testFieldsUsingMethodCache() {
- $this->testDb->cacheMethods = false;
- DboTestSource::$methodCache = array();
- $Article = ClassRegistry::init('Article');
- $this->testDb->fields($Article, null, array('title', 'body', 'published'));
- $this->assertTrue(empty(DboTestSource::$methodCache['fields']), 'Cache not empty');
- }
- /**
- * Test that group works without a model
- *
- * @return void
- */
- public function testGroupNoModel() {
- $result = $this->db->group('created');
- $this->assertEquals(' GROUP BY created', $result);
- }
- /**
- * Test getting the last error.
- */
- public function testLastError() {
- $stmt = $this->getMock('PDOStatement');
- $stmt->expects($this->any())
- ->method('errorInfo')
- ->will($this->returnValue(array('', 'something', 'bad')));
- $result = $this->db->lastError($stmt);
- $expected = 'something: bad';
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests that transaction commands are logged
- *
- * @return void
- **/
- public function testTransactionLogging() {
- $conn = $this->getMock('MockPDO');
- $db = new DboTestSource;
- $db->setConnection($conn);
- $conn->expects($this->exactly(2))->method('beginTransaction')
- ->will($this->returnValue(true));
- $conn->expects($this->once())->method('commit')->will($this->returnValue(true));
- $conn->expects($this->once())->method('rollback')->will($this->returnValue(true));
- $db->begin();
- $log = $db->getLog();
- $expected = array('query' => 'BEGIN', 'params' => array(), 'affected' => '', 'numRows' => '', 'took' => '');
- $this->assertEquals($expected, $log['log'][0]);
- $db->commit();
- $expected = array('query' => 'COMMIT', 'params' => array(), 'affected' => '', 'numRows' => '', 'took' => '');
- $log = $db->getLog();
- $this->assertEquals($expected, $log['log'][0]);
- $db->begin();
- $expected = array('query' => 'BEGIN', 'params' => array(), 'affected' => '', 'numRows' => '', 'took' => '');
- $log = $db->getLog();
- $this->assertEquals($expected, $log['log'][0]);
- $db->rollback();
- $expected = array('query' => 'ROLLBACK', 'params' => array(), 'affected' => '', 'numRows' => '', 'took' => '');
- $log = $db->getLog();
- $this->assertEquals($expected, $log['log'][0]);
- }
- /**
- * Test build statement with some fields missing
- *
- * @return void
- */
- public function testBuildStatementDefaults() {
- $conn = $this->getMock('MockPDO');
- $db = new DboTestSource;
- $db->setConnection($conn);
- $subQuery = $db->buildStatement(
- array(
- 'fields' => array('DISTINCT(AssetsTag.asset_id)'),
- 'table' => "assets_tags",
- 'alias'=>"AssetsTag",
- 'conditions' => array("Tag.name"=>'foo bar'),
- 'limit' => null,
- 'group' => "AssetsTag.asset_id"
- ),
- $this->Model
- );
- }
- }
|