QueryTest.php 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757
  1. <?php
  2. /**
  3. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  4. * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  5. *
  6. * Licensed under The MIT License
  7. * For full copyright and license information, please see the LICENSE.txt
  8. * Redistributions of files must retain the above copyright notice.
  9. *
  10. * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  11. * @link http://cakephp.org CakePHP(tm) Project
  12. * @since 3.0.0
  13. * @license http://www.opensource.org/licenses/mit-license.php MIT License
  14. */
  15. namespace Cake\Test\TestCase\Database;
  16. use Cake\Core\Configure;
  17. use Cake\Database\Expression\IdentifierExpression;
  18. use Cake\Database\Query;
  19. use Cake\Datasource\ConnectionManager;
  20. use Cake\TestSuite\TestCase;
  21. /**
  22. * Tests Query class
  23. *
  24. */
  25. class QueryTest extends TestCase {
  26. public $fixtures = ['core.article', 'core.author', 'core.comment'];
  27. const ARTICLE_COUNT = 3;
  28. const AUTHOR_COUNT = 4;
  29. const COMMENT_COUNT = 6;
  30. public function setUp() {
  31. parent::setUp();
  32. $this->connection = ConnectionManager::get('test');
  33. $this->autoQuote = $this->connection->driver()->autoQuoting();
  34. }
  35. public function tearDown() {
  36. parent::tearDown();
  37. $this->connection->driver()->autoQuoting($this->autoQuote);
  38. unset($this->connection);
  39. }
  40. /**
  41. * Queries need a default type to prevent fatal errors
  42. * when an uninitialized query has its sql() method called.
  43. *
  44. * @return void
  45. */
  46. public function testDefaultType() {
  47. $query = new Query($this->connection);
  48. $this->assertEquals('', $query->sql());
  49. $this->assertEquals('select', $query->type());
  50. }
  51. /**
  52. * Tests that it is possible to obtain expression results from a query
  53. *
  54. * @return void
  55. */
  56. public function testSelectFieldsOnly() {
  57. $this->connection->driver()->autoQuoting(false);
  58. $query = new Query($this->connection);
  59. $result = $query->select('1 + 1')->execute();
  60. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  61. $this->assertEquals([2], $result->fetch());
  62. //This new field should be appended
  63. $result = $query->select(array('1 + 3'))->execute();
  64. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  65. $this->assertEquals([2, 4], $result->fetch());
  66. //This should now overwrite all previous fields
  67. $result = $query->select(array('1 + 2', '1 + 5'), true)->execute();
  68. $this->assertEquals([3, 6], $result->fetch());
  69. }
  70. /**
  71. * Tests that it is possible to pass a closure as fields in select()
  72. *
  73. * @return void
  74. */
  75. public function testSelectClosure() {
  76. $this->connection->driver()->autoQuoting(false);
  77. $query = new Query($this->connection);
  78. $result = $query->select(function($q) use ($query) {
  79. $this->assertSame($query, $q);
  80. return ['1 + 2', '1 + 5'];
  81. })->execute();
  82. $this->assertEquals([3, 6], $result->fetch());
  83. }
  84. /**
  85. * Tests it is possible to select fields from tables with no conditions
  86. *
  87. * @return void
  88. */
  89. public function testSelectFieldsFromTable() {
  90. $query = new Query($this->connection);
  91. $result = $query->select(array('body', 'author_id'))->from('articles')->execute();
  92. $this->assertEquals(array('body' => 'First Article Body', 'author_id' => 1), $result->fetch('assoc'));
  93. $this->assertEquals(array('body' => 'Second Article Body', 'author_id' => 3), $result->fetch('assoc'));
  94. //Append more tables to next execution
  95. $result = $query->select('name')->from(array('authors'))->order(['name' => 'desc', 'articles.id' => 'asc'])->execute();
  96. $this->assertEquals(array('body' => 'First Article Body', 'author_id' => 1, 'name' => 'nate'), $result->fetch('assoc'));
  97. $this->assertEquals(array('body' => 'Second Article Body', 'author_id' => 3, 'name' => 'nate'), $result->fetch('assoc'));
  98. $this->assertEquals(array('body' => 'Third Article Body', 'author_id' => 1, 'name' => 'nate'), $result->fetch('assoc'));
  99. // Overwrite tables and only fetch from authors
  100. $result = $query->select('name', true)->from('authors', true)->order(['name' => 'desc'], true)->execute();
  101. $this->assertEquals(array('nate'), $result->fetch());
  102. $this->assertEquals(array('mariano'), $result->fetch());
  103. $this->assertCount(4, $result);
  104. }
  105. /**
  106. * Tests it is possible to select aliased fields
  107. *
  108. * @return void
  109. */
  110. public function testSelectAliasedFieldsFromTable() {
  111. $query = new Query($this->connection);
  112. $result = $query->select(['text' => 'body', 'author_id'])->from('articles')->execute();
  113. $this->assertEquals(array('text' => 'First Article Body', 'author_id' => 1), $result->fetch('assoc'));
  114. $this->assertEquals(array('text' => 'Second Article Body', 'author_id' => 3), $result->fetch('assoc'));
  115. $query = new Query($this->connection);
  116. $result = $query->select(['text' => 'body', 'author' => 'author_id'])->from('articles')->execute();
  117. $this->assertEquals(array('text' => 'First Article Body', 'author' => 1), $result->fetch('assoc'));
  118. $this->assertEquals(array('text' => 'Second Article Body', 'author' => 3), $result->fetch('assoc'));
  119. $query = new Query($this->connection);
  120. $query->select(['text' => 'body'])->select(['author_id', 'foo' => 'body']);
  121. $result = $query->from('articles')->execute();
  122. $this->assertEquals(array('foo' => 'First Article Body', 'text' => 'First Article Body', 'author_id' => 1), $result->fetch('assoc'));
  123. $this->assertEquals(array('foo' => 'Second Article Body', 'text' => 'Second Article Body', 'author_id' => 3), $result->fetch('assoc'));
  124. $query = new Query($this->connection);
  125. $exp = $query->newExpr('1 + 1');
  126. $comp = $query->newExpr(['author_id +' => 2]);
  127. $result = $query->select(['text' => 'body', 'two' => $exp, 'three' => $comp])
  128. ->from('articles')->execute();
  129. $this->assertEquals(array('text' => 'First Article Body', 'two' => 2, 'three' => 3), $result->fetch('assoc'));
  130. $this->assertEquals(array('text' => 'Second Article Body', 'two' => 2, 'three' => 5), $result->fetch('assoc'));
  131. }
  132. /**
  133. * Tests that tables can also be aliased and referenced in the select clause using such alias
  134. *
  135. * @return void
  136. */
  137. public function testSelectAliasedTables() {
  138. $query = new Query($this->connection);
  139. $result = $query->select(['text' => 'a.body', 'a.author_id'])
  140. ->from(['a' => 'articles'])->execute();
  141. $this->assertEquals(['text' => 'First Article Body', 'author_id' => 1], $result->fetch('assoc'));
  142. $this->assertEquals(['text' => 'Second Article Body', 'author_id' => 3], $result->fetch('assoc'));
  143. $result = $query->select(['name' => 'b.name'])->from(['b' => 'authors'])
  144. ->order(['text' => 'desc', 'name' => 'desc'])
  145. ->execute();
  146. $this->assertEquals(
  147. ['text' => 'Third Article Body', 'author_id' => 1, 'name' => 'nate'],
  148. $result->fetch('assoc')
  149. );
  150. $this->assertEquals(
  151. ['text' => 'Third Article Body', 'author_id' => 1, 'name' => 'mariano'],
  152. $result->fetch('assoc')
  153. );
  154. }
  155. /**
  156. * Tests it is possible to add joins to a select query
  157. *
  158. * @return void
  159. */
  160. public function testSelectWithJoins() {
  161. $query = new Query($this->connection);
  162. $result = $query
  163. ->select(['title', 'name'])
  164. ->from('articles')
  165. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  166. ->order(['title' => 'asc'])
  167. ->execute();
  168. $this->assertCount(3, $result);
  169. $this->assertEquals(array('title' => 'First Article', 'name' => 'mariano'), $result->fetch('assoc'));
  170. $this->assertEquals(array('title' => 'Second Article', 'name' => 'larry'), $result->fetch('assoc'));
  171. $result = $query->join('authors', [], true)->execute();
  172. $this->assertCount(12, $result, 'Cross join results in 12 records');
  173. $result = $query->join([
  174. ['table' => 'authors', 'type' => 'INNER', 'conditions' => 'author_id = authors.id']
  175. ], [], true)->execute();
  176. $this->assertCount(3, $result);
  177. $this->assertEquals(array('title' => 'First Article', 'name' => 'mariano'), $result->fetch('assoc'));
  178. $this->assertEquals(array('title' => 'Second Article', 'name' => 'larry'), $result->fetch('assoc'));
  179. }
  180. /**
  181. * Tests it is possible to add joins to a select query using array or expression as conditions
  182. *
  183. * @return void
  184. */
  185. public function testSelectWithJoinsConditions() {
  186. $query = new Query($this->connection);
  187. $result = $query
  188. ->select(['title', 'name'])
  189. ->from('articles')
  190. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => ['author_id = a.id']])
  191. ->order(['title' => 'asc'])
  192. ->execute();
  193. $this->assertEquals(array('title' => 'First Article', 'name' => 'mariano'), $result->fetch('assoc'));
  194. $this->assertEquals(array('title' => 'Second Article', 'name' => 'larry'), $result->fetch('assoc'));
  195. $query = new Query($this->connection);
  196. $conditions = $query->newExpr('author_id = a.id');
  197. $result = $query
  198. ->select(['title', 'name'])
  199. ->from('articles')
  200. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $conditions])
  201. ->order(['title' => 'asc'])
  202. ->execute();
  203. $this->assertEquals(array('title' => 'First Article', 'name' => 'mariano'), $result->fetch('assoc'));
  204. $this->assertEquals(array('title' => 'Second Article', 'name' => 'larry'), $result->fetch('assoc'));
  205. $query = new Query($this->connection);
  206. $time = new \DateTime('2007-03-18 10:50:00');
  207. $types = ['created' => 'datetime'];
  208. $result = $query
  209. ->select(['title', 'comment' => 'c.comment'])
  210. ->from('articles')
  211. ->join(['table' => 'comments', 'alias' => 'c', 'conditions' => ['created <=' => $time]], $types)
  212. ->execute();
  213. $this->assertEquals(['title' => 'First Article', 'comment' => 'First Comment for First Article'], $result->fetch('assoc'));
  214. }
  215. /**
  216. * Tests that joins can be aliased using array keys
  217. *
  218. * @return void
  219. */
  220. public function testSelectAliasedJoins() {
  221. $query = new Query($this->connection);
  222. $result = $query
  223. ->select(['title', 'name'])
  224. ->from('articles')
  225. ->join(['a' => 'authors'])
  226. ->order(['name' => 'desc', 'articles.id' => 'asc'])
  227. ->execute();
  228. $this->assertEquals(array('title' => 'First Article', 'name' => 'nate'), $result->fetch('assoc'));
  229. $this->assertEquals(array('title' => 'Second Article', 'name' => 'nate'), $result->fetch('assoc'));
  230. $query = new Query($this->connection);
  231. $conditions = $query->newExpr('author_id = a.id');
  232. $result = $query
  233. ->select(['title', 'name'])
  234. ->from('articles')
  235. ->join(['a' => ['table' => 'authors', 'conditions' => $conditions]])
  236. ->order(['title' => 'asc'])
  237. ->execute();
  238. $this->assertEquals(array('title' => 'First Article', 'name' => 'mariano'), $result->fetch('assoc'));
  239. $this->assertEquals(array('title' => 'Second Article', 'name' => 'larry'), $result->fetch('assoc'));
  240. $query = new Query($this->connection);
  241. $time = new \DateTime('2007-03-18 10:45:23');
  242. $types = ['created' => 'datetime'];
  243. $result = $query
  244. ->select(['title', 'name' => 'c.comment'])
  245. ->from('articles')
  246. ->join(['c' => ['table' => 'comments', 'conditions' => ['created' => $time]]], $types)
  247. ->execute();
  248. $this->assertEquals(array('title' => 'First Article', 'name' => 'First Comment for First Article'), $result->fetch('assoc'));
  249. }
  250. /**
  251. * Tests the leftJoin method
  252. *
  253. * @return void
  254. */
  255. public function testSelectLeftJoin() {
  256. $query = new Query($this->connection);
  257. $time = new \DateTime('2007-03-18 10:45:23');
  258. $types = ['created' => 'datetime'];
  259. $result = $query
  260. ->select(['title', 'name' => 'c.comment'])
  261. ->from('articles')
  262. ->leftJoin(['c' => 'comments'], ['created <' => $time], $types)
  263. ->execute();
  264. $this->assertEquals(array('title' => 'First Article', 'name' => null), $result->fetch('assoc'));
  265. $query = new Query($this->connection);
  266. $result = $query
  267. ->select(['title', 'name' => 'c.comment'])
  268. ->from('articles')
  269. ->leftJoin(['c' => 'comments'], ['created >' => $time], $types)
  270. ->execute();
  271. $this->assertEquals(
  272. ['title' => 'First Article', 'name' => 'Second Comment for First Article'],
  273. $result->fetch('assoc')
  274. );
  275. }
  276. /**
  277. * Tests the innerJoin method
  278. *
  279. * @return void
  280. */
  281. public function testSelectInnerJoin() {
  282. $query = new Query($this->connection);
  283. $time = new \DateTime('2007-03-18 10:45:23');
  284. $types = ['created' => 'datetime'];
  285. $result = $query
  286. ->select(['title', 'name' => 'c.comment'])
  287. ->from('articles')
  288. ->innerJoin(['c' => 'comments'], ['created <' => $time], $types)
  289. ->execute();
  290. $this->assertCount(0, $result->fetchAll());
  291. $query = new Query($this->connection);
  292. $result = $query
  293. ->select(['title', 'name' => 'c.comment'])
  294. ->from('articles')
  295. ->leftJoin(['c' => 'comments'], ['created >' => $time], $types)
  296. ->execute();
  297. $this->assertEquals(
  298. ['title' => 'First Article', 'name' => 'Second Comment for First Article'],
  299. $result->fetch('assoc')
  300. );
  301. }
  302. /**
  303. * Tests the rightJoin method
  304. *
  305. * @return void
  306. */
  307. public function testSelectRightJoin() {
  308. $this->skipIf(
  309. $this->connection->driver() instanceof \Cake\Database\Driver\Sqlite,
  310. 'SQLite does not support RIGHT joins'
  311. );
  312. $query = new Query($this->connection);
  313. $time = new \DateTime('2007-03-18 10:45:23');
  314. $types = ['created' => 'datetime'];
  315. $result = $query
  316. ->select(['title', 'name' => 'c.comment'])
  317. ->from('articles')
  318. ->rightJoin(['c' => 'comments'], ['created <' => $time], $types)
  319. ->execute();
  320. $this->assertCount(6, $result);
  321. $this->assertEquals(
  322. ['title' => null, 'name' => 'First Comment for First Article'],
  323. $result->fetch('assoc')
  324. );
  325. }
  326. /**
  327. * Tests that it is possible to pass a callable as conditions for a join
  328. *
  329. * @return void
  330. */
  331. public function testSelectJoinWithCallback() {
  332. $query = new Query($this->connection);
  333. $types = ['created' => 'datetime'];
  334. $result = $query
  335. ->select(['title', 'name' => 'c.comment'])
  336. ->from('articles')
  337. ->innerJoin(['c' => 'comments'], function($exp, $q) use ($query, $types) {
  338. $this->assertSame($q, $query);
  339. $exp->add(['created <' => new \DateTime('2007-03-18 10:45:23')], $types);
  340. return $exp;
  341. })
  342. ->execute();
  343. $this->assertCount(0, $result->fetchAll());
  344. $query = new Query($this->connection);
  345. $types = ['created' => 'datetime'];
  346. $result = $query
  347. ->select(['title', 'name' => 'comments.comment'])
  348. ->from('articles')
  349. ->innerJoin('comments', function($exp, $q) use ($query, $types) {
  350. $this->assertSame($q, $query);
  351. $exp->add(['created >' => new \DateTime('2007-03-18 10:45:23')], $types);
  352. return $exp;
  353. })
  354. ->execute();
  355. $this->assertEquals(
  356. ['title' => 'First Article', 'name' => 'Second Comment for First Article'],
  357. $result->fetch('assoc')
  358. );
  359. }
  360. /**
  361. * Tests it is possible to filter a query by using simple AND joined conditions
  362. *
  363. * @return void
  364. */
  365. public function testSelectSimpleWhere() {
  366. $query = new Query($this->connection);
  367. $result = $query
  368. ->select(['title'])
  369. ->from('articles')
  370. ->where(['id' => 1, 'title' => 'First Article'])
  371. ->execute();
  372. $this->assertCount(1, $result);
  373. $query = new Query($this->connection);
  374. $result = $query
  375. ->select(['title'])
  376. ->from('articles')
  377. ->where(['id' => 100], ['id' => 'integer'])
  378. ->execute();
  379. $this->assertCount(0, $result);
  380. }
  381. /**
  382. * Tests using where conditions with operators and scalar values works
  383. *
  384. * @return void
  385. */
  386. public function testSelectWhereOperators() {
  387. $query = new Query($this->connection);
  388. $result = $query
  389. ->select(['title'])
  390. ->from('articles')
  391. ->where(['id >' => 1])
  392. ->execute();
  393. $this->assertCount(2, $result);
  394. $this->assertEquals(array('title' => 'Second Article'), $result->fetch('assoc'));
  395. $query = new Query($this->connection);
  396. $result = $query
  397. ->select(['title'])
  398. ->from('articles')
  399. ->where(['id <' => 2])
  400. ->execute();
  401. $this->assertCount(1, $result);
  402. $this->assertEquals(array('title' => 'First Article'), $result->fetch('assoc'));
  403. $query = new Query($this->connection);
  404. $result = $query
  405. ->select(['title'])
  406. ->from('articles')
  407. ->where(['id <=' => 2])
  408. ->execute();
  409. $this->assertCount(2, $result);
  410. $query = new Query($this->connection);
  411. $result = $query
  412. ->select(['title'])
  413. ->from('articles')
  414. ->where(['id >=' => 1])
  415. ->execute();
  416. $this->assertCount(3, $result);
  417. $query = new Query($this->connection);
  418. $result = $query
  419. ->select(['title'])
  420. ->from('articles')
  421. ->where(['id <=' => 1])
  422. ->execute();
  423. $this->assertCount(1, $result);
  424. $query = new Query($this->connection);
  425. $result = $query
  426. ->select(['title'])
  427. ->from('articles')
  428. ->where(['id !=' => 2])
  429. ->execute();
  430. $this->assertCount(2, $result);
  431. $this->assertEquals(array('title' => 'First Article'), $result->fetch('assoc'));
  432. $query = new Query($this->connection);
  433. $result = $query
  434. ->select(['title'])
  435. ->from('articles')
  436. ->where(['title LIKE' => 'First Article'])
  437. ->execute();
  438. $this->assertCount(1, $result);
  439. $this->assertEquals(array('title' => 'First Article'), $result->fetch('assoc'));
  440. $query = new Query($this->connection);
  441. $result = $query
  442. ->select(['title'])
  443. ->from('articles')
  444. ->where(['title like' => '%Article%'])
  445. ->execute();
  446. $this->assertCount(3, $result);
  447. $query = new Query($this->connection);
  448. $result = $query
  449. ->select(['title'])
  450. ->from('articles')
  451. ->where(['title not like' => '%Article%'])
  452. ->execute();
  453. $this->assertCount(0, $result);
  454. }
  455. /**
  456. * Tests selecting with conditions and specifying types for those
  457. *
  458. * @return void
  459. */
  460. public function testSelectWhereTypes() {
  461. $query = new Query($this->connection);
  462. $result = $query
  463. ->select(['id'])
  464. ->from('comments')
  465. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  466. ->execute();
  467. $this->assertCount(1, $result);
  468. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  469. $query = new Query($this->connection);
  470. $result = $query
  471. ->select(['id'])
  472. ->from('comments')
  473. ->where(['created >' => new \DateTime('2007-03-18 10:46:00')], ['created' => 'datetime'])
  474. ->execute();
  475. $this->assertCount(5, $result);
  476. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  477. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  478. $query = new Query($this->connection);
  479. $result = $query
  480. ->select(['id'])
  481. ->from('comments')
  482. ->where(
  483. [
  484. 'created >' => new \DateTime('2007-03-18 10:40:00'),
  485. 'created <' => new \DateTime('2007-03-18 10:46:00')
  486. ],
  487. ['created' => 'datetime']
  488. )
  489. ->execute();
  490. $this->assertCount(1, $result);
  491. $this->assertEquals(array('id' => 1), $result->fetch('assoc'));
  492. $query = new Query($this->connection);
  493. $result = $query
  494. ->select(['id'])
  495. ->from('comments')
  496. ->where(
  497. [
  498. 'id' => '3something-crazy',
  499. 'created <' => new \DateTime('2013-01-01 12:00')
  500. ],
  501. ['created' => 'datetime', 'id' => 'integer']
  502. )
  503. ->execute();
  504. $this->assertCount(1, $result);
  505. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  506. $query = new Query($this->connection);
  507. $result = $query
  508. ->select(['id'])
  509. ->from('comments')
  510. ->where(
  511. [
  512. 'id' => '1something-crazy',
  513. 'created <' => new \DateTime('2013-01-01 12:00')
  514. ],
  515. ['created' => 'datetime', 'id' => 'float']
  516. )
  517. ->execute();
  518. $this->assertCount(1, $result);
  519. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  520. }
  521. /**
  522. * Tests that passing an array type to any where condition will replace
  523. * the passed array accordingly as a proper IN condition
  524. *
  525. * @return void
  526. */
  527. public function testSelectWhereArrayType() {
  528. $query = new Query($this->connection);
  529. $result = $query
  530. ->select(['id'])
  531. ->from('comments')
  532. ->where(['id' => ['1', '3']], ['id' => 'integer[]'])
  533. ->execute();
  534. $this->assertCount(2, $result);
  535. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  536. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  537. }
  538. /**
  539. * Tests that passing an empty array type to any where condition will not
  540. * result in an error, but in an empty result set
  541. *
  542. * @return void
  543. */
  544. public function testSelectWhereArrayTypeEmpty() {
  545. $query = new Query($this->connection);
  546. $result = $query
  547. ->select(['id'])
  548. ->from('comments')
  549. ->where(['id' => []], ['id' => 'integer[]'])
  550. ->execute();
  551. $this->assertCount(0, $result);
  552. }
  553. /**
  554. * Tests that Query::orWhere() can be used to concatenate conditions with OR
  555. *
  556. * @return void
  557. */
  558. public function testSelectOrWhere() {
  559. $query = new Query($this->connection);
  560. $result = $query
  561. ->select(['id'])
  562. ->from('comments')
  563. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  564. ->orWhere(['created' => new \DateTime('2007-03-18 10:47:23')], ['created' => 'datetime'])
  565. ->execute();
  566. $this->assertCount(2, $result);
  567. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  568. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  569. }
  570. /**
  571. * Tests that Query::andWhere() can be used to concatenate conditions with AND
  572. *
  573. * @return void
  574. */
  575. public function testSelectAndWhere() {
  576. $query = new Query($this->connection);
  577. $result = $query
  578. ->select(['id'])
  579. ->from('comments')
  580. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  581. ->andWhere(['id' => 1])
  582. ->execute();
  583. $this->assertCount(1, $result);
  584. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  585. $query = new Query($this->connection);
  586. $result = $query
  587. ->select(['id'])
  588. ->from('comments')
  589. ->where(['created' => new \DateTime('2007-03-18 10:50:55')], ['created' => 'datetime'])
  590. ->andWhere(['id' => 2])
  591. ->execute();
  592. $this->assertCount(0, $result);
  593. }
  594. /**
  595. * Tests that combining Query::andWhere() and Query::orWhere() produces
  596. * correct conditions nesting
  597. *
  598. * @return void
  599. */
  600. public function testSelectExpressionNesting() {
  601. $query = new Query($this->connection);
  602. $result = $query
  603. ->select(['id'])
  604. ->from('comments')
  605. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  606. ->orWhere(['id' => 2])
  607. ->andWhere(['created >=' => new \DateTime('2007-03-18 10:40:00')], ['created' => 'datetime'])
  608. ->execute();
  609. $this->assertCount(2, $result);
  610. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  611. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  612. $query = new Query($this->connection);
  613. $result = $query
  614. ->select(['id'])
  615. ->from('comments')
  616. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  617. ->orWhere(['id' => 2])
  618. ->andWhere(['created >=' => new \DateTime('2007-03-18 10:40:00')], ['created' => 'datetime'])
  619. ->orWhere(['created' => new \DateTime('2007-03-18 10:49:23')], ['created' => 'datetime'])
  620. ->execute();
  621. $this->assertCount(3, $result);
  622. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  623. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  624. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  625. }
  626. /**
  627. * Tests that Query::orWhere() can be used without calling where() before
  628. *
  629. * @return void
  630. */
  631. public function testSelectOrWhereNoPreviousCondition() {
  632. $query = new Query($this->connection);
  633. $result = $query
  634. ->select(['id'])
  635. ->from('comments')
  636. ->orWhere(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  637. ->orWhere(['created' => new \DateTime('2007-03-18 10:47:23')], ['created' => 'datetime'])
  638. ->execute();
  639. $this->assertCount(2, $result);
  640. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  641. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  642. }
  643. /**
  644. * Tests that Query::andWhere() can be used without calling where() before
  645. *
  646. * @return void
  647. */
  648. public function testSelectAndWhereNoPreviousCondition() {
  649. $query = new Query($this->connection);
  650. $result = $query
  651. ->select(['id'])
  652. ->from('comments')
  653. ->andWhere(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  654. ->andWhere(['id' => 1])
  655. ->execute();
  656. $this->assertCount(1, $result);
  657. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  658. }
  659. /**
  660. * Tests that it is possible to pass a closure to where() to build a set of
  661. * conditions and return the expression to be used
  662. *
  663. * @return void
  664. */
  665. public function testSelectWhereUsingClosure() {
  666. $query = new Query($this->connection);
  667. $result = $query
  668. ->select(['id'])
  669. ->from('comments')
  670. ->where(function($exp) {
  671. return $exp->eq('id', 1);
  672. })
  673. ->execute();
  674. $this->assertCount(1, $result);
  675. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  676. $query = new Query($this->connection);
  677. $result = $query
  678. ->select(['id'])
  679. ->from('comments')
  680. ->where(function($exp) {
  681. return $exp
  682. ->eq('id', 1)
  683. ->eq('created', new \DateTime('2007-03-18 10:45:23'), 'datetime');
  684. })
  685. ->execute();
  686. $this->assertCount(1, $result);
  687. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  688. $query = new Query($this->connection);
  689. $result = $query
  690. ->select(['id'])
  691. ->from('comments')
  692. ->where(function($exp) {
  693. return $exp
  694. ->eq('id', 1)
  695. ->eq('created', new \DateTime('2021-12-30 15:00'), 'datetime');
  696. })
  697. ->execute();
  698. $this->assertCount(0, $result);
  699. }
  700. /**
  701. * Tests generating tuples in the values side containing closure expressions
  702. *
  703. * @return void
  704. */
  705. public function testTupleWithClosureExpression() {
  706. $query = new Query($this->connection);
  707. $query->select(['id'])
  708. ->from('comments')
  709. ->where([
  710. 'OR' => [
  711. 'id' => 1,
  712. function($exp) {
  713. return $exp->eq('id', 2);
  714. }
  715. ]
  716. ]);
  717. $result = $query->sql();
  718. $this->assertQuotedQuery(
  719. 'SELECT <id> FROM <comments> WHERE \(<id> = :c0 OR <id> = :c1\)',
  720. $result,
  721. true
  722. );
  723. }
  724. /**
  725. * Tests that it is possible to pass a closure to andWhere() to build a set of
  726. * conditions and return the expression to be used
  727. *
  728. * @return void
  729. */
  730. public function testSelectAndWhereUsingClosure() {
  731. $query = new Query($this->connection);
  732. $result = $query
  733. ->select(['id'])
  734. ->from('comments')
  735. ->where(['id' => '1'])
  736. ->andWhere(function($exp) {
  737. return $exp->eq('created', new \DateTime('2007-03-18 10:45:23'), 'datetime');
  738. })
  739. ->execute();
  740. $this->assertCount(1, $result);
  741. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  742. $query = new Query($this->connection);
  743. $result = $query
  744. ->select(['id'])
  745. ->from('comments')
  746. ->where(['id' => '1'])
  747. ->andWhere(function($exp) {
  748. return $exp->eq('created', new \DateTime('2022-12-21 12:00'), 'datetime');
  749. })
  750. ->execute();
  751. $this->assertCount(0, $result);
  752. }
  753. /**
  754. * Tests that it is possible to pass a closure to orWhere() to build a set of
  755. * conditions and return the expression to be used
  756. *
  757. * @return void
  758. */
  759. public function testSelectOrWhereUsingClosure() {
  760. $query = new Query($this->connection);
  761. $result = $query
  762. ->select(['id'])
  763. ->from('comments')
  764. ->where(['id' => '1'])
  765. ->orWhere(function($exp) {
  766. return $exp->eq('created', new \DateTime('2007-03-18 10:47:23'), 'datetime');
  767. })
  768. ->execute();
  769. $this->assertCount(2, $result);
  770. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  771. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  772. $query = new Query($this->connection);
  773. $result = $query
  774. ->select(['id'])
  775. ->from('comments')
  776. ->where(['id' => '1'])
  777. ->orWhere(function($exp) {
  778. return $exp
  779. ->eq('created', new \DateTime('2012-12-22 12:00'), 'datetime')
  780. ->eq('id', 3);
  781. })
  782. ->execute();
  783. $this->assertCount(1, $result);
  784. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  785. }
  786. /**
  787. * Tests using where conditions with operator methods
  788. *
  789. * @return void
  790. */
  791. public function testSelectWhereOperatorMethods() {
  792. $query = new Query($this->connection);
  793. $result = $query
  794. ->select(['title'])
  795. ->from('articles')
  796. ->where(function($exp) {
  797. return $exp->gt('id', 1);
  798. })
  799. ->execute();
  800. $this->assertCount(2, $result);
  801. $this->assertEquals(array('title' => 'Second Article'), $result->fetch('assoc'));
  802. $query = new Query($this->connection);
  803. $result = $query->select(['title'])
  804. ->from('articles')
  805. ->where(function($exp) {
  806. return $exp->lt('id', 2);
  807. })
  808. ->execute();
  809. $this->assertCount(1, $result);
  810. $this->assertEquals(array('title' => 'First Article'), $result->fetch('assoc'));
  811. $query = new Query($this->connection);
  812. $result = $query->select(['title'])
  813. ->from('articles')
  814. ->where(function($exp) {
  815. return $exp->lte('id', 2);
  816. })
  817. ->execute();
  818. $this->assertCount(2, $result);
  819. $query = new Query($this->connection);
  820. $result = $query
  821. ->select(['title'])
  822. ->from('articles')
  823. ->where(function($exp) {
  824. return $exp->gte('id', 1);
  825. })
  826. ->execute();
  827. $this->assertCount(3, $result);
  828. $query = new Query($this->connection);
  829. $result = $query
  830. ->select(['title'])
  831. ->from('articles')
  832. ->where(function($exp) {
  833. return $exp->lte('id', 1);
  834. })
  835. ->execute();
  836. $this->assertCount(1, $result);
  837. $query = new Query($this->connection);
  838. $result = $query
  839. ->select(['title'])
  840. ->from('articles')
  841. ->where(function($exp) {
  842. return $exp->notEq('id', 2);
  843. })
  844. ->execute();
  845. $this->assertCount(2, $result);
  846. $this->assertEquals(array('title' => 'First Article'), $result->fetch('assoc'));
  847. $query = new Query($this->connection);
  848. $result = $query
  849. ->select(['title'])
  850. ->from('articles')
  851. ->where(function($exp) {
  852. return $exp->like('title', 'First Article');
  853. })
  854. ->execute();
  855. $this->assertCount(1, $result);
  856. $this->assertEquals(array('title' => 'First Article'), $result->fetch('assoc'));
  857. $query = new Query($this->connection);
  858. $result = $query
  859. ->select(['title'])
  860. ->from('articles')
  861. ->where(function($exp) {
  862. return $exp->like('title', '%Article%');
  863. })
  864. ->execute();
  865. $this->assertCount(3, $result);
  866. $query = new Query($this->connection);
  867. $result = $query
  868. ->select(['title'])
  869. ->from('articles')
  870. ->where(function($exp) {
  871. return $exp->notLike('title', '%Article%');
  872. })
  873. ->execute();
  874. $this->assertCount(0, $result);
  875. $query = new Query($this->connection);
  876. $result = $query
  877. ->select(['id'])
  878. ->from('comments')
  879. ->where(function($exp) {
  880. return $exp->isNull('published');
  881. })
  882. ->execute();
  883. $this->assertCount(0, $result);
  884. $query = new Query($this->connection);
  885. $result = $query
  886. ->select(['id'])
  887. ->from('comments')
  888. ->where(function($exp) {
  889. return $exp->isNotNull('published');
  890. })
  891. ->execute();
  892. $this->assertCount(6, $result);
  893. $query = new Query($this->connection);
  894. $result = $query
  895. ->select(['id'])
  896. ->from('comments')
  897. ->where(function($exp) {
  898. return $exp->in('published', ['Y', 'N']);
  899. })
  900. ->execute();
  901. $this->assertCount(6, $result);
  902. $query = new Query($this->connection);
  903. $result = $query
  904. ->select(['id'])
  905. ->from('comments')
  906. ->where(function($exp) {
  907. return $exp->in(
  908. 'created',
  909. [new \DateTime('2007-03-18 10:45:23'), new \DateTime('2007-03-18 10:47:23')],
  910. 'datetime'
  911. );
  912. })
  913. ->execute();
  914. $this->assertCount(2, $result);
  915. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  916. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  917. $query = new Query($this->connection);
  918. $result = $query
  919. ->select(['id'])
  920. ->from('comments')
  921. ->where(function($exp) {
  922. return $exp->notIn(
  923. 'created',
  924. [new \DateTime('2007-03-18 10:45:23'), new \DateTime('2007-03-18 10:47:23')],
  925. 'datetime'
  926. );
  927. })
  928. ->execute();
  929. $this->assertCount(4, $result);
  930. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  931. }
  932. /**
  933. * Tests that calling "in" and "notIn" will cast the passed values to an array
  934. *
  935. * @return void
  936. */
  937. public function testInValueCast() {
  938. $query = new Query($this->connection);
  939. $result = $query
  940. ->select(['id'])
  941. ->from('comments')
  942. ->where(function($exp) {
  943. return $exp->in('created', '2007-03-18 10:45:23', 'datetime');
  944. })
  945. ->execute();
  946. $this->assertCount(1, $result);
  947. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  948. $query = new Query($this->connection);
  949. $result = $query
  950. ->select(['id'])
  951. ->from('comments')
  952. ->where(function($exp) {
  953. return $exp->notIn('created', '2007-03-18 10:45:23', 'datetime');
  954. })
  955. ->execute();
  956. $this->assertCount(5, $result);
  957. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  958. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  959. $this->assertEquals(['id' => 4], $result->fetch('assoc'));
  960. $this->assertEquals(['id' => 5], $result->fetch('assoc'));
  961. $query = new Query($this->connection);
  962. $result = $query
  963. ->select(['id'])
  964. ->from('comments')
  965. ->where(function($exp, $q) {
  966. return $exp->in(
  967. 'created',
  968. $q->newExpr("'2007-03-18 10:45:23'"),
  969. 'datetime'
  970. );
  971. })
  972. ->execute();
  973. $this->assertCount(1, $result);
  974. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  975. $query = new Query($this->connection);
  976. $result = $query
  977. ->select(['id'])
  978. ->from('comments')
  979. ->where(function($exp, $q) {
  980. return $exp->notIn(
  981. 'created',
  982. $q->newExpr("'2007-03-18 10:45:23'"),
  983. 'datetime'
  984. );
  985. })
  986. ->execute();
  987. $this->assertCount(5, $result);
  988. }
  989. /**
  990. * Tests that calling "in" and "notIn" will cast the passed values to an array
  991. *
  992. * @return void
  993. */
  994. public function testInValueCast2() {
  995. $query = new Query($this->connection);
  996. $result = $query
  997. ->select(['id'])
  998. ->from('comments')
  999. ->where(['created IN' => '2007-03-18 10:45:23'])
  1000. ->execute();
  1001. $this->assertCount(1, $result);
  1002. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1003. $query = new Query($this->connection);
  1004. $result = $query
  1005. ->select(['id'])
  1006. ->from('comments')
  1007. ->where(['created NOT IN' => '2007-03-18 10:45:23'])
  1008. ->execute();
  1009. $this->assertCount(5, $result);
  1010. }
  1011. /**
  1012. * Tests nesting query expressions both using arrays and closures
  1013. *
  1014. * @return void
  1015. */
  1016. public function testSelectExpressionComposition() {
  1017. $query = new Query($this->connection);
  1018. $result = $query
  1019. ->select(['id'])
  1020. ->from('comments')
  1021. ->where(function($exp) {
  1022. $and = $exp->and_(['id' => 2, 'id >' => 1]);
  1023. return $exp->add($and);
  1024. })
  1025. ->execute();
  1026. $this->assertCount(1, $result);
  1027. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1028. $query = new Query($this->connection);
  1029. $result = $query
  1030. ->select(['id'])
  1031. ->from('comments')
  1032. ->where(function($exp) {
  1033. $and = $exp->and_(['id' => 2, 'id <' => 2]);
  1034. return $exp->add($and);
  1035. })
  1036. ->execute();
  1037. $this->assertCount(0, $result);
  1038. $query = new Query($this->connection);
  1039. $result = $query
  1040. ->select(['id'])
  1041. ->from('comments')
  1042. ->where(function($exp) {
  1043. $and = $exp->and_(function($and) {
  1044. return $and->eq('id', 1)->gt('id', 0);
  1045. });
  1046. return $exp->add($and);
  1047. })
  1048. ->execute();
  1049. $this->assertCount(1, $result);
  1050. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1051. $query = new Query($this->connection);
  1052. $result = $query
  1053. ->select(['id'])
  1054. ->from('comments')
  1055. ->where(function($exp) {
  1056. $or = $exp->or_(['id' => 1]);
  1057. $and = $exp->and_(['id >' => 2, 'id <' => 4]);
  1058. return $or->add($and);
  1059. })
  1060. ->execute();
  1061. $this->assertCount(2, $result);
  1062. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1063. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1064. $query = new Query($this->connection);
  1065. $result = $query
  1066. ->select(['id'])
  1067. ->from('comments')
  1068. ->where(function($exp) {
  1069. $or = $exp->or_(function($or) {
  1070. return $or->eq('id', 1)->eq('id', 2);
  1071. });
  1072. return $or;
  1073. })
  1074. ->execute();
  1075. $this->assertCount(2, $result);
  1076. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1077. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1078. }
  1079. /**
  1080. * Tests that conditions can be nested with an unary operator using the array notation
  1081. * and the not() method
  1082. *
  1083. * @return void
  1084. */
  1085. public function testSelectWhereNot() {
  1086. $query = new Query($this->connection);
  1087. $result = $query
  1088. ->select(['id'])
  1089. ->from('comments')
  1090. ->where(function($exp) {
  1091. return $exp->not(
  1092. $exp->and_(['id' => 2, 'created' => new \DateTime('2007-03-18 10:47:23')], ['created' => 'datetime'])
  1093. );
  1094. })
  1095. ->execute();
  1096. $this->assertCount(5, $result);
  1097. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1098. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1099. $query = new Query($this->connection);
  1100. $result = $query
  1101. ->select(['id'])
  1102. ->from('comments')
  1103. ->where(function($exp) {
  1104. return $exp->not(
  1105. $exp->and_(['id' => 2, 'created' => new \DateTime('2012-12-21 12:00')], ['created' => 'datetime'])
  1106. );
  1107. })
  1108. ->execute();
  1109. $this->assertCount(6, $result);
  1110. $query = new Query($this->connection);
  1111. $result = $query
  1112. ->select(['id'])
  1113. ->from('articles')
  1114. ->where([
  1115. 'not' => ['or' => ['id' => 1, 'id >' => 2], 'id' => 3]
  1116. ])
  1117. ->execute();
  1118. $this->assertCount(2, $result);
  1119. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1120. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1121. }
  1122. /**
  1123. * Tests order() method both with simple fields and expressions
  1124. *
  1125. * @return void
  1126. */
  1127. public function testSelectOrderBy() {
  1128. $query = new Query($this->connection);
  1129. $result = $query
  1130. ->select(['id'])
  1131. ->from('articles')
  1132. ->order(['id' => 'desc'])
  1133. ->execute();
  1134. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1135. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1136. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1137. $result = $query->order(['id' => 'asc'])->execute();
  1138. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1139. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1140. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1141. $result = $query->order(['title' => 'asc'])->execute();
  1142. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1143. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1144. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1145. $result = $query->order(['title' => 'asc'], true)->execute();
  1146. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1147. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1148. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1149. $result = $query->order(['title' => 'asc', 'published' => 'asc'], true)
  1150. ->execute();
  1151. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1152. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1153. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1154. $expression = $query->newExpr(['(id + :offset) % 2']);
  1155. $result = $query
  1156. ->order([$expression, 'id' => 'desc'], true)
  1157. ->bind(':offset', 1, null)
  1158. ->execute();
  1159. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1160. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1161. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1162. $result = $query
  1163. ->order($expression, true)
  1164. ->order(['id' => 'asc'])
  1165. ->bind(':offset', 1, null)
  1166. ->execute();
  1167. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1168. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1169. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1170. }
  1171. /**
  1172. * Tests that group by fields can be passed similar to select fields
  1173. * and that it sends the correct query to the database
  1174. *
  1175. * @return void
  1176. */
  1177. public function testSelectGroup() {
  1178. $query = new Query($this->connection);
  1179. $result = $query
  1180. ->select(['total' => 'count(author_id)', 'author_id'])
  1181. ->from('articles')
  1182. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1183. ->group('author_id')
  1184. ->execute();
  1185. $expected = [['total' => 2, 'author_id' => 1], ['total' => '1', 'author_id' => 3]];
  1186. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1187. $result = $query->select(['total' => 'count(title)', 'name'], true)
  1188. ->group(['name'], true)
  1189. ->order(['total' => 'asc'])
  1190. ->execute();
  1191. $expected = [['total' => 1, 'name' => 'larry'], ['total' => 2, 'name' => 'mariano']];
  1192. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1193. $result = $query->select(['articles.id'])
  1194. ->group(['articles.id'])
  1195. ->execute();
  1196. $this->assertCount(3, $result);
  1197. }
  1198. /**
  1199. * Tests that it is possible to select distinct rows
  1200. *
  1201. * @return void
  1202. */
  1203. public function testSelectDistinct() {
  1204. $query = new Query($this->connection);
  1205. $result = $query
  1206. ->select(['author_id'])
  1207. ->from(['a' => 'articles'])
  1208. ->execute();
  1209. $this->assertCount(3, $result);
  1210. $result = $query->distinct()->execute();
  1211. $this->assertCount(2, $result);
  1212. $result = $query->select(['id'])->distinct(false)->execute();
  1213. $this->assertCount(3, $result);
  1214. }
  1215. /**
  1216. * Tests that it is possible to select distinct rows, even filtering by one column
  1217. * this is testing that there is a specific implementation for DISTINCT ON
  1218. *
  1219. * @return void
  1220. */
  1221. public function testSelectDistinctON() {
  1222. $this->skipIf(
  1223. $this->connection->driver() instanceof \Cake\Database\Driver\Sqlserver,
  1224. 'Not implemented yet in SqlServer'
  1225. );
  1226. $query = new Query($this->connection);
  1227. $result = $query
  1228. ->select(['id', 'author_id'])
  1229. ->distinct(['author_id'])
  1230. ->from(['a' => 'articles'])
  1231. ->execute();
  1232. $this->assertCount(2, $result);
  1233. }
  1234. /**
  1235. * Test use of modifiers in the query
  1236. *
  1237. * Testing the generated SQL since the modifiers are usually different per driver
  1238. *
  1239. * @return void
  1240. */
  1241. public function testSelectModifiers() {
  1242. $query = new Query($this->connection);
  1243. $result = $query
  1244. ->select(['city', 'state', 'country'])
  1245. ->from(['addresses'])
  1246. ->modifier('DISTINCTROW');
  1247. $this->assertQuotedQuery(
  1248. 'SELECT DISTINCTROW <city>, <state>, <country> FROM <addresses>',
  1249. $result->sql(),
  1250. true
  1251. );
  1252. $query = new Query($this->connection);
  1253. $result = $query
  1254. ->select(['city', 'state', 'country'])
  1255. ->from(['addresses'])
  1256. ->modifier(['DISTINCTROW', 'SQL_NO_CACHE']);
  1257. $this->assertQuotedQuery(
  1258. 'SELECT DISTINCTROW SQL_NO_CACHE <city>, <state>, <country> FROM <addresses>',
  1259. $result->sql(),
  1260. true
  1261. );
  1262. $query = new Query($this->connection);
  1263. $result = $query
  1264. ->select(['city', 'state', 'country'])
  1265. ->from(['addresses'])
  1266. ->modifier('DISTINCTROW')
  1267. ->modifier('SQL_NO_CACHE');
  1268. $this->assertQuotedQuery(
  1269. 'SELECT DISTINCTROW SQL_NO_CACHE <city>, <state>, <country> FROM <addresses>',
  1270. $result->sql(),
  1271. true
  1272. );
  1273. $query = new Query($this->connection);
  1274. $result = $query
  1275. ->select(['city', 'state', 'country'])
  1276. ->from(['addresses'])
  1277. ->modifier(['TOP 10']);
  1278. $this->assertQuotedQuery(
  1279. 'SELECT TOP 10 <city>, <state>, <country> FROM <addresses>',
  1280. $result->sql(),
  1281. true
  1282. );
  1283. }
  1284. /**
  1285. * Tests that having() behaves pretty much the same as the where() method
  1286. *
  1287. * @return void
  1288. */
  1289. public function testSelectHaving() {
  1290. $query = new Query($this->connection);
  1291. $result = $query
  1292. ->select(['total' => 'count(author_id)', 'author_id'])
  1293. ->from('articles')
  1294. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1295. ->group('author_id')
  1296. ->having(['count(author_id) <' => 2], ['count(author_id)' => 'integer'])
  1297. ->execute();
  1298. $expected = [['total' => 1, 'author_id' => 3]];
  1299. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1300. $result = $query->having(['count(author_id)' => 2], ['count(author_id)' => 'integer'], true)
  1301. ->execute();
  1302. $expected = [['total' => 2, 'author_id' => 1]];
  1303. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1304. $result = $query->having(function($e) {
  1305. return $e->add('count(author_id) = 1 + 1');
  1306. }, [], true)
  1307. ->execute();
  1308. $expected = [['total' => 2, 'author_id' => 1]];
  1309. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1310. }
  1311. /**
  1312. * Tests that Query::orHaving() can be used to concatenate conditions with OR
  1313. * in the having clause
  1314. *
  1315. * @return void
  1316. */
  1317. public function testSelectOrHaving() {
  1318. $query = new Query($this->connection);
  1319. $result = $query
  1320. ->select(['total' => 'count(author_id)', 'author_id'])
  1321. ->from('articles')
  1322. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1323. ->group('author_id')
  1324. ->having(['count(author_id) >' => 2], ['count(author_id)' => 'integer'])
  1325. ->orHaving(['count(author_id) <' => 2], ['count(author_id)' => 'integer'])
  1326. ->execute();
  1327. $expected = [['total' => 1, 'author_id' => 3]];
  1328. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1329. $query = new Query($this->connection);
  1330. $result = $query
  1331. ->select(['total' => 'count(author_id)', 'author_id'])
  1332. ->from('articles')
  1333. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1334. ->group('author_id')
  1335. ->having(['count(author_id) >' => 2], ['count(author_id)' => 'integer'])
  1336. ->orHaving(['count(author_id) <=' => 2], ['count(author_id)' => 'integer'])
  1337. ->execute();
  1338. $expected = [['total' => 2, 'author_id' => 1], ['total' => 1, 'author_id' => 3]];
  1339. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1340. $query = new Query($this->connection);
  1341. $result = $query
  1342. ->select(['total' => 'count(author_id)', 'author_id'])
  1343. ->from('articles')
  1344. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1345. ->group('author_id')
  1346. ->having(['count(author_id) >' => 2], ['count(author_id)' => 'integer'])
  1347. ->orHaving(function($e) {
  1348. return $e->add('count(author_id) = 1 + 1');
  1349. })
  1350. ->execute();
  1351. $expected = [['total' => 2, 'author_id' => 1]];
  1352. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1353. }
  1354. /**
  1355. * Tests that Query::andHaving() can be used to concatenate conditions with AND
  1356. * in the having clause
  1357. *
  1358. * @return void
  1359. */
  1360. public function testSelectAndHaving() {
  1361. $query = new Query($this->connection);
  1362. $result = $query
  1363. ->select(['total' => 'count(author_id)', 'author_id'])
  1364. ->from('articles')
  1365. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1366. ->group('author_id')
  1367. ->having(['count(author_id) >' => 2], ['count(author_id)' => 'integer'])
  1368. ->andHaving(['count(author_id) <' => 2], ['count(author_id)' => 'integer'])
  1369. ->execute();
  1370. $this->assertCount(0, $result);
  1371. $query = new Query($this->connection);
  1372. $result = $query
  1373. ->select(['total' => 'count(author_id)', 'author_id'])
  1374. ->from('articles')
  1375. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1376. ->group('author_id')
  1377. ->having(['count(author_id)' => 2], ['count(author_id)' => 'integer'])
  1378. ->andHaving(['count(author_id) >' => 1], ['count(author_id)' => 'integer'])
  1379. ->execute();
  1380. $expected = [['total' => 2, 'author_id' => 1]];
  1381. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1382. $query = new Query($this->connection);
  1383. $result = $query
  1384. ->select(['total' => 'count(author_id)', 'author_id'])
  1385. ->from('articles')
  1386. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1387. ->group('author_id')
  1388. ->andHaving(function($e) {
  1389. return $e->add('count(author_id) = 2 - 1');
  1390. })
  1391. ->execute();
  1392. $expected = [['total' => 1, 'author_id' => 3]];
  1393. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1394. }
  1395. /**
  1396. * Tests selecting rows using a limit clause
  1397. *
  1398. * @return void
  1399. */
  1400. public function testSelectLimit() {
  1401. $query = new Query($this->connection);
  1402. $result = $query->select('id')->from('articles')->limit(1)->execute();
  1403. $this->assertCount(1, $result);
  1404. $query = new Query($this->connection);
  1405. $result = $query->select('id')->from('articles')->limit(2)->execute();
  1406. $this->assertCount(2, $result);
  1407. }
  1408. /**
  1409. * Tests selecting rows combining a limit and offset clause
  1410. *
  1411. * @return void
  1412. */
  1413. public function testSelectOffset() {
  1414. $query = new Query($this->connection);
  1415. $result = $query->select('id')->from('comments')
  1416. ->limit(1)
  1417. ->offset(0)
  1418. ->order(['id' => 'ASC'])
  1419. ->execute();
  1420. $this->assertCount(1, $result);
  1421. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1422. $query = new Query($this->connection);
  1423. $result = $query->select('id')->from('comments')
  1424. ->limit(1)
  1425. ->offset(1)
  1426. ->execute();
  1427. $this->assertCount(1, $result);
  1428. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1429. $query = new Query($this->connection);
  1430. $result = $query->select('id')->from('comments')
  1431. ->limit(1)
  1432. ->offset(2)
  1433. ->execute();
  1434. $this->assertCount(1, $result);
  1435. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1436. $query = new Query($this->connection);
  1437. $result = $query->select('id')->from('articles')
  1438. ->order(['id' => 'DESC'])
  1439. ->limit(1)
  1440. ->offset(0)
  1441. ->execute();
  1442. $this->assertCount(1, $result);
  1443. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1444. $result = $query->limit(2)->offset(1)->execute();
  1445. $this->assertCount(2, $result);
  1446. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1447. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1448. }
  1449. /**
  1450. * Test selecting rows using the page() method.
  1451. *
  1452. * @return void
  1453. */
  1454. public function testSelectPage() {
  1455. $query = new Query($this->connection);
  1456. $result = $query->select('id')->from('comments')
  1457. ->limit(1)
  1458. ->page(1)
  1459. ->execute();
  1460. $this->assertCount(1, $result);
  1461. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1462. $query = new Query($this->connection);
  1463. $result = $query->select('id')->from('comments')
  1464. ->limit(1)
  1465. ->page(2)
  1466. ->execute();
  1467. $this->assertCount(1, $result);
  1468. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1469. $query = new Query($this->connection);
  1470. $query->select('id')->from('comments')->page(1);
  1471. $this->assertEquals(25, $query->clause('limit'));
  1472. $this->assertEquals(0, $query->clause('offset'));
  1473. $query->select('id')->from('comments')->page(2);
  1474. $this->assertEquals(25, $query->clause('limit'));
  1475. $this->assertEquals(25, $query->clause('offset'));
  1476. }
  1477. /**
  1478. * Tests that Query objects can be included inside the select clause
  1479. * and be used as a normal field, including binding any passed parameter
  1480. *
  1481. * @return void
  1482. */
  1483. public function testSubqueryInSelect() {
  1484. $query = new Query($this->connection);
  1485. $subquery = (new Query($this->connection))
  1486. ->select('name')
  1487. ->from(['b' => 'authors'])
  1488. ->where(['b.id = a.id']);
  1489. $result = $query
  1490. ->select(['id', 'name' => $subquery])
  1491. ->from(['a' => 'comments'])->execute();
  1492. $expected = [
  1493. ['id' => 1, 'name' => 'mariano'],
  1494. ['id' => 2, 'name' => 'nate'],
  1495. ['id' => 3, 'name' => 'larry'],
  1496. ['id' => 4, 'name' => 'garrett'],
  1497. ['id' => 5, 'name' => null],
  1498. ['id' => 6, 'name' => null],
  1499. ];
  1500. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1501. $query = new Query($this->connection);
  1502. $subquery = (new Query($this->connection))
  1503. ->select('name')
  1504. ->from(['b' => 'authors'])
  1505. ->where(['name' => 'mariano'], ['name' => 'string']);
  1506. $result = $query
  1507. ->select(['id', 'name' => $subquery])
  1508. ->from(['a' => 'articles'])->execute();
  1509. $expected = [
  1510. ['id' => 1, 'name' => 'mariano'],
  1511. ['id' => 2, 'name' => 'mariano'],
  1512. ['id' => 3, 'name' => 'mariano'],
  1513. ];
  1514. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1515. }
  1516. /**
  1517. * Tests that Query objects can be included inside the from clause
  1518. * and be used as a normal table, including binding any passed parameter
  1519. *
  1520. * @return void
  1521. */
  1522. public function testSuqueryInFrom() {
  1523. $query = new Query($this->connection);
  1524. $subquery = (new Query($this->connection))
  1525. ->select(['id', 'comment'])
  1526. ->from('comments')
  1527. ->where(['created >' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime']);
  1528. $result = $query
  1529. ->select(['say' => 'comment'])
  1530. ->from(['b' => $subquery])
  1531. ->where(['id !=' => 3])
  1532. ->execute();
  1533. $expected = [
  1534. ['say' => 'Second Comment for First Article'],
  1535. ['say' => 'Fourth Comment for First Article'],
  1536. ['say' => 'First Comment for Second Article'],
  1537. ['say' => 'Second Comment for Second Article'],
  1538. ];
  1539. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1540. }
  1541. /**
  1542. * Tests that Query objects can be included inside the where clause
  1543. * and be used as a normal condition, including binding any passed parameter
  1544. *
  1545. * @return void
  1546. */
  1547. public function testSubqueryInWhere() {
  1548. $query = new Query($this->connection);
  1549. $subquery = (new Query($this->connection))
  1550. ->select(['id'])
  1551. ->from('authors')
  1552. ->where(['id' => 1]);
  1553. $result = $query
  1554. ->select(['name'])
  1555. ->from(['authors'])
  1556. ->where(['id !=' => $subquery])
  1557. ->execute();
  1558. $expected = [
  1559. ['name' => 'nate'],
  1560. ['name' => 'larry'],
  1561. ['name' => 'garrett'],
  1562. ];
  1563. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1564. $query = new Query($this->connection);
  1565. $subquery = (new Query($this->connection))
  1566. ->select(['id'])
  1567. ->from('comments')
  1568. ->where(['created >' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime']);
  1569. $result = $query
  1570. ->select(['name'])
  1571. ->from(['authors'])
  1572. ->where(['id not in' => $subquery])
  1573. ->execute();
  1574. $expected = [
  1575. ['name' => 'mariano'],
  1576. ];
  1577. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1578. }
  1579. /**
  1580. * Tests that it is possible to use a subquery in a join clause
  1581. *
  1582. * @return void
  1583. */
  1584. public function testSubqueyInJoin() {
  1585. $subquery = (new Query($this->connection))->select('*')->from('authors');
  1586. $query = new Query($this->connection);
  1587. $result = $query
  1588. ->select(['title', 'name'])
  1589. ->from('articles')
  1590. ->join(['b' => $subquery])
  1591. ->execute();
  1592. $this->assertCount(self::ARTICLE_COUNT * self::AUTHOR_COUNT, $result, 'Cross join causes multiplication');
  1593. $subquery->where(['id' => 1]);
  1594. $result = $query->execute();
  1595. $this->assertCount(3, $result);
  1596. $query->join(['b' => ['table' => $subquery, 'conditions' => ['b.id = articles.id']]], [], true);
  1597. $result = $query->execute();
  1598. $this->assertCount(1, $result);
  1599. }
  1600. /**
  1601. * Tests that it is possible to one or multiple UNION statements in a query
  1602. *
  1603. * @return void
  1604. */
  1605. public function testUnion() {
  1606. $union = (new Query($this->connection))->select(['id', 'title'])->from(['a' => 'articles']);
  1607. $query = new Query($this->connection);
  1608. $result = $query->select(['id', 'comment'])
  1609. ->from(['c' => 'comments'])
  1610. ->union($union)
  1611. ->execute();
  1612. $this->assertCount(self::COMMENT_COUNT + self::ARTICLE_COUNT, $result);
  1613. $rows = $result->fetchAll();
  1614. $union->select(['foo' => 'id', 'bar' => 'title']);
  1615. $union = (new Query($this->connection))
  1616. ->select(['id', 'name', 'other' => 'id', 'nameish' => 'name'])
  1617. ->from(['b' => 'authors'])
  1618. ->where(['id ' => 1])
  1619. ->order(['id' => 'desc']);
  1620. $query->select(['foo' => 'id', 'bar' => 'comment'])->union($union);
  1621. $result = $query->execute();
  1622. $this->assertCount(self::COMMENT_COUNT + self::AUTHOR_COUNT, $result);
  1623. $this->assertNotEquals($rows, $result->fetchAll());
  1624. $union = (new Query($this->connection))
  1625. ->select(['id', 'title'])
  1626. ->from(['c' => 'articles']);
  1627. $query->select(['id', 'comment'], true)->union($union, true);
  1628. $result = $query->execute();
  1629. $this->assertCount(self::COMMENT_COUNT + self::ARTICLE_COUNT, $result);
  1630. $this->assertEquals($rows, $result->fetchAll());
  1631. }
  1632. /**
  1633. * Tests that UNION ALL can be built by setting the second param of union() to true
  1634. *
  1635. * @return void
  1636. */
  1637. public function testUnionAll() {
  1638. $union = (new Query($this->connection))->select(['id', 'title'])->from(['a' => 'articles']);
  1639. $query = new Query($this->connection);
  1640. $result = $query->select(['id', 'comment'])
  1641. ->from(['c' => 'comments'])
  1642. ->union($union)
  1643. ->execute();
  1644. $this->assertCount(self::ARTICLE_COUNT + self::COMMENT_COUNT, $result);
  1645. $rows = $result->fetchAll();
  1646. $union->select(['foo' => 'id', 'bar' => 'title']);
  1647. $union = (new Query($this->connection))
  1648. ->select(['id', 'name', 'other' => 'id', 'nameish' => 'name'])
  1649. ->from(['b' => 'authors'])
  1650. ->where(['id ' => 1])
  1651. ->order(['id' => 'desc']);
  1652. $query->select(['foo' => 'id', 'bar' => 'comment'])->unionAll($union);
  1653. $result = $query->execute();
  1654. $this->assertCount(1 + self::COMMENT_COUNT + self::ARTICLE_COUNT, $result);
  1655. $this->assertNotEquals($rows, $result->fetchAll());
  1656. }
  1657. /**
  1658. * Tests stacking decorators for results and resetting the list of decorators
  1659. *
  1660. * @return void
  1661. */
  1662. public function testDecorateResults() {
  1663. $query = new Query($this->connection);
  1664. $result = $query
  1665. ->select(['id', 'title'])
  1666. ->from('articles')
  1667. ->order(['id' => 'ASC'])
  1668. ->decorateResults(function($row) {
  1669. $row['modified_id'] = $row['id'] + 1;
  1670. return $row;
  1671. })
  1672. ->execute();
  1673. while ($row = $result->fetch('assoc')) {
  1674. $this->assertEquals($row['id'] + 1, $row['modified_id']);
  1675. }
  1676. $result = $query->decorateResults(function($row) {
  1677. $row['modified_id']--;
  1678. return $row;
  1679. })->execute();
  1680. while ($row = $result->fetch('assoc')) {
  1681. $this->assertEquals($row['id'], $row['modified_id']);
  1682. }
  1683. $result = $query
  1684. ->decorateResults(function($row) {
  1685. $row['foo'] = 'bar';
  1686. return $row;
  1687. }, true)
  1688. ->execute();
  1689. while ($row = $result->fetch('assoc')) {
  1690. $this->assertEquals('bar', $row['foo']);
  1691. $this->assertArrayNotHasKey('modified_id', $row);
  1692. }
  1693. $results = $query->decorateResults(null, true)->execute();
  1694. while ($row = $result->fetch('assoc')) {
  1695. $this->assertArrayNotHasKey('foo', $row);
  1696. $this->assertArrayNotHasKey('modified_id', $row);
  1697. }
  1698. }
  1699. /**
  1700. * Test a basic delete using from()
  1701. *
  1702. * @return void
  1703. */
  1704. public function testDeleteWithFrom() {
  1705. $query = new Query($this->connection);
  1706. $query->delete()
  1707. ->from('authors')
  1708. ->where('1 = 1');
  1709. $result = $query->sql();
  1710. $this->assertQuotedQuery('DELETE FROM <authors>', $result, true);
  1711. $result = $query->execute();
  1712. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  1713. $this->assertCount(self::AUTHOR_COUNT, $result);
  1714. }
  1715. /**
  1716. * Test a basic delete with no from() call.
  1717. *
  1718. * @return void
  1719. */
  1720. public function testDeleteNoFrom() {
  1721. $query = new Query($this->connection);
  1722. $query->delete('authors')
  1723. ->where('1 = 1');
  1724. $result = $query->sql();
  1725. $this->assertQuotedQuery('DELETE FROM <authors>', $result, true);
  1726. $result = $query->execute();
  1727. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  1728. $this->assertCount(self::AUTHOR_COUNT, $result);
  1729. }
  1730. /**
  1731. * Test setting select() & delete() modes.
  1732. *
  1733. * @return void
  1734. */
  1735. public function testSelectAndDeleteOnSameQuery() {
  1736. $query = new Query($this->connection);
  1737. $result = $query->select()
  1738. ->delete('authors')
  1739. ->where('1 = 1');
  1740. $result = $query->sql();
  1741. $this->assertQuotedQuery('DELETE FROM <authors>', $result, true);
  1742. $this->assertContains(' WHERE 1 = 1', $result);
  1743. }
  1744. /**
  1745. * Test a simple update.
  1746. *
  1747. * @return void
  1748. */
  1749. public function testUpdateSimple() {
  1750. $query = new Query($this->connection);
  1751. $query->update('authors')
  1752. ->set('name', 'mark')
  1753. ->where(['id' => 1]);
  1754. $result = $query->sql();
  1755. $this->assertQuotedQuery('UPDATE <authors> SET <name> = :', $result, true);
  1756. $result = $query->execute();
  1757. $this->assertCount(1, $result);
  1758. }
  1759. /**
  1760. * Test update with multiple fields.
  1761. *
  1762. * @return void
  1763. */
  1764. public function testUpdateMultipleFields() {
  1765. $query = new Query($this->connection);
  1766. $query->update('articles')
  1767. ->set('title', 'mark', 'string')
  1768. ->set('body', 'some text', 'string')
  1769. ->where(['id' => 1]);
  1770. $result = $query->sql();
  1771. $this->assertQuotedQuery(
  1772. 'UPDATE <articles> SET <title> = :c0 , <body> = :c1',
  1773. $result,
  1774. true
  1775. );
  1776. $this->assertQuotedQuery(' WHERE <id> = :c2$', $result, true);
  1777. $result = $query->execute();
  1778. $this->assertCount(1, $result);
  1779. }
  1780. /**
  1781. * Test updating multiple fields with an array.
  1782. *
  1783. * @return void
  1784. */
  1785. public function testUpdateMultipleFieldsArray() {
  1786. $query = new Query($this->connection);
  1787. $query->update('articles')
  1788. ->set([
  1789. 'title' => 'mark',
  1790. 'body' => 'some text'
  1791. ], ['title' => 'string', 'body' => 'string'])
  1792. ->where(['id' => 1]);
  1793. $result = $query->sql();
  1794. $this->assertQuotedQuery(
  1795. 'UPDATE <articles> SET <title> = :c0 , <body> = :c1',
  1796. $result,
  1797. true
  1798. );
  1799. $this->assertQuotedQuery('WHERE <id> = :', $result, true);
  1800. $result = $query->execute();
  1801. $this->assertCount(1, $result);
  1802. }
  1803. /**
  1804. * Test updates with an expression.
  1805. *
  1806. * @return void
  1807. */
  1808. public function testUpdateWithExpression() {
  1809. $query = new Query($this->connection);
  1810. $expr = $query->newExpr('title = author_id');
  1811. $query->update('articles')
  1812. ->set($expr)
  1813. ->where(['id' => 1]);
  1814. $result = $query->sql();
  1815. $this->assertQuotedQuery(
  1816. 'UPDATE <articles> SET title = author_id WHERE <id> = :',
  1817. $result,
  1818. true
  1819. );
  1820. $result = $query->execute();
  1821. $this->assertCount(1, $result);
  1822. }
  1823. /**
  1824. * Test update with array fields and types.
  1825. *
  1826. * @return void
  1827. */
  1828. public function testUpdateArrayFields() {
  1829. $query = new Query($this->connection);
  1830. $date = new \DateTime;
  1831. $query->update('comments')
  1832. ->set(['comment' => 'mark', 'created' => $date], ['created' => 'date'])
  1833. ->where(['id' => 1]);
  1834. $result = $query->sql();
  1835. $this->assertQuotedQuery(
  1836. 'UPDATE <comments> SET <comment> = :c0 , <created> = :c1',
  1837. $result,
  1838. true
  1839. );
  1840. $this->assertQuotedQuery(' WHERE <id> = :c2$', $result, true);
  1841. $result = $query->execute();
  1842. $this->assertCount(1, $result);
  1843. $query = new Query($this->connection);
  1844. $result = $query->select('created')->from('comments')->where(['id' => 1])->execute();
  1845. $result = $result->fetchAll('assoc')[0]['created'];
  1846. $this->assertStringStartsWith($date->format('Y-m-d'), $result);
  1847. }
  1848. /**
  1849. * You cannot call values() before insert() it causes all sorts of pain.
  1850. *
  1851. * @expectedException \Cake\Error\Exception
  1852. * @return void
  1853. */
  1854. public function testInsertValuesBeforeInsertFailure() {
  1855. $query = new Query($this->connection);
  1856. $query->select('*')->values([
  1857. 'id' => 1,
  1858. 'title' => 'mark',
  1859. 'body' => 'test insert'
  1860. ]);
  1861. }
  1862. /**
  1863. * Inserting nothing should not generate an error.
  1864. *
  1865. * @expectedException RuntimeException
  1866. * @expectedExceptionMessage At least 1 column is required to perform an insert.
  1867. * @return void
  1868. */
  1869. public function testInsertNothing() {
  1870. $query = new Query($this->connection);
  1871. $query->insert([]);
  1872. }
  1873. /**
  1874. * Test inserting a single row.
  1875. *
  1876. * @return void
  1877. */
  1878. public function testInsertSimple() {
  1879. $query = new Query($this->connection);
  1880. $query->insert(['title', 'body'])
  1881. ->into('articles')
  1882. ->values([
  1883. 'title' => 'mark',
  1884. 'body' => 'test insert'
  1885. ]);
  1886. $result = $query->sql();
  1887. $this->assertQuotedQuery(
  1888. 'INSERT INTO <articles> \(<title>, <body>\) ' .
  1889. 'VALUES \(\?, \?\)',
  1890. $result,
  1891. true
  1892. );
  1893. $result = $query->execute();
  1894. $this->assertCount(1, $result, '1 row should be inserted');
  1895. $expected = [
  1896. [
  1897. 'id' => 4,
  1898. 'author_id' => null,
  1899. 'title' => 'mark',
  1900. 'body' => 'test insert',
  1901. 'published' => 'N',
  1902. ]
  1903. ];
  1904. $this->assertTable('articles', 1, $expected, ['id >=' => 4]);
  1905. }
  1906. /**
  1907. * Test an insert when not all the listed fields are provided.
  1908. * Columns should be matched up where possible.
  1909. *
  1910. * @return void
  1911. */
  1912. public function testInsertSparseRow() {
  1913. $query = new Query($this->connection);
  1914. $query->insert(['title', 'body'])
  1915. ->into('articles')
  1916. ->values([
  1917. 'title' => 'mark',
  1918. ]);
  1919. $result = $query->sql();
  1920. $this->assertQuotedQuery(
  1921. 'INSERT INTO <articles> \(<title>, <body>\) ' .
  1922. 'VALUES \(\?, \?\)',
  1923. $result,
  1924. true
  1925. );
  1926. $result = $query->execute();
  1927. $this->assertCount(1, $result, '1 row should be inserted');
  1928. $expected = [
  1929. [
  1930. 'id' => 4,
  1931. 'author_id' => null,
  1932. 'title' => 'mark',
  1933. 'body' => null,
  1934. 'published' => 'N',
  1935. ]
  1936. ];
  1937. $this->assertTable('articles', 1, $expected, ['id >= 4']);
  1938. }
  1939. /**
  1940. * Test inserting multiple rows with sparse data.
  1941. *
  1942. * @return void
  1943. */
  1944. public function testInsertMultipleRowsSparse() {
  1945. $query = new Query($this->connection);
  1946. $query->insert(['title', 'body'])
  1947. ->into('articles')
  1948. ->values([
  1949. 'body' => 'test insert'
  1950. ])
  1951. ->values([
  1952. 'title' => 'jose',
  1953. ]);
  1954. $result = $query->execute();
  1955. $this->assertCount(2, $result, '2 rows should be inserted');
  1956. $expected = [
  1957. [
  1958. 'id' => 4,
  1959. 'author_id' => null,
  1960. 'title' => null,
  1961. 'body' => 'test insert',
  1962. 'published' => 'N',
  1963. ],
  1964. [
  1965. 'id' => 5,
  1966. 'author_id' => null,
  1967. 'title' => 'jose',
  1968. 'body' => null,
  1969. 'published' => 'N',
  1970. ],
  1971. ];
  1972. $this->assertTable('articles', 2, $expected, ['id >=' => 4]);
  1973. }
  1974. /**
  1975. * Test that INSERT INTO ... SELECT works.
  1976. *
  1977. * @return void
  1978. */
  1979. public function testInsertFromSelect() {
  1980. $select = (new Query($this->connection))->select(['name', "'some text'", 99])
  1981. ->from('authors')
  1982. ->where(['id' => 1]);
  1983. $query = new Query($this->connection);
  1984. $query->insert(
  1985. ['title', 'body', 'author_id'],
  1986. ['title' => 'string', 'body' => 'string', 'author_id' => 'integer']
  1987. )
  1988. ->into('articles')
  1989. ->values($select);
  1990. $result = $query->sql();
  1991. $this->assertQuotedQuery(
  1992. 'INSERT INTO <articles> \(<title>, <body>, <author_id>\) SELECT',
  1993. $result,
  1994. true
  1995. );
  1996. $this->assertQuotedQuery(
  1997. 'SELECT <name>, \'some text\', 99 FROM <authors>', $result, true);
  1998. $result = $query->execute();
  1999. $this->assertCount(1, $result);
  2000. $result = (new Query($this->connection))->select('*')
  2001. ->from('articles')
  2002. ->where(['author_id' => 99])
  2003. ->execute();
  2004. $this->assertCount(1, $result);
  2005. $expected = [
  2006. 'id' => 4,
  2007. 'title' => 'mariano',
  2008. 'body' => 'some text',
  2009. 'author_id' => 99,
  2010. 'published' => 'N',
  2011. ];
  2012. $this->assertEquals($expected, $result->fetch('assoc'));
  2013. }
  2014. /**
  2015. * Test that an exception is raised when mixing query + array types.
  2016. *
  2017. * @expectedException \Cake\Error\Exception
  2018. */
  2019. public function testInsertFailureMixingTypesArrayFirst() {
  2020. $query = new Query($this->connection);
  2021. $query->insert(['name'])
  2022. ->into('articles')
  2023. ->values(['name' => 'mark'])
  2024. ->values(new Query($this->connection));
  2025. }
  2026. /**
  2027. * Test that an exception is raised when mixing query + array types.
  2028. *
  2029. * @expectedException \Cake\Error\Exception
  2030. */
  2031. public function testInsertFailureMixingTypesQueryFirst() {
  2032. $query = new Query($this->connection);
  2033. $query->insert(['name'])
  2034. ->into('articles')
  2035. ->values(new Query($this->connection))
  2036. ->values(['name' => 'mark']);
  2037. }
  2038. /**
  2039. * Tests that functions are correctly transformed and their parameters are bound
  2040. *
  2041. * @group FunctionExpression
  2042. * @return void
  2043. */
  2044. public function testSQLFunctions() {
  2045. $query = new Query($this->connection);
  2046. $result = $query->select(
  2047. function($q) {
  2048. return ['total' => $q->func()->count('*')];
  2049. }
  2050. )
  2051. ->from('articles')
  2052. ->execute();
  2053. $expected = [['total' => 3]];
  2054. $this->assertEquals($expected, $result->fetchAll('assoc'));
  2055. $query = new Query($this->connection);
  2056. $result = $query->select([
  2057. 'c' => $query->func()->concat(['title' => 'literal', ' is appended'])
  2058. ])
  2059. ->from('articles')
  2060. ->order(['c' => 'ASC'])
  2061. ->execute();
  2062. $expected = [
  2063. ['c' => 'First Article is appended'],
  2064. ['c' => 'Second Article is appended'],
  2065. ['c' => 'Third Article is appended']
  2066. ];
  2067. $this->assertEquals($expected, $result->fetchAll('assoc'));
  2068. $query = new Query($this->connection);
  2069. $result = $query
  2070. ->select(['d' => $query->func()->dateDiff(['2012-01-05', '2012-01-02'])])
  2071. ->execute()
  2072. ->fetchAll('assoc');
  2073. $this->assertEquals(3, abs($result[0]['d']));
  2074. $query = new Query($this->connection);
  2075. $result = $query
  2076. ->select(['d' => $query->func()->now('date')])
  2077. ->execute();
  2078. $this->assertEquals([['d' => date('Y-m-d')]], $result->fetchAll('assoc'));
  2079. $query = new Query($this->connection);
  2080. $result = $query
  2081. ->select(['d' => $query->func()->now('time')])
  2082. ->execute();
  2083. $this->assertWithinRange(
  2084. date('U'),
  2085. (new \DateTime($result->fetchAll('assoc')[0]['d']))->format('U'),
  2086. 1
  2087. );
  2088. $query = new Query($this->connection);
  2089. $result = $query
  2090. ->select(['d' => $query->func()->now()])
  2091. ->execute();
  2092. $this->assertWithinRange(
  2093. date('U'),
  2094. (new \DateTime($result->fetchAll('assoc')[0]['d']))->format('U'),
  2095. 1
  2096. );
  2097. }
  2098. /**
  2099. * Tests that default types are passed to functions accepting a $types param
  2100. *
  2101. * @return void
  2102. */
  2103. public function testDefaultTypes() {
  2104. $query = new Query($this->connection);
  2105. $this->assertEquals([], $query->defaultTypes());
  2106. $types = ['id' => 'integer', 'created' => 'datetime'];
  2107. $this->assertSame($query, $query->defaultTypes($types));
  2108. $this->assertSame($types, $query->defaultTypes());
  2109. $results = $query->select(['id', 'comment'])
  2110. ->from('comments')
  2111. ->where(['created >=' => new \DateTime('2007-03-18 10:55:00')])
  2112. ->execute();
  2113. $expected = [['id' => '6', 'comment' => 'Second Comment for Second Article']];
  2114. $this->assertEquals($expected, $results->fetchAll('assoc'));
  2115. // Now test default can be overridden
  2116. $types = ['created' => 'date'];
  2117. $results = $query
  2118. ->where(['created >=' => new \DateTime('2007-03-18 10:50:00')], $types, true)
  2119. ->execute();
  2120. $this->assertCount(6, $results, 'All 6 rows should match.');
  2121. }
  2122. /**
  2123. * Tests parameter binding
  2124. *
  2125. * @return void
  2126. */
  2127. public function testBind() {
  2128. $query = new Query($this->connection);
  2129. $results = $query->select(['id', 'comment'])
  2130. ->from('comments')
  2131. ->where(['created BETWEEN :foo AND :bar'])
  2132. ->bind(':foo', new \DateTime('2007-03-18 10:50:00'), 'datetime')
  2133. ->bind(':bar', new \DateTime('2007-03-18 10:52:00'), 'datetime')
  2134. ->execute();
  2135. $expected = [['id' => '4', 'comment' => 'Fourth Comment for First Article']];
  2136. $this->assertEquals($expected, $results->fetchAll('assoc'));
  2137. $query = new Query($this->connection);
  2138. $results = $query->select(['id', 'comment'])
  2139. ->from('comments')
  2140. ->where(['created BETWEEN :foo AND :bar'])
  2141. ->bind(':foo', '2007-03-18 10:50:00')
  2142. ->bind(':bar', '2007-03-18 10:52:00')
  2143. ->execute();
  2144. $this->assertEquals($expected, $results->fetchAll('assoc'));
  2145. }
  2146. /**
  2147. * Test that epilog() will actually append a string to a select query
  2148. *
  2149. * @return void
  2150. */
  2151. public function testAppendSelect() {
  2152. $query = new Query($this->connection);
  2153. $sql = $query
  2154. ->select(['id', 'title'])
  2155. ->from('articles')
  2156. ->where(['id' => 1])
  2157. ->epilog('FOR UPDATE')
  2158. ->sql();
  2159. $this->assertContains('SELECT', $sql);
  2160. $this->assertContains('FROM', $sql);
  2161. $this->assertContains('WHERE', $sql);
  2162. $this->assertEquals(' FOR UPDATE', substr($sql, -11));
  2163. }
  2164. /**
  2165. * Test that epilog() will actually append a string to an insert query
  2166. *
  2167. * @return void
  2168. */
  2169. public function testAppendInsert() {
  2170. $query = new Query($this->connection);
  2171. $sql = $query
  2172. ->insert(['id', 'title'])
  2173. ->into('articles')
  2174. ->values([1, 'a title'])
  2175. ->epilog('RETURNING id')
  2176. ->sql();
  2177. $this->assertContains('INSERT', $sql);
  2178. $this->assertContains('INTO', $sql);
  2179. $this->assertContains('VALUES', $sql);
  2180. $this->assertEquals(' RETURNING id', substr($sql, -13));
  2181. }
  2182. /**
  2183. * Test that epilog() will actually append a string to an update query
  2184. *
  2185. * @return void
  2186. */
  2187. public function testAppendUpdate() {
  2188. $query = new Query($this->connection);
  2189. $sql = $query
  2190. ->update('articles')
  2191. ->set(['title' => 'foo'])
  2192. ->where(['id' => 1])
  2193. ->epilog('RETURNING id')
  2194. ->sql();
  2195. $this->assertContains('UPDATE', $sql);
  2196. $this->assertContains('SET', $sql);
  2197. $this->assertContains('WHERE', $sql);
  2198. $this->assertEquals(' RETURNING id', substr($sql, -13));
  2199. }
  2200. /**
  2201. * Test that epilog() will actually append a string to a delete query
  2202. *
  2203. * @return void
  2204. */
  2205. public function testAppendDelete() {
  2206. $query = new Query($this->connection);
  2207. $sql = $query
  2208. ->delete('articles')
  2209. ->where(['id' => 1])
  2210. ->epilog('RETURNING id')
  2211. ->sql();
  2212. $this->assertContains('DELETE FROM', $sql);
  2213. $this->assertContains('WHERE', $sql);
  2214. $this->assertEquals(' RETURNING id', substr($sql, -13));
  2215. }
  2216. /**
  2217. * Tests automatic identifier quoting in the select clause
  2218. *
  2219. * @return void
  2220. */
  2221. public function testQuotingSelectFieldsAndAlias() {
  2222. $this->connection->driver()->autoQuoting(true);
  2223. $query = new Query($this->connection);
  2224. $sql = $query->select(['something'])->sql();
  2225. $this->assertQuotedQuery('SELECT <something>$', $sql);
  2226. $query = new Query($this->connection);
  2227. $sql = $query->select(['foo' => 'something'])->sql();
  2228. $this->assertQuotedQuery('SELECT <something> AS <foo>$', $sql);
  2229. $query = new Query($this->connection);
  2230. $sql = $query->select(['foo' => 1])->sql();
  2231. $this->assertQuotedQuery('SELECT 1 AS <foo>$', $sql);
  2232. $query = new Query($this->connection);
  2233. $sql = $query->select(['foo' => '1 + 1'])->sql();
  2234. $this->assertQuotedQuery('SELECT <1 \+ 1> AS <foo>$', $sql);
  2235. $query = new Query($this->connection);
  2236. $sql = $query->select(['foo' => $query->newExpr('1 + 1')])->sql();
  2237. $this->assertQuotedQuery('SELECT \(1 \+ 1\) AS <foo>$', $sql);
  2238. $query = new Query($this->connection);
  2239. $sql = $query->select(['foo' => new IdentifierExpression('bar')])->sql();
  2240. $this->assertQuotedQuery('<bar>', $sql);
  2241. }
  2242. /**
  2243. * Tests automatic identifier quoting in the from clause
  2244. *
  2245. * @return void
  2246. */
  2247. public function testQuotingFromAndAlias() {
  2248. $this->connection->driver()->autoQuoting(true);
  2249. $query = new Query($this->connection);
  2250. $sql = $query->select('*')->from(['something'])->sql();
  2251. $this->assertQuotedQuery('FROM <something>', $sql);
  2252. $query = new Query($this->connection);
  2253. $sql = $query->select('*')->from(['foo' => 'something'])->sql();
  2254. $this->assertQuotedQuery('FROM <something> AS <foo>$', $sql);
  2255. $query = new Query($this->connection);
  2256. $sql = $query->select('*')->from(['foo' => $query->newExpr('bar')])->sql();
  2257. $this->assertQuotedQuery('FROM \(bar\) AS <foo>$', $sql);
  2258. }
  2259. /**
  2260. * Tests automatic identifier quoting for DISTINCT ON
  2261. *
  2262. * @return void
  2263. */
  2264. public function testQuotingDistinctOn() {
  2265. $this->connection->driver()->autoQuoting(true);
  2266. $query = new Query($this->connection);
  2267. $sql = $query->select('*')->distinct(['something'])->sql();
  2268. $this->assertQuotedQuery('<something>', $sql);
  2269. }
  2270. /**
  2271. * Tests automatic identifier quoting in the join clause
  2272. *
  2273. * @return void
  2274. */
  2275. public function testQuotingJoinsAndAlias() {
  2276. $this->connection->driver()->autoQuoting(true);
  2277. $query = new Query($this->connection);
  2278. $sql = $query->select('*')->join(['something'])->sql();
  2279. $this->assertQuotedQuery('JOIN <something>', $sql);
  2280. $query = new Query($this->connection);
  2281. $sql = $query->select('*')->join(['foo' => 'something'])->sql();
  2282. $this->assertQuotedQuery('JOIN <something> <foo>', $sql);
  2283. $query = new Query($this->connection);
  2284. $sql = $query->select('*')->join(['foo' => $query->newExpr('bar')])->sql();
  2285. $this->assertQuotedQuery('JOIN \(bar\) <foo>', $sql);
  2286. }
  2287. /**
  2288. * Tests automatic identifier quoting in the group by clause
  2289. *
  2290. * @return void
  2291. */
  2292. public function testQuotingGroupBy() {
  2293. $this->connection->driver()->autoQuoting(true);
  2294. $query = new Query($this->connection);
  2295. $sql = $query->select('*')->group(['something'])->sql();
  2296. $this->assertQuotedQuery('GROUP BY <something>', $sql);
  2297. $query = new Query($this->connection);
  2298. $sql = $query->select('*')->group([$query->newExpr('bar')])->sql();
  2299. $this->assertQuotedQuery('GROUP BY \(bar\)', $sql);
  2300. $query = new Query($this->connection);
  2301. $sql = $query->select('*')->group([new IdentifierExpression('bar')])->sql();
  2302. $this->assertQuotedQuery('GROUP BY \(<bar>\)', $sql);
  2303. }
  2304. /**
  2305. * Tests automatic identifier quoting strings inside conditions expressions
  2306. *
  2307. * @return void
  2308. */
  2309. public function testQuotingExpressions() {
  2310. $this->connection->driver()->autoQuoting(true);
  2311. $query = new Query($this->connection);
  2312. $sql = $query->select('*')
  2313. ->where(['something' => 'value'])
  2314. ->sql();
  2315. $this->assertQuotedQuery('WHERE <something> = :c0', $sql);
  2316. $query = new Query($this->connection);
  2317. $sql = $query->select('*')
  2318. ->where([
  2319. 'something' => 'value',
  2320. 'OR' => ['foo' => 'bar', 'baz' => 'cake']
  2321. ])
  2322. ->sql();
  2323. $this->assertQuotedQuery('<something> = :c0 AND', $sql);
  2324. $this->assertQuotedQuery('\(<foo> = :c1 OR <baz> = :c2\)', $sql);
  2325. }
  2326. /**
  2327. * Tests that insert query parts get quoted automatically
  2328. *
  2329. * @return void
  2330. */
  2331. public function testQuotingInsert() {
  2332. $this->connection->driver()->autoQuoting(true);
  2333. $query = new Query($this->connection);
  2334. $sql = $query->insert(['bar', 'baz'])
  2335. ->into('foo')
  2336. ->where(['something' => 'value'])
  2337. ->sql();
  2338. $this->assertQuotedQuery('INSERT INTO <foo> \(<bar>, <baz>\)', $sql);
  2339. $query = new Query($this->connection);
  2340. $sql = $query->insert([$query->newExpr('bar')])
  2341. ->into('foo')
  2342. ->where(['something' => 'value'])
  2343. ->sql();
  2344. $this->assertQuotedQuery('INSERT INTO <foo> \(\(bar\)\)', $sql);
  2345. }
  2346. /**
  2347. * Tests converting a query to a string
  2348. *
  2349. * @return void
  2350. */
  2351. public function testToString() {
  2352. $query = new Query($this->connection);
  2353. $query
  2354. ->select(['title'])
  2355. ->from('articles');
  2356. $result = (string)$query;
  2357. $this->assertQuotedQuery('SELECT <title> FROM <articles>', $result, true);
  2358. }
  2359. /**
  2360. * Tests __debugInfo
  2361. *
  2362. * @return void
  2363. */
  2364. public function testDebugInfo() {
  2365. $query = (new Query($this->connection))->select('*')
  2366. ->from('articles')
  2367. ->defaultTypes(['id' => 'integer'])
  2368. ->where(['id' => '1']);
  2369. $expected = [
  2370. 'sql' => $query->sql(),
  2371. 'params' => [
  2372. ':c0' => ['value' => '1', 'type' => 'integer', 'placeholder' => 'c0']
  2373. ],
  2374. 'defaultTypes' => ['id' => 'integer'],
  2375. 'decorators' => 0,
  2376. 'executed' => false
  2377. ];
  2378. $result = $query->__debugInfo();
  2379. $this->assertEquals($expected, $result);
  2380. $query->execute();
  2381. $expected = [
  2382. 'sql' => $query->sql(),
  2383. 'params' => [
  2384. ':c0' => ['value' => '1', 'type' => 'integer', 'placeholder' => 'c0']
  2385. ],
  2386. 'defaultTypes' => ['id' => 'integer'],
  2387. 'decorators' => 0,
  2388. 'executed' => true
  2389. ];
  2390. $result = $query->__debugInfo();
  2391. }
  2392. /**
  2393. * Tests that it is possible to pass ExpressionInterface to isNull and isNotNull
  2394. *
  2395. * @return void
  2396. */
  2397. public function testIsNullWithExpressions() {
  2398. $query = new Query($this->connection);
  2399. $subquery = (new Query($this->connection))
  2400. ->select(['id'])
  2401. ->from('authors')
  2402. ->where(['id' => 1]);
  2403. $result = $query
  2404. ->select(['name'])
  2405. ->from(['authors'])
  2406. ->where(function($exp) use ($subquery) {
  2407. return $exp->isNotNull($subquery);
  2408. })
  2409. ->execute();
  2410. $this->assertNotEmpty($result->fetchAll('assoc'));
  2411. $result = (new Query($this->connection))
  2412. ->select(['name'])
  2413. ->from(['authors'])
  2414. ->where(function($exp) use ($subquery) {
  2415. return $exp->isNull($subquery);
  2416. })
  2417. ->execute();
  2418. $this->assertEmpty($result->fetchAll('assoc'));
  2419. }
  2420. /**
  2421. * Tests that strings passed to isNull and isNotNull will be treated as identifiers
  2422. * when using autoQuoting
  2423. *
  2424. * @return void
  2425. */
  2426. public function testIsNullAutoQuoting() {
  2427. $this->connection->driver()->autoQuoting(true);
  2428. $query = new Query($this->connection);
  2429. $query->select('*')->from('things')->where(function($exp) {
  2430. return $exp->isNull('field');
  2431. });
  2432. $this->assertQuotedQuery('WHERE \(<field>\) IS NULL', $query->sql());
  2433. $query = new Query($this->connection);
  2434. $query->select('*')->from('things')->where(function($exp) {
  2435. return $exp->isNotNull('field');
  2436. });
  2437. $this->assertQuotedQuery('WHERE \(<field>\) IS NOT NULL', $query->sql());
  2438. }
  2439. /**
  2440. * Tests that using the IS operator will automatically translate to the best
  2441. * possible operator depending on the passed value
  2442. *
  2443. * @return void
  2444. */
  2445. public function testDirectIsNull() {
  2446. $sql = (new Query($this->connection))
  2447. ->select(['name'])
  2448. ->from(['authors'])
  2449. ->where(['name IS' => null])
  2450. ->sql();
  2451. $this->assertQuotedQuery('WHERE \(<name>\) IS NULL', $sql, true);
  2452. $results = (new Query($this->connection))
  2453. ->select(['name'])
  2454. ->from(['authors'])
  2455. ->where(['name IS' => 'larry'])
  2456. ->execute();
  2457. $this->assertCount(1, $results);
  2458. $this->assertEquals(['name' => 'larry'], $results->fetch('assoc'));
  2459. }
  2460. /**
  2461. * Assertion for comparing a table's contents with what is in it.
  2462. *
  2463. * @param string $table
  2464. * @param int $count
  2465. * @param array $rows
  2466. * @param array $conditions
  2467. * @return void
  2468. */
  2469. public function assertTable($table, $count, $rows, $conditions = []) {
  2470. $result = (new Query($this->connection))->select('*')
  2471. ->from($table)
  2472. ->where($conditions)
  2473. ->execute();
  2474. $this->assertCount($count, $result, 'Row count is incorrect');
  2475. $this->assertEquals($rows, $result->fetchAll('assoc'));
  2476. }
  2477. /**
  2478. * Assertion for comparing a regex pattern against a query having its indentifiers
  2479. * quoted. It accepts queries quoted with the characters `<` and `>`. If the third
  2480. * parameter is set to true, it will alter the pattern to both accept quoted and
  2481. * unquoted queries
  2482. *
  2483. * @param string $pattern
  2484. * @param string $query the result to compare against
  2485. * @param bool $optional
  2486. * @return void
  2487. */
  2488. public function assertQuotedQuery($pattern, $query, $optional = false) {
  2489. if ($optional) {
  2490. $optional = '?';
  2491. }
  2492. $pattern = str_replace('<', '[`"\[]' . $optional, $pattern);
  2493. $pattern = str_replace('>', '[`"\]]' . $optional, $pattern);
  2494. $this->assertRegExp('#' . $pattern . '#', $query);
  2495. }
  2496. }