QueryTest.php 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398
  1. <?php
  2. /**
  3. * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
  4. * Copyright (c) Cake Software Foundation, Inc. (https://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. (https://cakefoundation.org)
  11. * @link https://cakephp.org CakePHP(tm) Project
  12. * @since 3.0.0
  13. * @license https://opensource.org/licenses/mit-license.php MIT License
  14. */
  15. namespace Cake\Test\TestCase\Database;
  16. use Cake\Database\Expression\IdentifierExpression;
  17. use Cake\Database\Query;
  18. use Cake\Database\StatementInterface;
  19. use Cake\Database\TypeMap;
  20. use Cake\Datasource\ConnectionManager;
  21. use Cake\TestSuite\TestCase;
  22. /**
  23. * Tests Query class
  24. */
  25. class QueryTest extends TestCase
  26. {
  27. public $fixtures = ['core.articles', 'core.authors', 'core.comments'];
  28. public $autoFixtures = false;
  29. const ARTICLE_COUNT = 3;
  30. const AUTHOR_COUNT = 4;
  31. const COMMENT_COUNT = 6;
  32. public function setUp()
  33. {
  34. parent::setUp();
  35. $this->connection = ConnectionManager::get('test');
  36. $this->autoQuote = $this->connection->driver()->autoQuoting();
  37. }
  38. public function tearDown()
  39. {
  40. parent::tearDown();
  41. $this->connection->driver()->autoQuoting($this->autoQuote);
  42. unset($this->connection);
  43. }
  44. /**
  45. * Queries need a default type to prevent fatal errors
  46. * when an uninitialized query has its sql() method called.
  47. *
  48. * @return void
  49. */
  50. public function testDefaultType()
  51. {
  52. $query = new Query($this->connection);
  53. $this->assertEquals('', $query->sql());
  54. $this->assertEquals('select', $query->type());
  55. }
  56. /**
  57. * Tests that it is possible to obtain expression results from a query
  58. *
  59. * @return void
  60. */
  61. public function testSelectFieldsOnly()
  62. {
  63. $this->connection->driver()->autoQuoting(false);
  64. $query = new Query($this->connection);
  65. $result = $query->select('1 + 1')->execute();
  66. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  67. $this->assertEquals([2], $result->fetch());
  68. $result->closeCursor();
  69. //This new field should be appended
  70. $result = $query->select(['1 + 3'])->execute();
  71. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  72. $this->assertEquals([2, 4], $result->fetch());
  73. $result->closeCursor();
  74. //This should now overwrite all previous fields
  75. $result = $query->select(['1 + 2', '1 + 5'], true)->execute();
  76. $this->assertEquals([3, 6], $result->fetch());
  77. $result->closeCursor();
  78. }
  79. /**
  80. * Tests that it is possible to pass a closure as fields in select()
  81. *
  82. * @return void
  83. */
  84. public function testSelectClosure()
  85. {
  86. $this->connection->driver()->autoQuoting(false);
  87. $query = new Query($this->connection);
  88. $result = $query->select(function ($q) use ($query) {
  89. $this->assertSame($query, $q);
  90. return ['1 + 2', '1 + 5'];
  91. })->execute();
  92. $this->assertEquals([3, 6], $result->fetch());
  93. $result->closeCursor();
  94. }
  95. /**
  96. * Tests it is possible to select fields from tables with no conditions
  97. *
  98. * @return void
  99. */
  100. public function testSelectFieldsFromTable()
  101. {
  102. $this->loadFixtures('Authors', 'Articles');
  103. $query = new Query($this->connection);
  104. $result = $query->select(['body', 'author_id'])->from('articles')->execute();
  105. $this->assertEquals(['body' => 'First Article Body', 'author_id' => 1], $result->fetch('assoc'));
  106. $this->assertEquals(['body' => 'Second Article Body', 'author_id' => 3], $result->fetch('assoc'));
  107. $result->closeCursor();
  108. //Append more tables to next execution
  109. $result = $query->select('name')->from(['authors'])->order(['name' => 'desc', 'articles.id' => 'asc'])->execute();
  110. $this->assertEquals(['body' => 'First Article Body', 'author_id' => 1, 'name' => 'nate'], $result->fetch('assoc'));
  111. $this->assertEquals(['body' => 'Second Article Body', 'author_id' => 3, 'name' => 'nate'], $result->fetch('assoc'));
  112. $this->assertEquals(['body' => 'Third Article Body', 'author_id' => 1, 'name' => 'nate'], $result->fetch('assoc'));
  113. $result->closeCursor();
  114. // Overwrite tables and only fetch from authors
  115. $result = $query->select('name', true)->from('authors', true)->order(['name' => 'desc'], true)->execute();
  116. $this->assertEquals(['nate'], $result->fetch());
  117. $this->assertEquals(['mariano'], $result->fetch());
  118. $this->assertCount(4, $result);
  119. $result->closeCursor();
  120. }
  121. /**
  122. * Tests it is possible to select aliased fields
  123. *
  124. * @return void
  125. */
  126. public function testSelectAliasedFieldsFromTable()
  127. {
  128. $this->loadFixtures('Comments');
  129. $query = new Query($this->connection);
  130. $result = $query->select(['text' => 'comment', 'article_id'])->from('comments')->execute();
  131. $this->assertEquals(['text' => 'First Comment for First Article', 'article_id' => 1], $result->fetch('assoc'));
  132. $this->assertEquals(['text' => 'Second Comment for First Article', 'article_id' => 1], $result->fetch('assoc'));
  133. $result->closeCursor();
  134. $query = new Query($this->connection);
  135. $result = $query->select(['text' => 'comment', 'article' => 'article_id'])->from('comments')->execute();
  136. $this->assertEquals(['text' => 'First Comment for First Article', 'article' => 1], $result->fetch('assoc'));
  137. $this->assertEquals(['text' => 'Second Comment for First Article', 'article' => 1], $result->fetch('assoc'));
  138. $result->closeCursor();
  139. $query = new Query($this->connection);
  140. $query->select(['text' => 'comment'])->select(['article_id', 'foo' => 'comment']);
  141. $result = $query->from('comments')->execute();
  142. $this->assertEquals(
  143. ['foo' => 'First Comment for First Article', 'text' => 'First Comment for First Article', 'article_id' => 1],
  144. $result->fetch('assoc')
  145. );
  146. $result->closeCursor();
  147. $query = new Query($this->connection);
  148. $exp = $query->newExpr('1 + 1');
  149. $comp = $query->newExpr(['article_id +' => 2]);
  150. $result = $query->select(['text' => 'comment', 'two' => $exp, 'three' => $comp])
  151. ->from('comments')->execute();
  152. $this->assertEquals(['text' => 'First Comment for First Article', 'two' => 2, 'three' => 3], $result->fetch('assoc'));
  153. $result->closeCursor();
  154. }
  155. /**
  156. * Tests that tables can also be aliased and referenced in the select clause using such alias
  157. *
  158. * @return void
  159. */
  160. public function testSelectAliasedTables()
  161. {
  162. $this->loadFixtures('Authors', 'Articles');
  163. $query = new Query($this->connection);
  164. $result = $query->select(['text' => 'a.body', 'a.author_id'])
  165. ->from(['a' => 'articles'])->execute();
  166. $this->assertEquals(['text' => 'First Article Body', 'author_id' => 1], $result->fetch('assoc'));
  167. $this->assertEquals(['text' => 'Second Article Body', 'author_id' => 3], $result->fetch('assoc'));
  168. $result->closeCursor();
  169. $result = $query->select(['name' => 'b.name'])->from(['b' => 'authors'])
  170. ->order(['text' => 'desc', 'name' => 'desc'])
  171. ->execute();
  172. $this->assertEquals(
  173. ['text' => 'Third Article Body', 'author_id' => 1, 'name' => 'nate'],
  174. $result->fetch('assoc')
  175. );
  176. $this->assertEquals(
  177. ['text' => 'Third Article Body', 'author_id' => 1, 'name' => 'mariano'],
  178. $result->fetch('assoc')
  179. );
  180. $result->closeCursor();
  181. }
  182. /**
  183. * Tests it is possible to add joins to a select query
  184. *
  185. * @return void
  186. */
  187. public function testSelectWithJoins()
  188. {
  189. $this->loadFixtures('Authors', 'Articles');
  190. $query = new Query($this->connection);
  191. $result = $query
  192. ->select(['title', 'name'])
  193. ->from('articles')
  194. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $query->newExpr()->equalFields('author_id', 'a.id')])
  195. ->order(['title' => 'asc'])
  196. ->execute();
  197. $this->assertCount(3, $result);
  198. $this->assertEquals(['title' => 'First Article', 'name' => 'mariano'], $result->fetch('assoc'));
  199. $this->assertEquals(['title' => 'Second Article', 'name' => 'larry'], $result->fetch('assoc'));
  200. $result->closeCursor();
  201. $result = $query->join('authors', [], true)->execute();
  202. $this->assertCount(12, $result, 'Cross join results in 12 records');
  203. $result->closeCursor();
  204. $result = $query->join([
  205. ['table' => 'authors', 'type' => 'INNER', 'conditions' => $query->newExpr()->equalFields('author_id', 'authors.id')]
  206. ], [], true)->execute();
  207. $this->assertCount(3, $result);
  208. $this->assertEquals(['title' => 'First Article', 'name' => 'mariano'], $result->fetch('assoc'));
  209. $this->assertEquals(['title' => 'Second Article', 'name' => 'larry'], $result->fetch('assoc'));
  210. $result->closeCursor();
  211. }
  212. /**
  213. * Tests it is possible to add joins to a select query using array or expression as conditions
  214. *
  215. * @return void
  216. */
  217. public function testSelectWithJoinsConditions()
  218. {
  219. $this->loadFixtures('Authors', 'Articles', 'Comments');
  220. $query = new Query($this->connection);
  221. $result = $query
  222. ->select(['title', 'name'])
  223. ->from('articles')
  224. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => [$query->newExpr()->equalFields('author_id ', 'a.id')]])
  225. ->order(['title' => 'asc'])
  226. ->execute();
  227. $this->assertEquals(['title' => 'First Article', 'name' => 'mariano'], $result->fetch('assoc'));
  228. $this->assertEquals(['title' => 'Second Article', 'name' => 'larry'], $result->fetch('assoc'));
  229. $result->closeCursor();
  230. $query = new Query($this->connection);
  231. $conditions = $query->newExpr()->equalFields('author_id', 'a.id');
  232. $result = $query
  233. ->select(['title', 'name'])
  234. ->from('articles')
  235. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $conditions])
  236. ->order(['title' => 'asc'])
  237. ->execute();
  238. $this->assertEquals(['title' => 'First Article', 'name' => 'mariano'], $result->fetch('assoc'));
  239. $this->assertEquals(['title' => 'Second Article', 'name' => 'larry'], $result->fetch('assoc'));
  240. $result->closeCursor();
  241. $query = new Query($this->connection);
  242. $time = new \DateTime('2007-03-18 10:50:00');
  243. $types = ['created' => 'datetime'];
  244. $result = $query
  245. ->select(['title', 'comment' => 'c.comment'])
  246. ->from('articles')
  247. ->join(['table' => 'comments', 'alias' => 'c', 'conditions' => ['created <=' => $time]], $types)
  248. ->execute();
  249. $this->assertEquals(['title' => 'First Article', 'comment' => 'First Comment for First Article'], $result->fetch('assoc'));
  250. $result->closeCursor();
  251. }
  252. /**
  253. * Tests that joins can be aliased using array keys
  254. *
  255. * @return void
  256. */
  257. public function testSelectAliasedJoins()
  258. {
  259. $this->loadFixtures('Authors', 'Articles', 'Comments');
  260. $query = new Query($this->connection);
  261. $result = $query
  262. ->select(['title', 'name'])
  263. ->from('articles')
  264. ->join(['a' => 'authors'])
  265. ->order(['name' => 'desc', 'articles.id' => 'asc'])
  266. ->execute();
  267. $this->assertEquals(['title' => 'First Article', 'name' => 'nate'], $result->fetch('assoc'));
  268. $this->assertEquals(['title' => 'Second Article', 'name' => 'nate'], $result->fetch('assoc'));
  269. $result->closeCursor();
  270. $query = new Query($this->connection);
  271. $conditions = $query->newExpr('author_id = a.id');
  272. $result = $query
  273. ->select(['title', 'name'])
  274. ->from('articles')
  275. ->join(['a' => ['table' => 'authors', 'conditions' => $conditions]])
  276. ->order(['title' => 'asc'])
  277. ->execute();
  278. $this->assertEquals(['title' => 'First Article', 'name' => 'mariano'], $result->fetch('assoc'));
  279. $this->assertEquals(['title' => 'Second Article', 'name' => 'larry'], $result->fetch('assoc'));
  280. $result->closeCursor();
  281. $query = new Query($this->connection);
  282. $time = new \DateTime('2007-03-18 10:45:23');
  283. $types = ['created' => 'datetime'];
  284. $result = $query
  285. ->select(['title', 'name' => 'c.comment'])
  286. ->from('articles')
  287. ->join(['c' => ['table' => 'comments', 'conditions' => ['created' => $time]]], $types)
  288. ->execute();
  289. $this->assertEquals(['title' => 'First Article', 'name' => 'First Comment for First Article'], $result->fetch('assoc'));
  290. $result->closeCursor();
  291. }
  292. /**
  293. * Tests the leftJoin method
  294. *
  295. * @return void
  296. */
  297. public function testSelectLeftJoin()
  298. {
  299. $this->loadFixtures('Articles', 'Comments');
  300. $query = new Query($this->connection);
  301. $time = new \DateTime('2007-03-18 10:45:23');
  302. $types = ['created' => 'datetime'];
  303. $result = $query
  304. ->select(['title', 'name' => 'c.comment'])
  305. ->from('articles')
  306. ->leftJoin(['c' => 'comments'], ['created <' => $time], $types)
  307. ->execute();
  308. $this->assertEquals(['title' => 'First Article', 'name' => null], $result->fetch('assoc'));
  309. $result->closeCursor();
  310. $query = new Query($this->connection);
  311. $result = $query
  312. ->select(['title', 'name' => 'c.comment'])
  313. ->from('articles')
  314. ->leftJoin(['c' => 'comments'], ['created >' => $time], $types)
  315. ->execute();
  316. $this->assertEquals(
  317. ['title' => 'First Article', 'name' => 'Second Comment for First Article'],
  318. $result->fetch('assoc')
  319. );
  320. $result->closeCursor();
  321. }
  322. /**
  323. * Tests the innerJoin method
  324. *
  325. * @return void
  326. */
  327. public function testSelectInnerJoin()
  328. {
  329. $this->loadFixtures('Articles', 'Comments');
  330. $query = new Query($this->connection);
  331. $time = new \DateTime('2007-03-18 10:45:23');
  332. $types = ['created' => 'datetime'];
  333. $result = $query
  334. ->select(['title', 'name' => 'c.comment'])
  335. ->from('articles')
  336. ->innerJoin(['c' => 'comments'], ['created <' => $time], $types)
  337. ->execute();
  338. $this->assertCount(0, $result->fetchAll());
  339. $result->closeCursor();
  340. }
  341. /**
  342. * Tests the rightJoin method
  343. *
  344. * @return void
  345. */
  346. public function testSelectRightJoin()
  347. {
  348. $this->loadFixtures('Articles', 'Comments');
  349. $this->skipIf(
  350. $this->connection->driver() instanceof \Cake\Database\Driver\Sqlite,
  351. 'SQLite does not support RIGHT joins'
  352. );
  353. $query = new Query($this->connection);
  354. $time = new \DateTime('2007-03-18 10:45:23');
  355. $types = ['created' => 'datetime'];
  356. $result = $query
  357. ->select(['title', 'name' => 'c.comment'])
  358. ->from('articles')
  359. ->rightJoin(['c' => 'comments'], ['created <' => $time], $types)
  360. ->execute();
  361. $this->assertCount(6, $result);
  362. $this->assertEquals(
  363. ['title' => null, 'name' => 'First Comment for First Article'],
  364. $result->fetch('assoc')
  365. );
  366. $result->closeCursor();
  367. }
  368. /**
  369. * Tests that it is possible to pass a callable as conditions for a join
  370. *
  371. * @return void
  372. */
  373. public function testSelectJoinWithCallback()
  374. {
  375. $this->loadFixtures('Articles', 'Comments');
  376. $query = new Query($this->connection);
  377. $types = ['created' => 'datetime'];
  378. $result = $query
  379. ->select(['title', 'name' => 'c.comment'])
  380. ->from('articles')
  381. ->innerJoin(['c' => 'comments'], function ($exp, $q) use ($query, $types) {
  382. $this->assertSame($q, $query);
  383. $exp->add(['created <' => new \DateTime('2007-03-18 10:45:23')], $types);
  384. return $exp;
  385. })
  386. ->execute();
  387. $this->assertCount(0, $result->fetchAll());
  388. $result->closeCursor();
  389. }
  390. /**
  391. * Tests that it is possible to pass a callable as conditions for a join
  392. *
  393. * @return void
  394. */
  395. public function testSelectJoinWithCallback2()
  396. {
  397. $this->loadFixtures('Authors', 'Comments');
  398. $query = new Query($this->connection);
  399. $types = ['created' => 'datetime'];
  400. $result = $query
  401. ->select(['name', 'commentary' => 'comments.comment'])
  402. ->from('authors')
  403. ->innerJoin('comments', function ($exp, $q) use ($query, $types) {
  404. $this->assertSame($q, $query);
  405. $exp->add(['created >' => new \DateTime('2007-03-18 10:45:23')], $types);
  406. return $exp;
  407. })
  408. ->execute();
  409. $this->assertEquals(
  410. ['name' => 'mariano', 'commentary' => 'Second Comment for First Article'],
  411. $result->fetch('assoc')
  412. );
  413. $result->closeCursor();
  414. }
  415. /**
  416. * Tests it is possible to filter a query by using simple AND joined conditions
  417. *
  418. * @return void
  419. */
  420. public function testSelectSimpleWhere()
  421. {
  422. $this->loadFixtures('Articles');
  423. $query = new Query($this->connection);
  424. $result = $query
  425. ->select(['title'])
  426. ->from('articles')
  427. ->where(['id' => 1, 'title' => 'First Article'])
  428. ->execute();
  429. $this->assertCount(1, $result);
  430. $result->closeCursor();
  431. $query = new Query($this->connection);
  432. $result = $query
  433. ->select(['title'])
  434. ->from('articles')
  435. ->where(['id' => 100], ['id' => 'integer'])
  436. ->execute();
  437. $this->assertCount(0, $result);
  438. $result->closeCursor();
  439. }
  440. /**
  441. * Tests using where conditions with operators and scalar values works
  442. *
  443. * @return void
  444. */
  445. public function testSelectWhereOperatorMoreThan()
  446. {
  447. $this->loadFixtures('Comments');
  448. $query = new Query($this->connection);
  449. $result = $query
  450. ->select(['comment'])
  451. ->from('comments')
  452. ->where(['id >' => 4])
  453. ->execute();
  454. $this->assertCount(2, $result);
  455. $this->assertEquals(['comment' => 'First Comment for Second Article'], $result->fetch('assoc'));
  456. $result->closeCursor();
  457. }
  458. /**
  459. * Tests using where conditions with operators and scalar values works
  460. *
  461. * @return void
  462. */
  463. public function testSelectWhereOperatorLessThan()
  464. {
  465. $this->loadFixtures('Articles');
  466. $query = new Query($this->connection);
  467. $result = $query
  468. ->select(['title'])
  469. ->from('articles')
  470. ->where(['id <' => 2])
  471. ->execute();
  472. $this->assertCount(1, $result);
  473. $this->assertEquals(['title' => 'First Article'], $result->fetch('assoc'));
  474. $result->closeCursor();
  475. }
  476. /**
  477. * Tests using where conditions with operators and scalar values works
  478. *
  479. * @return void
  480. */
  481. public function testSelectWhereOperatorLessThanEqual()
  482. {
  483. $this->loadFixtures('Articles');
  484. $query = new Query($this->connection);
  485. $result = $query
  486. ->select(['title'])
  487. ->from('articles')
  488. ->where(['id <=' => 2])
  489. ->execute();
  490. $this->assertCount(2, $result);
  491. $result->closeCursor();
  492. }
  493. /**
  494. * Tests using where conditions with operators and scalar values works
  495. *
  496. * @return void
  497. */
  498. public function testSelectWhereOperatorMoreThanEqual()
  499. {
  500. $this->loadFixtures('Articles');
  501. $query = new Query($this->connection);
  502. $result = $query
  503. ->select(['title'])
  504. ->from('articles')
  505. ->where(['id >=' => 1])
  506. ->execute();
  507. $this->assertCount(3, $result);
  508. $result->closeCursor();
  509. }
  510. /**
  511. * Tests using where conditions with operators and scalar values works
  512. *
  513. * @return void
  514. */
  515. public function testSelectWhereOperatorNotEqual()
  516. {
  517. $this->loadFixtures('Articles');
  518. $query = new Query($this->connection);
  519. $result = $query
  520. ->select(['title'])
  521. ->from('articles')
  522. ->where(['id !=' => 2])
  523. ->execute();
  524. $this->assertCount(2, $result);
  525. $this->assertEquals(['title' => 'First Article'], $result->fetch('assoc'));
  526. $result->closeCursor();
  527. }
  528. /**
  529. * Tests using where conditions with operators and scalar values works
  530. *
  531. * @return void
  532. */
  533. public function testSelectWhereOperatorLike()
  534. {
  535. $this->loadFixtures('Articles');
  536. $query = new Query($this->connection);
  537. $result = $query
  538. ->select(['title'])
  539. ->from('articles')
  540. ->where(['title LIKE' => 'First Article'])
  541. ->execute();
  542. $this->assertCount(1, $result);
  543. $this->assertEquals(['title' => 'First Article'], $result->fetch('assoc'));
  544. $result->closeCursor();
  545. }
  546. /**
  547. * Tests using where conditions with operators and scalar values works
  548. *
  549. * @return void
  550. */
  551. public function testSelectWhereOperatorLikeExpansion()
  552. {
  553. $this->loadFixtures('Articles');
  554. $query = new Query($this->connection);
  555. $result = $query
  556. ->select(['title'])
  557. ->from('articles')
  558. ->where(['title like' => '%Article%'])
  559. ->execute();
  560. $this->assertCount(3, $result);
  561. $result->closeCursor();
  562. }
  563. /**
  564. * Tests using where conditions with operators and scalar values works
  565. *
  566. * @return void
  567. */
  568. public function testSelectWhereOperatorNotLike()
  569. {
  570. $this->loadFixtures('Articles');
  571. $query = new Query($this->connection);
  572. $result = $query
  573. ->select(['title'])
  574. ->from('articles')
  575. ->where(['title not like' => '%Article%'])
  576. ->execute();
  577. $this->assertCount(0, $result);
  578. $result->closeCursor();
  579. }
  580. /**
  581. * Test that unary expressions in selects are built correctly.
  582. *
  583. * @return void
  584. */
  585. public function testSelectWhereUnary()
  586. {
  587. $this->loadFixtures('Articles');
  588. $query = new Query($this->connection);
  589. $result = $query
  590. ->select(['id'])
  591. ->from('articles')
  592. ->where([
  593. 'title is not' => null,
  594. 'user_id is' => null
  595. ])
  596. ->sql();
  597. $this->assertQuotedQuery(
  598. 'SELECT <id> FROM <articles> WHERE \(\(<title>\) IS NOT NULL AND \(<user_id>\) IS NULL\)',
  599. $result,
  600. !$this->autoQuote
  601. );
  602. }
  603. /**
  604. * Tests selecting with conditions and specifying types for those
  605. *
  606. * @return void
  607. */
  608. public function testSelectWhereTypes()
  609. {
  610. $this->loadFixtures('Comments');
  611. $query = new Query($this->connection);
  612. $result = $query
  613. ->select(['id'])
  614. ->from('comments')
  615. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  616. ->execute();
  617. $this->assertCount(1, $result);
  618. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  619. $result->closeCursor();
  620. $query = new Query($this->connection);
  621. $result = $query
  622. ->select(['id'])
  623. ->from('comments')
  624. ->where(['created >' => new \DateTime('2007-03-18 10:46:00')], ['created' => 'datetime'])
  625. ->execute();
  626. $this->assertCount(5, $result);
  627. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  628. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  629. $result->closeCursor();
  630. $query = new Query($this->connection);
  631. $result = $query
  632. ->select(['id'])
  633. ->from('comments')
  634. ->where(
  635. [
  636. 'created >' => new \DateTime('2007-03-18 10:40:00'),
  637. 'created <' => new \DateTime('2007-03-18 10:46:00')
  638. ],
  639. ['created' => 'datetime']
  640. )
  641. ->execute();
  642. $this->assertCount(1, $result);
  643. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  644. $result->closeCursor();
  645. $query = new Query($this->connection);
  646. $result = $query
  647. ->select(['id'])
  648. ->from('comments')
  649. ->where(
  650. [
  651. 'id' => '3something-crazy',
  652. 'created <' => new \DateTime('2013-01-01 12:00')
  653. ],
  654. ['created' => 'datetime', 'id' => 'integer']
  655. )
  656. ->execute();
  657. $this->assertCount(1, $result);
  658. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  659. $result->closeCursor();
  660. $query = new Query($this->connection);
  661. $result = $query
  662. ->select(['id'])
  663. ->from('comments')
  664. ->where(
  665. [
  666. 'id' => '1something-crazy',
  667. 'created <' => new \DateTime('2013-01-01 12:00')
  668. ],
  669. ['created' => 'datetime', 'id' => 'integer']
  670. )
  671. ->execute();
  672. $this->assertCount(1, $result);
  673. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  674. $result->closeCursor();
  675. }
  676. /**
  677. * Tests that passing an array type to any where condition will replace
  678. * the passed array accordingly as a proper IN condition
  679. *
  680. * @return void
  681. */
  682. public function testSelectWhereArrayType()
  683. {
  684. $this->loadFixtures('Comments');
  685. $query = new Query($this->connection);
  686. $result = $query
  687. ->select(['id'])
  688. ->from('comments')
  689. ->where(['id' => ['1', '3']], ['id' => 'integer[]'])
  690. ->execute();
  691. $this->assertCount(2, $result);
  692. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  693. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  694. $result->closeCursor();
  695. }
  696. /**
  697. * Tests that passing an empty array type to any where condition will not
  698. * result in a SQL error, but an internal exception
  699. *
  700. * @expectedException \Cake\Database\Exception
  701. * @expectedExceptionMessage Impossible to generate condition with empty list of values for field
  702. * @return void
  703. */
  704. public function testSelectWhereArrayTypeEmpty()
  705. {
  706. $this->loadFixtures('Comments');
  707. $query = new Query($this->connection);
  708. $result = $query
  709. ->select(['id'])
  710. ->from('comments')
  711. ->where(['id' => []], ['id' => 'integer[]'])
  712. ->execute();
  713. }
  714. /**
  715. * Tests exception message for impossible condition when using an expression
  716. * @expectedException \Cake\Database\Exception
  717. * @expectedExceptionMessage with empty list of values for field (SELECT 1)
  718. * @return void
  719. */
  720. public function testSelectWhereArrayTypeEmptyWithExpression()
  721. {
  722. $this->loadFixtures('Comments');
  723. $query = new Query($this->connection);
  724. $result = $query
  725. ->select(['id'])
  726. ->from('comments')
  727. ->where(function ($exp, $q) {
  728. return $exp->in($q->newExpr('SELECT 1'), []);
  729. })
  730. ->execute();
  731. }
  732. /**
  733. * Tests that Query::orWhere() can be used to concatenate conditions with OR
  734. *
  735. * @return void
  736. */
  737. public function testSelectOrWhere()
  738. {
  739. $this->loadFixtures('Comments');
  740. $query = new Query($this->connection);
  741. $result = $query
  742. ->select(['id'])
  743. ->from('comments')
  744. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  745. ->orWhere(['created' => new \DateTime('2007-03-18 10:47:23')], ['created' => 'datetime'])
  746. ->execute();
  747. $this->assertCount(2, $result);
  748. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  749. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  750. $result->closeCursor();
  751. }
  752. /**
  753. * Tests that Query::andWhere() can be used to concatenate conditions with AND
  754. *
  755. * @return void
  756. */
  757. public function testSelectAndWhere()
  758. {
  759. $this->loadFixtures('Comments');
  760. $query = new Query($this->connection);
  761. $result = $query
  762. ->select(['id'])
  763. ->from('comments')
  764. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  765. ->andWhere(['id' => 1])
  766. ->execute();
  767. $this->assertCount(1, $result);
  768. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  769. $result->closeCursor();
  770. $query = new Query($this->connection);
  771. $result = $query
  772. ->select(['id'])
  773. ->from('comments')
  774. ->where(['created' => new \DateTime('2007-03-18 10:50:55')], ['created' => 'datetime'])
  775. ->andWhere(['id' => 2])
  776. ->execute();
  777. $this->assertCount(0, $result);
  778. $result->closeCursor();
  779. }
  780. /**
  781. * Tests that combining Query::andWhere() and Query::orWhere() produces
  782. * correct conditions nesting
  783. *
  784. * @return void
  785. */
  786. public function testSelectExpressionNesting()
  787. {
  788. $this->loadFixtures('Comments');
  789. $query = new Query($this->connection);
  790. $result = $query
  791. ->select(['id'])
  792. ->from('comments')
  793. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  794. ->orWhere(['id' => 2])
  795. ->andWhere(['created >=' => new \DateTime('2007-03-18 10:40:00')], ['created' => 'datetime'])
  796. ->execute();
  797. $this->assertCount(2, $result);
  798. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  799. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  800. $result->closeCursor();
  801. $query = new Query($this->connection);
  802. $result = $query
  803. ->select(['id'])
  804. ->from('comments')
  805. ->where(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  806. ->orWhere(['id' => 2])
  807. ->andWhere(['created >=' => new \DateTime('2007-03-18 10:40:00')], ['created' => 'datetime'])
  808. ->orWhere(['created' => new \DateTime('2007-03-18 10:49:23')], ['created' => 'datetime'])
  809. ->execute();
  810. $this->assertCount(3, $result);
  811. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  812. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  813. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  814. $result->closeCursor();
  815. }
  816. /**
  817. * Tests that Query::orWhere() can be used without calling where() before
  818. *
  819. * @return void
  820. */
  821. public function testSelectOrWhereNoPreviousCondition()
  822. {
  823. $this->loadFixtures('Comments');
  824. $query = new Query($this->connection);
  825. $result = $query
  826. ->select(['id'])
  827. ->from('comments')
  828. ->orWhere(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  829. ->orWhere(['created' => new \DateTime('2007-03-18 10:47:23')], ['created' => 'datetime'])
  830. ->execute();
  831. $this->assertCount(2, $result);
  832. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  833. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  834. $result->closeCursor();
  835. }
  836. /**
  837. * Tests that Query::andWhere() can be used without calling where() before
  838. *
  839. * @return void
  840. */
  841. public function testSelectAndWhereNoPreviousCondition()
  842. {
  843. $this->loadFixtures('Comments');
  844. $query = new Query($this->connection);
  845. $result = $query
  846. ->select(['id'])
  847. ->from('comments')
  848. ->andWhere(['created' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime'])
  849. ->andWhere(['id' => 1])
  850. ->execute();
  851. $this->assertCount(1, $result);
  852. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  853. $result->closeCursor();
  854. }
  855. /**
  856. * Tests that it is possible to pass a closure to where() to build a set of
  857. * conditions and return the expression to be used
  858. *
  859. * @return void
  860. */
  861. public function testSelectWhereUsingClosure()
  862. {
  863. $this->loadFixtures('Comments');
  864. $query = new Query($this->connection);
  865. $result = $query
  866. ->select(['id'])
  867. ->from('comments')
  868. ->where(function ($exp) {
  869. return $exp->eq('id', 1);
  870. })
  871. ->execute();
  872. $this->assertCount(1, $result);
  873. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  874. $result->closeCursor();
  875. $query = new Query($this->connection);
  876. $result = $query
  877. ->select(['id'])
  878. ->from('comments')
  879. ->where(function ($exp) {
  880. return $exp
  881. ->eq('id', 1)
  882. ->eq('created', new \DateTime('2007-03-18 10:45:23'), 'datetime');
  883. })
  884. ->execute();
  885. $this->assertCount(1, $result);
  886. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  887. $result->closeCursor();
  888. $query = new Query($this->connection);
  889. $result = $query
  890. ->select(['id'])
  891. ->from('comments')
  892. ->where(function ($exp) {
  893. return $exp
  894. ->eq('id', 1)
  895. ->eq('created', new \DateTime('2021-12-30 15:00'), 'datetime');
  896. })
  897. ->execute();
  898. $this->assertCount(0, $result);
  899. $result->closeCursor();
  900. }
  901. /**
  902. * Tests generating tuples in the values side containing closure expressions
  903. *
  904. * @return void
  905. */
  906. public function testTupleWithClosureExpression()
  907. {
  908. $this->loadFixtures('Comments');
  909. $query = new Query($this->connection);
  910. $query->select(['id'])
  911. ->from('comments')
  912. ->where([
  913. 'OR' => [
  914. 'id' => 1,
  915. function ($exp) {
  916. return $exp->eq('id', 2);
  917. }
  918. ]
  919. ]);
  920. $result = $query->sql();
  921. $this->assertQuotedQuery(
  922. 'SELECT <id> FROM <comments> WHERE \(<id> = :c0 OR <id> = :c1\)',
  923. $result,
  924. !$this->autoQuote
  925. );
  926. }
  927. /**
  928. * Tests that it is possible to pass a closure to andWhere() to build a set of
  929. * conditions and return the expression to be used
  930. *
  931. * @return void
  932. */
  933. public function testSelectAndWhereUsingClosure()
  934. {
  935. $this->loadFixtures('Comments');
  936. $query = new Query($this->connection);
  937. $result = $query
  938. ->select(['id'])
  939. ->from('comments')
  940. ->where(['id' => '1'])
  941. ->andWhere(function ($exp) {
  942. return $exp->eq('created', new \DateTime('2007-03-18 10:45:23'), 'datetime');
  943. })
  944. ->execute();
  945. $this->assertCount(1, $result);
  946. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  947. $result->closeCursor();
  948. $query = new Query($this->connection);
  949. $result = $query
  950. ->select(['id'])
  951. ->from('comments')
  952. ->where(['id' => '1'])
  953. ->andWhere(function ($exp) {
  954. return $exp->eq('created', new \DateTime('2022-12-21 12:00'), 'datetime');
  955. })
  956. ->execute();
  957. $this->assertCount(0, $result);
  958. $result->closeCursor();
  959. }
  960. /**
  961. * Tests that it is possible to pass a closure to orWhere() to build a set of
  962. * conditions and return the expression to be used
  963. *
  964. * @return void
  965. */
  966. public function testSelectOrWhereUsingClosure()
  967. {
  968. $this->loadFixtures('Comments');
  969. $query = new Query($this->connection);
  970. $result = $query
  971. ->select(['id'])
  972. ->from('comments')
  973. ->where(['id' => '1'])
  974. ->orWhere(function ($exp) {
  975. return $exp->eq('created', new \DateTime('2007-03-18 10:47:23'), 'datetime');
  976. })
  977. ->execute();
  978. $this->assertCount(2, $result);
  979. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  980. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  981. $result->closeCursor();
  982. $query = new Query($this->connection);
  983. $result = $query
  984. ->select(['id'])
  985. ->from('comments')
  986. ->where(['id' => '1'])
  987. ->orWhere(function ($exp) {
  988. return $exp
  989. ->eq('created', new \DateTime('2012-12-22 12:00'), 'datetime')
  990. ->eq('id', 3);
  991. })
  992. ->execute();
  993. $this->assertCount(1, $result);
  994. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  995. $result->closeCursor();
  996. }
  997. /**
  998. * Tests that expression objects can be used as the field in a comparison
  999. * and the values will be bound correctly to the query
  1000. *
  1001. * @return void
  1002. */
  1003. public function testSelectWhereUsingExpressionInField()
  1004. {
  1005. $this->loadFixtures('Comments');
  1006. $query = new Query($this->connection);
  1007. $result = $query
  1008. ->select(['id'])
  1009. ->from('comments')
  1010. ->where(function ($exp) {
  1011. $field = clone $exp;
  1012. $field->add('SELECT min(id) FROM comments');
  1013. return $exp
  1014. ->eq($field, 100, 'integer');
  1015. })
  1016. ->execute();
  1017. $this->assertCount(0, $result);
  1018. $result->closeCursor();
  1019. }
  1020. /**
  1021. * Tests using where conditions with operator methods
  1022. *
  1023. * @return void
  1024. */
  1025. public function testSelectWhereOperatorMethods()
  1026. {
  1027. $this->loadFixtures('Articles', 'Comments', 'Authors');
  1028. $query = new Query($this->connection);
  1029. $result = $query
  1030. ->select(['title'])
  1031. ->from('articles')
  1032. ->where(function ($exp) {
  1033. return $exp->gt('id', 1);
  1034. })
  1035. ->execute();
  1036. $this->assertCount(2, $result);
  1037. $this->assertEquals(['title' => 'Second Article'], $result->fetch('assoc'));
  1038. $result->closeCursor();
  1039. $query = new Query($this->connection);
  1040. $result = $query->select(['title'])
  1041. ->from('articles')
  1042. ->where(function ($exp) {
  1043. return $exp->lt('id', 2);
  1044. })
  1045. ->execute();
  1046. $this->assertCount(1, $result);
  1047. $this->assertEquals(['title' => 'First Article'], $result->fetch('assoc'));
  1048. $result->closeCursor();
  1049. $query = new Query($this->connection);
  1050. $result = $query->select(['title'])
  1051. ->from('articles')
  1052. ->where(function ($exp) {
  1053. return $exp->lte('id', 2);
  1054. })
  1055. ->execute();
  1056. $this->assertCount(2, $result);
  1057. $result->closeCursor();
  1058. $query = new Query($this->connection);
  1059. $result = $query
  1060. ->select(['title'])
  1061. ->from('articles')
  1062. ->where(function ($exp) {
  1063. return $exp->gte('id', 1);
  1064. })
  1065. ->execute();
  1066. $this->assertCount(3, $result);
  1067. $result->closeCursor();
  1068. $query = new Query($this->connection);
  1069. $result = $query
  1070. ->select(['title'])
  1071. ->from('articles')
  1072. ->where(function ($exp) {
  1073. return $exp->lte('id', 1);
  1074. })
  1075. ->execute();
  1076. $this->assertCount(1, $result);
  1077. $result->closeCursor();
  1078. $query = new Query($this->connection);
  1079. $result = $query
  1080. ->select(['title'])
  1081. ->from('articles')
  1082. ->where(function ($exp) {
  1083. return $exp->notEq('id', 2);
  1084. })
  1085. ->execute();
  1086. $this->assertCount(2, $result);
  1087. $this->assertEquals(['title' => 'First Article'], $result->fetch('assoc'));
  1088. $result->closeCursor();
  1089. $query = new Query($this->connection);
  1090. $result = $query
  1091. ->select(['title'])
  1092. ->from('articles')
  1093. ->where(function ($exp) {
  1094. return $exp->like('title', 'First Article');
  1095. })
  1096. ->execute();
  1097. $this->assertCount(1, $result);
  1098. $this->assertEquals(['title' => 'First Article'], $result->fetch('assoc'));
  1099. $result->closeCursor();
  1100. $query = new Query($this->connection);
  1101. $result = $query
  1102. ->select(['title'])
  1103. ->from('articles')
  1104. ->where(function ($exp) {
  1105. return $exp->like('title', '%Article%');
  1106. })
  1107. ->execute();
  1108. $this->assertCount(3, $result);
  1109. $result->closeCursor();
  1110. $query = new Query($this->connection);
  1111. $result = $query
  1112. ->select(['title'])
  1113. ->from('articles')
  1114. ->where(function ($exp) {
  1115. return $exp->notLike('title', '%Article%');
  1116. })
  1117. ->execute();
  1118. $this->assertCount(0, $result);
  1119. $result->closeCursor();
  1120. $query = new Query($this->connection);
  1121. $result = $query
  1122. ->select(['id'])
  1123. ->from('comments')
  1124. ->where(function ($exp) {
  1125. return $exp->isNull('published');
  1126. })
  1127. ->execute();
  1128. $this->assertCount(0, $result);
  1129. $result->closeCursor();
  1130. $query = new Query($this->connection);
  1131. $result = $query
  1132. ->select(['id'])
  1133. ->from('comments')
  1134. ->where(function ($exp) {
  1135. return $exp->isNotNull('published');
  1136. })
  1137. ->execute();
  1138. $this->assertCount(6, $result);
  1139. $result->closeCursor();
  1140. $query = new Query($this->connection);
  1141. $result = $query
  1142. ->select(['id'])
  1143. ->from('comments')
  1144. ->where(function ($exp) {
  1145. return $exp->in('published', ['Y', 'N']);
  1146. })
  1147. ->execute();
  1148. $this->assertCount(6, $result);
  1149. $result->closeCursor();
  1150. $query = new Query($this->connection);
  1151. $result = $query
  1152. ->select(['id'])
  1153. ->from('comments')
  1154. ->where(function ($exp) {
  1155. return $exp->in(
  1156. 'created',
  1157. [new \DateTime('2007-03-18 10:45:23'), new \DateTime('2007-03-18 10:47:23')],
  1158. 'datetime'
  1159. );
  1160. })
  1161. ->execute();
  1162. $this->assertCount(2, $result);
  1163. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1164. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1165. $result->closeCursor();
  1166. $query = new Query($this->connection);
  1167. $result = $query
  1168. ->select(['id'])
  1169. ->from('comments')
  1170. ->where(function ($exp) {
  1171. return $exp->notIn(
  1172. 'created',
  1173. [new \DateTime('2007-03-18 10:45:23'), new \DateTime('2007-03-18 10:47:23')],
  1174. 'datetime'
  1175. );
  1176. })
  1177. ->execute();
  1178. $this->assertCount(4, $result);
  1179. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1180. $result->closeCursor();
  1181. }
  1182. /**
  1183. * Tests that calling "in" and "notIn" will cast the passed values to an array
  1184. *
  1185. * @return void
  1186. */
  1187. public function testInValueCast()
  1188. {
  1189. $this->loadFixtures('Comments');
  1190. $query = new Query($this->connection);
  1191. $result = $query
  1192. ->select(['id'])
  1193. ->from('comments')
  1194. ->where(function ($exp) {
  1195. return $exp->in('created', '2007-03-18 10:45:23', 'datetime');
  1196. })
  1197. ->execute();
  1198. $this->assertCount(1, $result);
  1199. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1200. $result->closeCursor();
  1201. $query = new Query($this->connection);
  1202. $result = $query
  1203. ->select(['id'])
  1204. ->from('comments')
  1205. ->where(function ($exp) {
  1206. return $exp->notIn('created', '2007-03-18 10:45:23', 'datetime');
  1207. })
  1208. ->execute();
  1209. $this->assertCount(5, $result);
  1210. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1211. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1212. $this->assertEquals(['id' => 4], $result->fetch('assoc'));
  1213. $this->assertEquals(['id' => 5], $result->fetch('assoc'));
  1214. $result->closeCursor();
  1215. $query = new Query($this->connection);
  1216. $result = $query
  1217. ->select(['id'])
  1218. ->from('comments')
  1219. ->where(function ($exp, $q) {
  1220. return $exp->in(
  1221. 'created',
  1222. $q->newExpr("'2007-03-18 10:45:23'"),
  1223. 'datetime'
  1224. );
  1225. })
  1226. ->execute();
  1227. $this->assertCount(1, $result);
  1228. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1229. $result->closeCursor();
  1230. $query = new Query($this->connection);
  1231. $result = $query
  1232. ->select(['id'])
  1233. ->from('comments')
  1234. ->where(function ($exp, $q) {
  1235. return $exp->notIn(
  1236. 'created',
  1237. $q->newExpr("'2007-03-18 10:45:23'"),
  1238. 'datetime'
  1239. );
  1240. })
  1241. ->execute();
  1242. $this->assertCount(5, $result);
  1243. $result->closeCursor();
  1244. }
  1245. /**
  1246. * Tests that calling "in" and "notIn" will cast the passed values to an array
  1247. *
  1248. * @return void
  1249. */
  1250. public function testInValueCast2()
  1251. {
  1252. $this->loadFixtures('Comments');
  1253. $query = new Query($this->connection);
  1254. $result = $query
  1255. ->select(['id'])
  1256. ->from('comments')
  1257. ->where(['created IN' => '2007-03-18 10:45:23'])
  1258. ->execute();
  1259. $this->assertCount(1, $result);
  1260. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1261. $result->closeCursor();
  1262. $query = new Query($this->connection);
  1263. $result = $query
  1264. ->select(['id'])
  1265. ->from('comments')
  1266. ->where(['created NOT IN' => '2007-03-18 10:45:23'])
  1267. ->execute();
  1268. $this->assertCount(5, $result);
  1269. $result->closeCursor();
  1270. }
  1271. /**
  1272. * Tests that IN clauses generate correct placeholders
  1273. *
  1274. * @return void
  1275. */
  1276. public function testInClausePlaceholderGeneration()
  1277. {
  1278. $this->loadFixtures('Comments');
  1279. $query = new Query($this->connection);
  1280. $query->select(['id'])
  1281. ->from('comments')
  1282. ->where(['id IN' => [1, 2]])
  1283. ->sql();
  1284. $bindings = $query->valueBinder()->bindings();
  1285. $this->assertArrayHasKey(':c0', $bindings);
  1286. $this->assertEquals('c0', $bindings[':c0']['placeholder']);
  1287. $this->assertArrayHasKey(':c1', $bindings);
  1288. $this->assertEquals('c1', $bindings[':c1']['placeholder']);
  1289. }
  1290. /**
  1291. * Tests where() with callable types.
  1292. *
  1293. * @return void
  1294. */
  1295. public function testWhereCallables()
  1296. {
  1297. $query = new Query($this->connection);
  1298. $query->select(['id'])
  1299. ->from('articles')
  1300. ->where([
  1301. 'id' => '\Cake\Error\Debugger::dump',
  1302. 'title' => ['\Cake\Error\Debugger', 'dump'],
  1303. 'author_id' => function ($exp) {
  1304. return 1;
  1305. }
  1306. ]);
  1307. $this->assertQuotedQuery(
  1308. 'SELECT <id> FROM <articles> WHERE \(<id> = :c0 AND <title> = :c1 AND <author_id> = :c2\)',
  1309. $query->sql(),
  1310. !$this->autoQuote
  1311. );
  1312. }
  1313. /**
  1314. * Tests that empty values don't set where clauses.
  1315. *
  1316. * @return void
  1317. */
  1318. public function testWhereEmptyValues()
  1319. {
  1320. $query = new Query($this->connection);
  1321. $query->from('comments')
  1322. ->where('');
  1323. $this->assertCount(0, $query->clause('where'));
  1324. $query->where([]);
  1325. $this->assertCount(0, $query->clause('where'));
  1326. }
  1327. /**
  1328. * Tests that it is possible to use a between expression
  1329. * in a where condition
  1330. *
  1331. * @return void
  1332. */
  1333. public function testWhereWithBetween()
  1334. {
  1335. $this->loadFixtures('Comments');
  1336. $query = new Query($this->connection);
  1337. $result = $query
  1338. ->select(['id'])
  1339. ->from('comments')
  1340. ->where(function ($exp) {
  1341. return $exp->between('id', 5, 6, 'integer');
  1342. })
  1343. ->execute();
  1344. $this->assertCount(2, $result);
  1345. $first = $result->fetch('assoc');
  1346. $this->assertEquals(5, $first['id']);
  1347. $second = $result->fetch('assoc');
  1348. $this->assertEquals(6, $second['id']);
  1349. $result->closeCursor();
  1350. }
  1351. /**
  1352. * Tests that it is possible to use a between expression
  1353. * in a where condition with a complex data type
  1354. *
  1355. * @return void
  1356. */
  1357. public function testWhereWithBetweenComplex()
  1358. {
  1359. $this->loadFixtures('Comments');
  1360. $query = new Query($this->connection);
  1361. $result = $query
  1362. ->select(['id'])
  1363. ->from('comments')
  1364. ->where(function ($exp) {
  1365. $from = new \DateTime('2007-03-18 10:51:00');
  1366. $to = new \DateTime('2007-03-18 10:54:00');
  1367. return $exp->between('created', $from, $to, 'datetime');
  1368. })
  1369. ->execute();
  1370. $this->assertCount(2, $result);
  1371. $first = $result->fetch('assoc');
  1372. $this->assertEquals(4, $first['id']);
  1373. $second = $result->fetch('assoc');
  1374. $this->assertEquals(5, $second['id']);
  1375. $result->closeCursor();
  1376. }
  1377. /**
  1378. * Tests that it is possible to use an expression object
  1379. * as the field for a between expression
  1380. *
  1381. * @return void
  1382. */
  1383. public function testWhereWithBetweenWithExpressionField()
  1384. {
  1385. $this->loadFixtures('Comments');
  1386. $query = new Query($this->connection);
  1387. $result = $query
  1388. ->select(['id'])
  1389. ->from('comments')
  1390. ->where(function ($exp, $q) {
  1391. $field = $q->func()->coalesce([new IdentifierExpression('id'), 1 => 'literal']);
  1392. return $exp->between($field, 5, 6, 'integer');
  1393. })
  1394. ->execute();
  1395. $this->assertCount(2, $result);
  1396. $first = $result->fetch('assoc');
  1397. $this->assertEquals(5, $first['id']);
  1398. $second = $result->fetch('assoc');
  1399. $this->assertEquals(6, $second['id']);
  1400. $result->closeCursor();
  1401. }
  1402. /**
  1403. * Tests that it is possible to use an expression object
  1404. * as any of the parts of the between expression
  1405. *
  1406. * @return void
  1407. */
  1408. public function testWhereWithBetweenWithExpressionParts()
  1409. {
  1410. $this->loadFixtures('Comments');
  1411. $query = new Query($this->connection);
  1412. $result = $query
  1413. ->select(['id'])
  1414. ->from('comments')
  1415. ->where(function ($exp, $q) {
  1416. $from = $q->newExpr("'2007-03-18 10:51:00'");
  1417. $to = $q->newExpr("'2007-03-18 10:54:00'");
  1418. return $exp->between('created', $from, $to);
  1419. })
  1420. ->execute();
  1421. $this->assertCount(2, $result);
  1422. $first = $result->fetch('assoc');
  1423. $this->assertEquals(4, $first['id']);
  1424. $second = $result->fetch('assoc');
  1425. $this->assertEquals(5, $second['id']);
  1426. $result->closeCursor();
  1427. }
  1428. /**
  1429. * Tests nesting query expressions both using arrays and closures
  1430. *
  1431. * @return void
  1432. */
  1433. public function testSelectExpressionComposition()
  1434. {
  1435. $this->loadFixtures('Comments');
  1436. $query = new Query($this->connection);
  1437. $result = $query
  1438. ->select(['id'])
  1439. ->from('comments')
  1440. ->where(function ($exp) {
  1441. $and = $exp->and_(['id' => 2, 'id >' => 1]);
  1442. return $exp->add($and);
  1443. })
  1444. ->execute();
  1445. $this->assertCount(1, $result);
  1446. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1447. $result->closeCursor();
  1448. $query = new Query($this->connection);
  1449. $result = $query
  1450. ->select(['id'])
  1451. ->from('comments')
  1452. ->where(function ($exp) {
  1453. $and = $exp->and_(['id' => 2, 'id <' => 2]);
  1454. return $exp->add($and);
  1455. })
  1456. ->execute();
  1457. $this->assertCount(0, $result);
  1458. $result->closeCursor();
  1459. $query = new Query($this->connection);
  1460. $result = $query
  1461. ->select(['id'])
  1462. ->from('comments')
  1463. ->where(function ($exp) {
  1464. $and = $exp->and_(function ($and) {
  1465. return $and->eq('id', 1)->gt('id', 0);
  1466. });
  1467. return $exp->add($and);
  1468. })
  1469. ->execute();
  1470. $this->assertCount(1, $result);
  1471. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1472. $result->closeCursor();
  1473. $query = new Query($this->connection);
  1474. $result = $query
  1475. ->select(['id'])
  1476. ->from('comments')
  1477. ->where(function ($exp) {
  1478. $or = $exp->or_(['id' => 1]);
  1479. $and = $exp->and_(['id >' => 2, 'id <' => 4]);
  1480. return $or->add($and);
  1481. })
  1482. ->execute();
  1483. $this->assertCount(2, $result);
  1484. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1485. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1486. $result->closeCursor();
  1487. $query = new Query($this->connection);
  1488. $result = $query
  1489. ->select(['id'])
  1490. ->from('comments')
  1491. ->where(function ($exp) {
  1492. $or = $exp->or_(function ($or) {
  1493. return $or->eq('id', 1)->eq('id', 2);
  1494. });
  1495. return $or;
  1496. })
  1497. ->execute();
  1498. $this->assertCount(2, $result);
  1499. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1500. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1501. $result->closeCursor();
  1502. }
  1503. /**
  1504. * Tests that conditions can be nested with an unary operator using the array notation
  1505. * and the not() method
  1506. *
  1507. * @return void
  1508. */
  1509. public function testSelectWhereNot()
  1510. {
  1511. $this->loadFixtures('Articles', 'Comments');
  1512. $query = new Query($this->connection);
  1513. $result = $query
  1514. ->select(['id'])
  1515. ->from('comments')
  1516. ->where(function ($exp) {
  1517. return $exp->not(
  1518. $exp->and_(['id' => 2, 'created' => new \DateTime('2007-03-18 10:47:23')], ['created' => 'datetime'])
  1519. );
  1520. })
  1521. ->execute();
  1522. $this->assertCount(5, $result);
  1523. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1524. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1525. $result->closeCursor();
  1526. $query = new Query($this->connection);
  1527. $result = $query
  1528. ->select(['id'])
  1529. ->from('comments')
  1530. ->where(function ($exp) {
  1531. return $exp->not(
  1532. $exp->and_(['id' => 2, 'created' => new \DateTime('2012-12-21 12:00')], ['created' => 'datetime'])
  1533. );
  1534. })
  1535. ->execute();
  1536. $this->assertCount(6, $result);
  1537. $result->closeCursor();
  1538. }
  1539. /**
  1540. * Tests that conditions can be nested with an unary operator using the array notation
  1541. * and the not() method
  1542. *
  1543. * @return void
  1544. */
  1545. public function testSelectWhereNot2()
  1546. {
  1547. $this->loadFixtures('Articles');
  1548. $query = new Query($this->connection);
  1549. $result = $query
  1550. ->select(['id'])
  1551. ->from('articles')
  1552. ->where([
  1553. 'not' => ['or' => ['id' => 1, 'id >' => 2], 'id' => 3]
  1554. ])
  1555. ->execute();
  1556. $this->assertCount(2, $result);
  1557. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1558. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1559. $result->closeCursor();
  1560. }
  1561. /**
  1562. * Tests order() method both with simple fields and expressions
  1563. *
  1564. * @return void
  1565. */
  1566. public function testSelectOrderBy()
  1567. {
  1568. $this->loadFixtures('Comments');
  1569. $query = new Query($this->connection);
  1570. $result = $query
  1571. ->select(['id'])
  1572. ->from('comments')
  1573. ->order(['id' => 'desc'])
  1574. ->execute();
  1575. $this->assertEquals(['id' => 6], $result->fetch('assoc'));
  1576. $this->assertEquals(['id' => 5], $result->fetch('assoc'));
  1577. $this->assertEquals(['id' => 4], $result->fetch('assoc'));
  1578. $result->closeCursor();
  1579. $result = $query->order(['id' => 'asc'])->execute();
  1580. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1581. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1582. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1583. $result->closeCursor();
  1584. $result = $query->order(['comment' => 'asc'])->execute();
  1585. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1586. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1587. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1588. $result->closeCursor();
  1589. $result = $query->order(['comment' => 'asc'], true)->execute();
  1590. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1591. $this->assertEquals(['id' => 5], $result->fetch('assoc'));
  1592. $this->assertEquals(['id' => 4], $result->fetch('assoc'));
  1593. $result->closeCursor();
  1594. $result = $query->order(['user_id' => 'asc', 'created' => 'desc'], true)
  1595. ->execute();
  1596. $this->assertEquals(['id' => 5], $result->fetch('assoc'));
  1597. $this->assertEquals(['id' => 4], $result->fetch('assoc'));
  1598. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1599. $result->closeCursor();
  1600. $expression = $query->newExpr(['(id + :offset) % 2']);
  1601. $result = $query
  1602. ->order([$expression, 'id' => 'desc'], true)
  1603. ->bind(':offset', 1, null)
  1604. ->execute();
  1605. $this->assertEquals(['id' => 5], $result->fetch('assoc'));
  1606. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1607. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1608. $result->closeCursor();
  1609. $result = $query
  1610. ->order($expression, true)
  1611. ->order(['id' => 'asc'])
  1612. ->bind(':offset', 1, null)
  1613. ->execute();
  1614. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1615. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1616. $this->assertEquals(['id' => 5], $result->fetch('assoc'));
  1617. $result->closeCursor();
  1618. }
  1619. /**
  1620. * Test that order() being a string works.
  1621. *
  1622. * @return void
  1623. */
  1624. public function testSelectOrderByString()
  1625. {
  1626. $this->loadFixtures('Articles');
  1627. $query = new Query($this->connection);
  1628. $query->select(['id'])
  1629. ->from('articles')
  1630. ->order('id asc');
  1631. $result = $query->execute();
  1632. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1633. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  1634. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  1635. $result->closeCursor();
  1636. }
  1637. /**
  1638. * Test orderAsc() and its input types.
  1639. *
  1640. * @return void
  1641. */
  1642. public function testSelectOrderAsc()
  1643. {
  1644. $this->loadFixtures('Articles');
  1645. $query = new Query($this->connection);
  1646. $query->select(['id'])
  1647. ->from('articles')
  1648. ->orderAsc('id');
  1649. $sql = $query->sql();
  1650. $result = $query->execute()->fetchAll('assoc');
  1651. $expected = [
  1652. ['id' => 1],
  1653. ['id' => 2],
  1654. ['id' => 3],
  1655. ];
  1656. $this->assertEquals($expected, $result);
  1657. $this->assertQuotedQuery(
  1658. 'SELECT <id> FROM <articles> ORDER BY <id> ASC',
  1659. $sql,
  1660. !$this->autoQuote
  1661. );
  1662. $query = new Query($this->connection);
  1663. $query->select(['id'])
  1664. ->from('articles')
  1665. ->orderAsc($query->func()->concat(['id' => 'identifier', '3']));
  1666. $result = $query->execute()->fetchAll('assoc');
  1667. $expected = [
  1668. ['id' => 1],
  1669. ['id' => 2],
  1670. ['id' => 3],
  1671. ];
  1672. $this->assertEquals($expected, $result);
  1673. }
  1674. /**
  1675. * Test orderDesc() and its input types.
  1676. *
  1677. * @return void
  1678. */
  1679. public function testSelectOrderDesc()
  1680. {
  1681. $this->loadFixtures('Articles');
  1682. $query = new Query($this->connection);
  1683. $query->select(['id'])
  1684. ->from('articles')
  1685. ->orderDesc('id');
  1686. $sql = $query->sql();
  1687. $result = $query->execute()->fetchAll('assoc');
  1688. $expected = [
  1689. ['id' => 3],
  1690. ['id' => 2],
  1691. ['id' => 1],
  1692. ];
  1693. $this->assertEquals($expected, $result);
  1694. $this->assertQuotedQuery(
  1695. 'SELECT <id> FROM <articles> ORDER BY <id> DESC',
  1696. $sql,
  1697. !$this->autoQuote
  1698. );
  1699. $query = new Query($this->connection);
  1700. $query->select(['id'])
  1701. ->from('articles')
  1702. ->orderDesc($query->func()->concat(['id' => 'identifier', '3']));
  1703. $result = $query->execute()->fetchAll('assoc');
  1704. $expected = [
  1705. ['id' => 3],
  1706. ['id' => 2],
  1707. ['id' => 1],
  1708. ];
  1709. $this->assertEquals($expected, $result);
  1710. }
  1711. /**
  1712. * Tests that group by fields can be passed similar to select fields
  1713. * and that it sends the correct query to the database
  1714. *
  1715. * @return void
  1716. */
  1717. public function testSelectGroup()
  1718. {
  1719. $this->loadFixtures('Authors', 'Articles');
  1720. $query = new Query($this->connection);
  1721. $result = $query
  1722. ->select(['total' => 'count(author_id)', 'author_id'])
  1723. ->from('articles')
  1724. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => 'author_id = a.id'])
  1725. ->group('author_id')
  1726. ->execute();
  1727. $expected = [['total' => 2, 'author_id' => 1], ['total' => '1', 'author_id' => 3]];
  1728. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1729. $result = $query->select(['total' => 'count(title)', 'name'], true)
  1730. ->group(['name'], true)
  1731. ->order(['total' => 'asc'])
  1732. ->execute();
  1733. $expected = [['total' => 1, 'name' => 'larry'], ['total' => 2, 'name' => 'mariano']];
  1734. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1735. $result = $query->select(['articles.id'])
  1736. ->group(['articles.id'])
  1737. ->execute();
  1738. $this->assertCount(3, $result);
  1739. }
  1740. /**
  1741. * Tests that it is possible to select distinct rows
  1742. *
  1743. * @return void
  1744. */
  1745. public function testSelectDistinct()
  1746. {
  1747. $this->loadFixtures('Authors', 'Articles');
  1748. $query = new Query($this->connection);
  1749. $result = $query
  1750. ->select(['author_id'])
  1751. ->from(['a' => 'articles'])
  1752. ->execute();
  1753. $this->assertCount(3, $result);
  1754. $result = $query->distinct()->execute();
  1755. $this->assertCount(2, $result);
  1756. $result = $query->select(['id'])->distinct(false)->execute();
  1757. $this->assertCount(3, $result);
  1758. }
  1759. /**
  1760. * Tests that it is possible to select distinct rows, even filtering by one column
  1761. * this is testing that there is a specific implementation for DISTINCT ON
  1762. *
  1763. * @return void
  1764. */
  1765. public function testSelectDistinctON()
  1766. {
  1767. $this->loadFixtures('Authors', 'Articles');
  1768. $query = new Query($this->connection);
  1769. $result = $query
  1770. ->select(['id', 'author_id'])
  1771. ->distinct(['author_id'])
  1772. ->from(['a' => 'articles'])
  1773. ->order(['author_id' => 'ASC'])
  1774. ->execute();
  1775. $this->assertCount(2, $result);
  1776. $results = $result->fetchAll('assoc');
  1777. $this->assertEquals(['id', 'author_id'], array_keys($results[0]));
  1778. $this->assertEquals(
  1779. [3, 1],
  1780. collection($results)->sortBy('author_id')->extract('author_id')->toList()
  1781. );
  1782. $query = new Query($this->connection);
  1783. $result = $query
  1784. ->select(['id', 'author_id'])
  1785. ->distinct('author_id')
  1786. ->from(['a' => 'articles'])
  1787. ->order(['author_id' => 'ASC'])
  1788. ->execute();
  1789. $this->assertCount(2, $result);
  1790. $results = $result->fetchAll('assoc');
  1791. $this->assertEquals(['id', 'author_id'], array_keys($results[0]));
  1792. $this->assertEquals(
  1793. [3, 1],
  1794. collection($results)->sortBy('author_id')->extract('author_id')->toList()
  1795. );
  1796. }
  1797. /**
  1798. * Test use of modifiers in the query
  1799. *
  1800. * Testing the generated SQL since the modifiers are usually different per driver
  1801. *
  1802. * @return void
  1803. */
  1804. public function testSelectModifiers()
  1805. {
  1806. $query = new Query($this->connection);
  1807. $result = $query
  1808. ->select(['city', 'state', 'country'])
  1809. ->from(['addresses'])
  1810. ->modifier('DISTINCTROW');
  1811. $this->assertQuotedQuery(
  1812. 'SELECT DISTINCTROW <city>, <state>, <country> FROM <addresses>',
  1813. $result->sql(),
  1814. !$this->autoQuote
  1815. );
  1816. $query = new Query($this->connection);
  1817. $result = $query
  1818. ->select(['city', 'state', 'country'])
  1819. ->from(['addresses'])
  1820. ->modifier(['DISTINCTROW', 'SQL_NO_CACHE']);
  1821. $this->assertQuotedQuery(
  1822. 'SELECT DISTINCTROW SQL_NO_CACHE <city>, <state>, <country> FROM <addresses>',
  1823. $result->sql(),
  1824. !$this->autoQuote
  1825. );
  1826. $query = new Query($this->connection);
  1827. $result = $query
  1828. ->select(['city', 'state', 'country'])
  1829. ->from(['addresses'])
  1830. ->modifier('DISTINCTROW')
  1831. ->modifier('SQL_NO_CACHE');
  1832. $this->assertQuotedQuery(
  1833. 'SELECT DISTINCTROW SQL_NO_CACHE <city>, <state>, <country> FROM <addresses>',
  1834. $result->sql(),
  1835. true
  1836. );
  1837. $query = new Query($this->connection);
  1838. $result = $query
  1839. ->select(['city', 'state', 'country'])
  1840. ->from(['addresses'])
  1841. ->modifier(['TOP 10']);
  1842. $this->assertQuotedQuery(
  1843. 'SELECT TOP 10 <city>, <state>, <country> FROM <addresses>',
  1844. $result->sql(),
  1845. !$this->autoQuote
  1846. );
  1847. }
  1848. /**
  1849. * Tests that having() behaves pretty much the same as the where() method
  1850. *
  1851. * @return void
  1852. */
  1853. public function testSelectHaving()
  1854. {
  1855. $this->loadFixtures('Authors', 'Articles');
  1856. $query = new Query($this->connection);
  1857. $result = $query
  1858. ->select(['total' => 'count(author_id)', 'author_id'])
  1859. ->from('articles')
  1860. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $query->newExpr()->equalFields('author_id', 'a.id')])
  1861. ->group('author_id')
  1862. ->having(['count(author_id) <' => 2], ['count(author_id)' => 'integer'])
  1863. ->execute();
  1864. $expected = [['total' => 1, 'author_id' => 3]];
  1865. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1866. $result = $query->having(['count(author_id)' => 2], ['count(author_id)' => 'integer'], true)
  1867. ->execute();
  1868. $expected = [['total' => 2, 'author_id' => 1]];
  1869. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1870. $result = $query->having(function ($e) {
  1871. return $e->add('count(author_id) = 1 + 1');
  1872. }, [], true)
  1873. ->execute();
  1874. $expected = [['total' => 2, 'author_id' => 1]];
  1875. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1876. }
  1877. /**
  1878. * Tests that Query::orHaving() can be used to concatenate conditions with OR
  1879. * in the having clause
  1880. *
  1881. * @return void
  1882. */
  1883. public function testSelectOrHaving()
  1884. {
  1885. $this->loadFixtures('Authors', 'Articles');
  1886. $query = new Query($this->connection);
  1887. $result = $query
  1888. ->select(['total' => 'count(author_id)', 'author_id'])
  1889. ->from('articles')
  1890. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $query->newExpr()->equalFields('author_id', 'a.id')])
  1891. ->group('author_id')
  1892. ->having(['count(author_id) >' => 2], ['count(author_id)' => 'integer'])
  1893. ->orHaving(['count(author_id) <' => 2], ['count(author_id)' => 'integer'])
  1894. ->execute();
  1895. $expected = [['total' => 1, 'author_id' => 3]];
  1896. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1897. $query = new Query($this->connection);
  1898. $result = $query
  1899. ->select(['total' => 'count(author_id)', 'author_id'])
  1900. ->from('articles')
  1901. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $query->newExpr()->equalFields('author_id', 'a.id')])
  1902. ->group('author_id')
  1903. ->having(['count(author_id) >' => 2], ['count(author_id)' => 'integer'])
  1904. ->orHaving(['count(author_id) <=' => 2], ['count(author_id)' => 'integer'])
  1905. ->execute();
  1906. $expected = [['total' => 2, 'author_id' => 1], ['total' => 1, 'author_id' => 3]];
  1907. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1908. $query = new Query($this->connection);
  1909. $result = $query
  1910. ->select(['total' => 'count(author_id)', 'author_id'])
  1911. ->from('articles')
  1912. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $query->newExpr()->equalFields('author_id', 'a.id')])
  1913. ->group('author_id')
  1914. ->having(['count(author_id) >' => 2], ['count(author_id)' => 'integer'])
  1915. ->orHaving(function ($e) {
  1916. return $e->add('count(author_id) = 1 + 1');
  1917. })
  1918. ->execute();
  1919. $expected = [['total' => 2, 'author_id' => 1]];
  1920. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1921. }
  1922. /**
  1923. * Tests that Query::andHaving() can be used to concatenate conditions with AND
  1924. * in the having clause
  1925. *
  1926. * @return void
  1927. */
  1928. public function testSelectAndHaving()
  1929. {
  1930. $this->loadFixtures('Authors', 'Articles');
  1931. $query = new Query($this->connection);
  1932. $result = $query
  1933. ->select(['total' => 'count(author_id)', 'author_id'])
  1934. ->from('articles')
  1935. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $query->newExpr()->equalFields('author_id', 'a.id')])
  1936. ->group('author_id')
  1937. ->having(['count(author_id) >' => 2], ['count(author_id)' => 'integer'])
  1938. ->andHaving(['count(author_id) <' => 2], ['count(author_id)' => 'integer'])
  1939. ->execute();
  1940. $this->assertCount(0, $result);
  1941. $query = new Query($this->connection);
  1942. $result = $query
  1943. ->select(['total' => 'count(author_id)', 'author_id'])
  1944. ->from('articles')
  1945. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $query->newExpr()->equalFields('author_id', 'a.id')])
  1946. ->group('author_id')
  1947. ->having(['count(author_id)' => 2], ['count(author_id)' => 'integer'])
  1948. ->andHaving(['count(author_id) >' => 1], ['count(author_id)' => 'integer'])
  1949. ->execute();
  1950. $expected = [['total' => 2, 'author_id' => 1]];
  1951. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1952. $query = new Query($this->connection);
  1953. $result = $query
  1954. ->select(['total' => 'count(author_id)', 'author_id'])
  1955. ->from('articles')
  1956. ->join(['table' => 'authors', 'alias' => 'a', 'conditions' => $query->newExpr()->equalFields('author_id', 'a.id')])
  1957. ->group('author_id')
  1958. ->andHaving(function ($e) {
  1959. return $e->add('count(author_id) = 2 - 1');
  1960. })
  1961. ->execute();
  1962. $expected = [['total' => 1, 'author_id' => 3]];
  1963. $this->assertEquals($expected, $result->fetchAll('assoc'));
  1964. }
  1965. /**
  1966. * Tests selecting rows using a limit clause
  1967. *
  1968. * @return void
  1969. */
  1970. public function testSelectLimit()
  1971. {
  1972. $this->loadFixtures('Articles');
  1973. $query = new Query($this->connection);
  1974. $result = $query->select('id')->from('articles')->limit(1)->execute();
  1975. $this->assertCount(1, $result);
  1976. $query = new Query($this->connection);
  1977. $result = $query->select('id')->from('articles')->limit(2)->execute();
  1978. $this->assertCount(2, $result);
  1979. }
  1980. /**
  1981. * Tests selecting rows combining a limit and offset clause
  1982. *
  1983. * @return void
  1984. */
  1985. public function testSelectOffset()
  1986. {
  1987. $this->loadFixtures('Articles', 'Comments');
  1988. $query = new Query($this->connection);
  1989. $result = $query->select('id')->from('comments')
  1990. ->limit(1)
  1991. ->offset(0)
  1992. ->order(['id' => 'ASC'])
  1993. ->execute();
  1994. $this->assertCount(1, $result);
  1995. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  1996. $query = new Query($this->connection);
  1997. $result = $query->select('id')->from('comments')
  1998. ->limit(1)
  1999. ->offset(1)
  2000. ->execute();
  2001. $this->assertCount(1, $result);
  2002. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  2003. $query = new Query($this->connection);
  2004. $result = $query->select('id')->from('comments')
  2005. ->limit(1)
  2006. ->offset(2)
  2007. ->execute();
  2008. $this->assertCount(1, $result);
  2009. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  2010. $query = new Query($this->connection);
  2011. $result = $query->select('id')->from('articles')
  2012. ->order(['id' => 'DESC'])
  2013. ->limit(1)
  2014. ->offset(0)
  2015. ->execute();
  2016. $this->assertCount(1, $result);
  2017. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  2018. $result = $query->limit(2)->offset(1)->execute();
  2019. $this->assertCount(2, $result);
  2020. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  2021. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  2022. $query = new Query($this->connection);
  2023. $query->select('id')->from('comments')
  2024. ->limit(1)
  2025. ->offset(1)
  2026. ->execute();
  2027. $dirty = $this->readAttribute($query, '_dirty');
  2028. $this->assertFalse($dirty);
  2029. $query->offset(2);
  2030. $dirty = $this->readAttribute($query, '_dirty');
  2031. $this->assertTrue($dirty);
  2032. }
  2033. /**
  2034. * Test selecting rows using the page() method.
  2035. *
  2036. * @return void
  2037. */
  2038. public function testSelectPage()
  2039. {
  2040. $this->loadFixtures('Comments');
  2041. $query = new Query($this->connection);
  2042. $result = $query->select('id')->from('comments')
  2043. ->limit(1)
  2044. ->page(1)
  2045. ->execute();
  2046. $this->assertCount(1, $result);
  2047. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  2048. $query = new Query($this->connection);
  2049. $result = $query->select('id')->from('comments')
  2050. ->limit(1)
  2051. ->page(2)
  2052. ->order(['id' => 'asc'])
  2053. ->execute();
  2054. $this->assertCount(1, $result);
  2055. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  2056. $query = new Query($this->connection);
  2057. $query->select('id')->from('comments')->page(3, 10);
  2058. $this->assertEquals(10, $query->clause('limit'));
  2059. $this->assertEquals(20, $query->clause('offset'));
  2060. $query = new Query($this->connection);
  2061. $query->select('id')->from('comments')->page(1);
  2062. $this->assertEquals(25, $query->clause('limit'));
  2063. $this->assertEquals(0, $query->clause('offset'));
  2064. $query->select('id')->from('comments')->page(2);
  2065. $this->assertEquals(25, $query->clause('limit'));
  2066. $this->assertEquals(25, $query->clause('offset'));
  2067. }
  2068. /**
  2069. * Tests that Query objects can be included inside the select clause
  2070. * and be used as a normal field, including binding any passed parameter
  2071. *
  2072. * @return void
  2073. */
  2074. public function testSubqueryInSelect()
  2075. {
  2076. $this->loadFixtures('Authors', 'Articles', 'Comments');
  2077. $query = new Query($this->connection);
  2078. $subquery = (new Query($this->connection))
  2079. ->select('name')
  2080. ->from(['b' => 'authors'])
  2081. ->where([$query->newExpr()->equalFields('b.id', 'a.id')]);
  2082. $result = $query
  2083. ->select(['id', 'name' => $subquery])
  2084. ->from(['a' => 'comments'])->execute();
  2085. $expected = [
  2086. ['id' => 1, 'name' => 'mariano'],
  2087. ['id' => 2, 'name' => 'nate'],
  2088. ['id' => 3, 'name' => 'larry'],
  2089. ['id' => 4, 'name' => 'garrett'],
  2090. ['id' => 5, 'name' => null],
  2091. ['id' => 6, 'name' => null],
  2092. ];
  2093. $this->assertEquals($expected, $result->fetchAll('assoc'));
  2094. $query = new Query($this->connection);
  2095. $subquery = (new Query($this->connection))
  2096. ->select('name')
  2097. ->from(['b' => 'authors'])
  2098. ->where(['name' => 'mariano'], ['name' => 'string']);
  2099. $result = $query
  2100. ->select(['id', 'name' => $subquery])
  2101. ->from(['a' => 'articles'])->execute();
  2102. $expected = [
  2103. ['id' => 1, 'name' => 'mariano'],
  2104. ['id' => 2, 'name' => 'mariano'],
  2105. ['id' => 3, 'name' => 'mariano'],
  2106. ];
  2107. $this->assertEquals($expected, $result->fetchAll('assoc'));
  2108. }
  2109. /**
  2110. * Tests that Query objects can be included inside the from clause
  2111. * and be used as a normal table, including binding any passed parameter
  2112. *
  2113. * @return void
  2114. */
  2115. public function testSuqueryInFrom()
  2116. {
  2117. $this->loadFixtures('Comments');
  2118. $query = new Query($this->connection);
  2119. $subquery = (new Query($this->connection))
  2120. ->select(['id', 'comment'])
  2121. ->from('comments')
  2122. ->where(['created >' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime']);
  2123. $result = $query
  2124. ->select(['say' => 'comment'])
  2125. ->from(['b' => $subquery])
  2126. ->where(['id !=' => 3])
  2127. ->execute();
  2128. $expected = [
  2129. ['say' => 'Second Comment for First Article'],
  2130. ['say' => 'Fourth Comment for First Article'],
  2131. ['say' => 'First Comment for Second Article'],
  2132. ['say' => 'Second Comment for Second Article'],
  2133. ];
  2134. $this->assertEquals($expected, $result->fetchAll('assoc'));
  2135. }
  2136. /**
  2137. * Tests that Query objects can be included inside the where clause
  2138. * and be used as a normal condition, including binding any passed parameter
  2139. *
  2140. * @return void
  2141. */
  2142. public function testSubqueryInWhere()
  2143. {
  2144. $this->loadFixtures('Authors', 'Comments');
  2145. $query = new Query($this->connection);
  2146. $subquery = (new Query($this->connection))
  2147. ->select(['id'])
  2148. ->from('authors')
  2149. ->where(['id' => 1]);
  2150. $result = $query
  2151. ->select(['name'])
  2152. ->from(['authors'])
  2153. ->where(['id !=' => $subquery])
  2154. ->execute();
  2155. $expected = [
  2156. ['name' => 'nate'],
  2157. ['name' => 'larry'],
  2158. ['name' => 'garrett'],
  2159. ];
  2160. $this->assertEquals($expected, $result->fetchAll('assoc'));
  2161. $result->closeCursor();
  2162. $query = new Query($this->connection);
  2163. $subquery = (new Query($this->connection))
  2164. ->select(['id'])
  2165. ->from('comments')
  2166. ->where(['created >' => new \DateTime('2007-03-18 10:45:23')], ['created' => 'datetime']);
  2167. $result = $query
  2168. ->select(['name'])
  2169. ->from(['authors'])
  2170. ->where(['id not in' => $subquery])
  2171. ->execute();
  2172. $expected = [
  2173. ['name' => 'mariano'],
  2174. ];
  2175. $this->assertEquals($expected, $result->fetchAll('assoc'));
  2176. $result->closeCursor();
  2177. }
  2178. /**
  2179. * Tests that Query objects can be included inside the where clause
  2180. * and be used as a EXISTS and NOT EXISTS conditions
  2181. *
  2182. * @return void
  2183. */
  2184. public function testSubqueryExistsWhere()
  2185. {
  2186. $this->loadFixtures('Articles', 'Authors');
  2187. $query = new Query($this->connection);
  2188. $subQuery = (new Query($this->connection))
  2189. ->select(['id'])
  2190. ->from('articles')
  2191. ->where(function ($exp) {
  2192. return $exp->equalFields('authors.id', 'articles.author_id');
  2193. });
  2194. $result = $query
  2195. ->select(['id'])
  2196. ->from('authors')
  2197. ->where(function ($exp) use ($subQuery) {
  2198. return $exp->exists($subQuery);
  2199. })
  2200. ->execute();
  2201. $this->assertCount(2, $result);
  2202. $this->assertEquals(['id' => 1], $result->fetch('assoc'));
  2203. $this->assertEquals(['id' => 3], $result->fetch('assoc'));
  2204. $query = new Query($this->connection);
  2205. $subQuery = (new Query($this->connection))
  2206. ->select(['id'])
  2207. ->from('articles')
  2208. ->where(function ($exp) {
  2209. return $exp->equalFields('authors.id', 'articles.author_id');
  2210. });
  2211. $result = $query
  2212. ->select(['id'])
  2213. ->from('authors')
  2214. ->where(function ($exp) use ($subQuery) {
  2215. return $exp->notExists($subQuery);
  2216. })
  2217. ->execute();
  2218. $this->assertCount(2, $result);
  2219. $this->assertEquals(['id' => 2], $result->fetch('assoc'));
  2220. $this->assertEquals(['id' => 4], $result->fetch('assoc'));
  2221. }
  2222. /**
  2223. * Tests that it is possible to use a subquery in a join clause
  2224. *
  2225. * @return void
  2226. */
  2227. public function testSubqueryInJoin()
  2228. {
  2229. $this->loadFixtures('Authors', 'Articles');
  2230. $subquery = (new Query($this->connection))->select('*')->from('authors');
  2231. $query = new Query($this->connection);
  2232. $result = $query
  2233. ->select(['title', 'name'])
  2234. ->from('articles')
  2235. ->join(['b' => $subquery])
  2236. ->execute();
  2237. $this->assertCount(self::ARTICLE_COUNT * self::AUTHOR_COUNT, $result, 'Cross join causes multiplication');
  2238. $result->closeCursor();
  2239. $subquery->where(['id' => 1]);
  2240. $result = $query->execute();
  2241. $this->assertCount(3, $result);
  2242. $result->closeCursor();
  2243. $query->join(['b' => ['table' => $subquery, 'conditions' => [$query->newExpr()->equalFields('b.id', 'articles.id')]]], [], true);
  2244. $result = $query->execute();
  2245. $this->assertCount(1, $result);
  2246. $result->closeCursor();
  2247. }
  2248. /**
  2249. * Tests that it is possible to one or multiple UNION statements in a query
  2250. *
  2251. * @return void
  2252. */
  2253. public function testUnion()
  2254. {
  2255. $this->loadFixtures('Authors', 'Articles', 'Comments');
  2256. $union = (new Query($this->connection))->select(['id', 'title'])->from(['a' => 'articles']);
  2257. $query = new Query($this->connection);
  2258. $result = $query->select(['id', 'comment'])
  2259. ->from(['c' => 'comments'])
  2260. ->union($union)
  2261. ->execute();
  2262. $this->assertCount(self::COMMENT_COUNT + self::ARTICLE_COUNT, $result);
  2263. $rows = $result->fetchAll();
  2264. $result->closeCursor();
  2265. $union->select(['foo' => 'id', 'bar' => 'title']);
  2266. $union = (new Query($this->connection))
  2267. ->select(['id', 'name', 'other' => 'id', 'nameish' => 'name'])
  2268. ->from(['b' => 'authors'])
  2269. ->where(['id ' => 1])
  2270. ->order(['id' => 'desc']);
  2271. $query->select(['foo' => 'id', 'bar' => 'comment'])->union($union);
  2272. $result = $query->execute();
  2273. $this->assertCount(self::COMMENT_COUNT + self::AUTHOR_COUNT, $result);
  2274. $this->assertNotEquals($rows, $result->fetchAll());
  2275. $result->closeCursor();
  2276. $union = (new Query($this->connection))
  2277. ->select(['id', 'title'])
  2278. ->from(['c' => 'articles']);
  2279. $query->select(['id', 'comment'], true)->union($union, true);
  2280. $result = $query->execute();
  2281. $this->assertCount(self::COMMENT_COUNT + self::ARTICLE_COUNT, $result);
  2282. $this->assertEquals($rows, $result->fetchAll());
  2283. $result->closeCursor();
  2284. }
  2285. /**
  2286. * Tests that it is possible to run unions with order statements
  2287. *
  2288. * @return void
  2289. */
  2290. public function testUnionOrderBy()
  2291. {
  2292. $this->loadFixtures('Articles', 'Comments');
  2293. $this->skipIf(
  2294. ($this->connection->driver() instanceof \Cake\Database\Driver\Sqlite ||
  2295. $this->connection->driver() instanceof \Cake\Database\Driver\Sqlserver),
  2296. 'Driver does not support ORDER BY in UNIONed queries.'
  2297. );
  2298. $union = (new Query($this->connection))
  2299. ->select(['id', 'title'])
  2300. ->from(['a' => 'articles'])
  2301. ->order(['a.id' => 'asc']);
  2302. $query = new Query($this->connection);
  2303. $result = $query->select(['id', 'comment'])
  2304. ->from(['c' => 'comments'])
  2305. ->order(['c.id' => 'asc'])
  2306. ->union($union)
  2307. ->execute();
  2308. $this->assertCount(self::COMMENT_COUNT + self::ARTICLE_COUNT, $result);
  2309. $rows = $result->fetchAll();
  2310. $this->assertCount(self::COMMENT_COUNT + self::ARTICLE_COUNT, $result);
  2311. }
  2312. /**
  2313. * Tests that UNION ALL can be built by setting the second param of union() to true
  2314. *
  2315. * @return void
  2316. */
  2317. public function testUnionAll()
  2318. {
  2319. $this->loadFixtures('Authors', 'Articles', 'Comments');
  2320. $union = (new Query($this->connection))->select(['id', 'title'])->from(['a' => 'articles']);
  2321. $query = new Query($this->connection);
  2322. $result = $query->select(['id', 'comment'])
  2323. ->from(['c' => 'comments'])
  2324. ->union($union)
  2325. ->execute();
  2326. $this->assertCount(self::ARTICLE_COUNT + self::COMMENT_COUNT, $result);
  2327. $rows = $result->fetchAll();
  2328. $result->closeCursor();
  2329. $union->select(['foo' => 'id', 'bar' => 'title']);
  2330. $union = (new Query($this->connection))
  2331. ->select(['id', 'name', 'other' => 'id', 'nameish' => 'name'])
  2332. ->from(['b' => 'authors'])
  2333. ->where(['id ' => 1])
  2334. ->order(['id' => 'desc']);
  2335. $query->select(['foo' => 'id', 'bar' => 'comment'])->unionAll($union);
  2336. $result = $query->execute();
  2337. $this->assertCount(1 + self::COMMENT_COUNT + self::ARTICLE_COUNT, $result);
  2338. $this->assertNotEquals($rows, $result->fetchAll());
  2339. $result->closeCursor();
  2340. }
  2341. /**
  2342. * Tests stacking decorators for results and resetting the list of decorators
  2343. *
  2344. * @return void
  2345. */
  2346. public function testDecorateResults()
  2347. {
  2348. $this->loadFixtures('Articles');
  2349. $query = new Query($this->connection);
  2350. $result = $query
  2351. ->select(['id', 'title'])
  2352. ->from('articles')
  2353. ->order(['id' => 'ASC'])
  2354. ->decorateResults(function ($row) {
  2355. $row['modified_id'] = $row['id'] + 1;
  2356. return $row;
  2357. })
  2358. ->execute();
  2359. while ($row = $result->fetch('assoc')) {
  2360. $this->assertEquals($row['id'] + 1, $row['modified_id']);
  2361. }
  2362. $result = $query->decorateResults(function ($row) {
  2363. $row['modified_id']--;
  2364. return $row;
  2365. })->execute();
  2366. while ($row = $result->fetch('assoc')) {
  2367. $this->assertEquals($row['id'], $row['modified_id']);
  2368. }
  2369. $result->closeCursor();
  2370. $result = $query
  2371. ->decorateResults(function ($row) {
  2372. $row['foo'] = 'bar';
  2373. return $row;
  2374. }, true)
  2375. ->execute();
  2376. while ($row = $result->fetch('assoc')) {
  2377. $this->assertEquals('bar', $row['foo']);
  2378. $this->assertArrayNotHasKey('modified_id', $row);
  2379. }
  2380. $results = $query->decorateResults(null, true)->execute();
  2381. while ($row = $result->fetch('assoc')) {
  2382. $this->assertArrayNotHasKey('foo', $row);
  2383. $this->assertArrayNotHasKey('modified_id', $row);
  2384. }
  2385. $results->closeCursor();
  2386. }
  2387. /**
  2388. * Test a basic delete using from()
  2389. *
  2390. * @return void
  2391. */
  2392. public function testDeleteWithFrom()
  2393. {
  2394. $this->loadFixtures('Authors');
  2395. $query = new Query($this->connection);
  2396. $query->delete()
  2397. ->from('authors')
  2398. ->where('1 = 1');
  2399. $result = $query->sql();
  2400. $this->assertQuotedQuery('DELETE FROM <authors>', $result, !$this->autoQuote);
  2401. $result = $query->execute();
  2402. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  2403. $this->assertCount(self::AUTHOR_COUNT, $result);
  2404. $result->closeCursor();
  2405. }
  2406. /**
  2407. * Test delete with from and alias.
  2408. *
  2409. * @return void
  2410. */
  2411. public function testDeleteWithAliasedFrom()
  2412. {
  2413. $this->loadFixtures('Authors');
  2414. $query = new Query($this->connection);
  2415. $query->delete()
  2416. ->from(['a ' => 'authors'])
  2417. ->where(['a.id !=' => 99]);
  2418. $result = $query->sql();
  2419. $this->assertQuotedQuery('DELETE FROM <authors> WHERE <id> != :c0', $result, !$this->autoQuote);
  2420. $result = $query->execute();
  2421. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  2422. $this->assertCount(self::AUTHOR_COUNT, $result);
  2423. $result->closeCursor();
  2424. }
  2425. /**
  2426. * Test a basic delete with no from() call.
  2427. *
  2428. * @return void
  2429. */
  2430. public function testDeleteNoFrom()
  2431. {
  2432. $this->loadFixtures('Authors');
  2433. $query = new Query($this->connection);
  2434. $query->delete('authors')
  2435. ->where('1 = 1');
  2436. $result = $query->sql();
  2437. $this->assertQuotedQuery('DELETE FROM <authors>', $result, !$this->autoQuote);
  2438. $result = $query->execute();
  2439. $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
  2440. $this->assertCount(self::AUTHOR_COUNT, $result);
  2441. $result->closeCursor();
  2442. }
  2443. /**
  2444. * Tests that delete queries that contain joins do trigger a notice,
  2445. * warning about possible incompatibilities with aliases being removed
  2446. * from the conditions.
  2447. *
  2448. *
  2449. * @expectedException \RuntimeException
  2450. * @expectedExceptionMessage Aliases are being removed from conditions for UPDATE/DELETE queries, this can break references to joined tables.
  2451. * @return void
  2452. */
  2453. public function testDeleteRemovingAliasesCanBreakJoins()
  2454. {
  2455. $query = new Query($this->connection);
  2456. $query
  2457. ->delete('authors')
  2458. ->from(['a ' => 'authors'])
  2459. ->innerJoin('articles')
  2460. ->where(['a.id' => 1]);
  2461. $query->sql();
  2462. }
  2463. /**
  2464. * Test setting select() & delete() modes.
  2465. *
  2466. * @return void
  2467. */
  2468. public function testSelectAndDeleteOnSameQuery()
  2469. {
  2470. $this->loadFixtures('Authors');
  2471. $query = new Query($this->connection);
  2472. $result = $query->select()
  2473. ->delete('authors')
  2474. ->where('1 = 1');
  2475. $result = $query->sql();
  2476. $this->assertQuotedQuery('DELETE FROM <authors>', $result, !$this->autoQuote);
  2477. $this->assertContains(' WHERE 1 = 1', $result);
  2478. }
  2479. /**
  2480. * Test a simple update.
  2481. *
  2482. * @return void
  2483. */
  2484. public function testUpdateSimple()
  2485. {
  2486. $this->loadFixtures('Authors');
  2487. $query = new Query($this->connection);
  2488. $query->update('authors')
  2489. ->set('name', 'mark')
  2490. ->where(['id' => 1]);
  2491. $result = $query->sql();
  2492. $this->assertQuotedQuery('UPDATE <authors> SET <name> = :', $result, !$this->autoQuote);
  2493. $result = $query->execute();
  2494. $this->assertCount(1, $result);
  2495. $result->closeCursor();
  2496. }
  2497. /**
  2498. * Test update with type checking
  2499. * by passing an array as table arg
  2500. *
  2501. * @expectedException \InvalidArgumentException
  2502. *
  2503. * @return void
  2504. */
  2505. public function testUpdateArgTypeChecking()
  2506. {
  2507. $query = new Query($this->connection);
  2508. $query->update(['Articles']);
  2509. }
  2510. /**
  2511. * Test update with multiple fields.
  2512. *
  2513. * @return void
  2514. */
  2515. public function testUpdateMultipleFields()
  2516. {
  2517. $this->loadFixtures('Articles');
  2518. $query = new Query($this->connection);
  2519. $query->update('articles')
  2520. ->set('title', 'mark', 'string')
  2521. ->set('body', 'some text', 'string')
  2522. ->where(['id' => 1]);
  2523. $result = $query->sql();
  2524. $this->assertQuotedQuery(
  2525. 'UPDATE <articles> SET <title> = :c0 , <body> = :c1',
  2526. $result,
  2527. !$this->autoQuote
  2528. );
  2529. $this->assertQuotedQuery(' WHERE <id> = :c2$', $result, !$this->autoQuote);
  2530. $result = $query->execute();
  2531. $this->assertCount(1, $result);
  2532. $result->closeCursor();
  2533. }
  2534. /**
  2535. * Test updating multiple fields with an array.
  2536. *
  2537. * @return void
  2538. */
  2539. public function testUpdateMultipleFieldsArray()
  2540. {
  2541. $this->loadFixtures('Articles');
  2542. $query = new Query($this->connection);
  2543. $query->update('articles')
  2544. ->set([
  2545. 'title' => 'mark',
  2546. 'body' => 'some text'
  2547. ], ['title' => 'string', 'body' => 'string'])
  2548. ->where(['id' => 1]);
  2549. $result = $query->sql();
  2550. $this->assertQuotedQuery(
  2551. 'UPDATE <articles> SET <title> = :c0 , <body> = :c1',
  2552. $result,
  2553. !$this->autoQuote
  2554. );
  2555. $this->assertQuotedQuery('WHERE <id> = :', $result, !$this->autoQuote);
  2556. $result = $query->execute();
  2557. $this->assertCount(1, $result);
  2558. $result->closeCursor();
  2559. }
  2560. /**
  2561. * Test updates with an expression.
  2562. *
  2563. * @return void
  2564. */
  2565. public function testUpdateWithExpression()
  2566. {
  2567. $this->loadFixtures('Comments');
  2568. $query = new Query($this->connection);
  2569. $expr = $query->newExpr()->equalFields('article_id', 'user_id');
  2570. $query->update('comments')
  2571. ->set($expr)
  2572. ->where(['id' => 1]);
  2573. $result = $query->sql();
  2574. $this->assertQuotedQuery(
  2575. 'UPDATE <comments> SET <article_id> = \(<user_id>\) WHERE <id> = :',
  2576. $result,
  2577. !$this->autoQuote
  2578. );
  2579. $result = $query->execute();
  2580. $this->assertCount(1, $result);
  2581. $result->closeCursor();
  2582. }
  2583. /**
  2584. * Test update with array fields and types.
  2585. *
  2586. * @return void
  2587. */
  2588. public function testUpdateArrayFields()
  2589. {
  2590. $this->loadFixtures('Comments');
  2591. $query = new Query($this->connection);
  2592. $date = new \DateTime;
  2593. $query->update('comments')
  2594. ->set(['comment' => 'mark', 'created' => $date], ['created' => 'date'])
  2595. ->where(['id' => 1]);
  2596. $result = $query->sql();
  2597. $this->assertQuotedQuery(
  2598. 'UPDATE <comments> SET <comment> = :c0 , <created> = :c1',
  2599. $result,
  2600. !$this->autoQuote
  2601. );
  2602. $this->assertQuotedQuery(' WHERE <id> = :c2$', $result, !$this->autoQuote);
  2603. $result = $query->execute();
  2604. $this->assertCount(1, $result);
  2605. $query = new Query($this->connection);
  2606. $result = $query->select('created')->from('comments')->where(['id' => 1])->execute();
  2607. $result = $result->fetchAll('assoc')[0]['created'];
  2608. $this->assertStringStartsWith($date->format('Y-m-d'), $result);
  2609. }
  2610. /**
  2611. * Test update with callable in set
  2612. *
  2613. * @return void
  2614. */
  2615. public function testUpdateSetCallable()
  2616. {
  2617. $this->loadFixtures('Comments');
  2618. $query = new Query($this->connection);
  2619. $date = new \DateTime;
  2620. $query->update('comments')
  2621. ->set(function ($exp) use ($date) {
  2622. return $exp
  2623. ->eq('comment', 'mark')
  2624. ->eq('created', $date, 'date');
  2625. })
  2626. ->where(['id' => 1]);
  2627. $result = $query->sql();
  2628. $this->assertQuotedQuery(
  2629. 'UPDATE <comments> SET <comment> = :c0 , <created> = :c1',
  2630. $result,
  2631. !$this->autoQuote
  2632. );
  2633. $this->assertQuotedQuery(' WHERE <id> = :c2$', $result, !$this->autoQuote);
  2634. $result = $query->execute();
  2635. $this->assertCount(1, $result);
  2636. }
  2637. /**
  2638. * Tests that aliases are stripped from update query conditions
  2639. * where possible.
  2640. *
  2641. * @return void
  2642. */
  2643. public function testUpdateStripAliasesFromConditions()
  2644. {
  2645. $query = new Query($this->connection);
  2646. $query
  2647. ->update('authors')
  2648. ->set(['name' => 'name'])
  2649. ->where([
  2650. 'OR' => [
  2651. 'a.id' => 1,
  2652. 'AND' => [
  2653. 'b.name NOT IN' => ['foo', 'bar'],
  2654. 'OR' => [
  2655. $query->newExpr()->eq(new IdentifierExpression('c.name'), 'zap'),
  2656. 'd.name' => 'baz',
  2657. (new Query($this->connection))->select(['e.name'])->where(['e.name' => 'oof'])
  2658. ]
  2659. ]
  2660. ],
  2661. ]);
  2662. $this->assertQuotedQuery(
  2663. 'UPDATE <authors> SET <name> = :c0 WHERE \(' .
  2664. '<id> = :c1 OR \(' .
  2665. '<name> not in \(:c2,:c3\) AND \(' .
  2666. '\(<c>\.<name>\) = :c4 OR <name> = :c5 OR \(SELECT <e>\.<name> WHERE <e>\.<name> = :c6\)' .
  2667. '\)' .
  2668. '\)' .
  2669. '\)',
  2670. $query->sql(),
  2671. !$this->autoQuote
  2672. );
  2673. }
  2674. /**
  2675. * Tests that update queries that contain joins do trigger a notice,
  2676. * warning about possible incompatibilities with aliases being removed
  2677. * from the conditions.
  2678. *
  2679. * @expectedException \RuntimeException
  2680. * @expectedExceptionMessage Aliases are being removed from conditions for UPDATE/DELETE queries, this can break references to joined tables.
  2681. * @return void
  2682. */
  2683. public function testUpdateRemovingAliasesCanBreakJoins()
  2684. {
  2685. $query = new Query($this->connection);
  2686. $query
  2687. ->update('authors')
  2688. ->set(['name' => 'name'])
  2689. ->innerJoin('articles')
  2690. ->where(['a.id' => 1]);
  2691. $query->sql();
  2692. }
  2693. /**
  2694. * You cannot call values() before insert() it causes all sorts of pain.
  2695. *
  2696. * @expectedException \Cake\Database\Exception
  2697. * @return void
  2698. */
  2699. public function testInsertValuesBeforeInsertFailure()
  2700. {
  2701. $query = new Query($this->connection);
  2702. $query->select('*')->values([
  2703. 'id' => 1,
  2704. 'title' => 'mark',
  2705. 'body' => 'test insert'
  2706. ]);
  2707. }
  2708. /**
  2709. * Inserting nothing should not generate an error.
  2710. *
  2711. * @expectedException \RuntimeException
  2712. * @expectedExceptionMessage At least 1 column is required to perform an insert.
  2713. * @return void
  2714. */
  2715. public function testInsertNothing()
  2716. {
  2717. $query = new Query($this->connection);
  2718. $query->insert([]);
  2719. }
  2720. /**
  2721. * Test insert overwrites values
  2722. *
  2723. * @return void
  2724. */
  2725. public function testInsertOverwritesValues()
  2726. {
  2727. $this->loadFixtures('Articles');
  2728. $query = new Query($this->connection);
  2729. $query->insert(['title', 'body'])
  2730. ->insert(['title'])
  2731. ->into('articles')
  2732. ->values([
  2733. 'title' => 'mark',
  2734. ]);
  2735. $result = $query->sql();
  2736. $this->assertQuotedQuery(
  2737. 'INSERT INTO <articles> \(<title>\) (OUTPUT INSERTED\.\* )?' .
  2738. 'VALUES \(:c0\)',
  2739. $result,
  2740. !$this->autoQuote
  2741. );
  2742. }
  2743. /**
  2744. * Test inserting a single row.
  2745. *
  2746. * @return void
  2747. */
  2748. public function testInsertSimple()
  2749. {
  2750. $this->loadFixtures('Articles');
  2751. $query = new Query($this->connection);
  2752. $query->insert(['title', 'body'])
  2753. ->into('articles')
  2754. ->values([
  2755. 'title' => 'mark',
  2756. 'body' => 'test insert'
  2757. ]);
  2758. $result = $query->sql();
  2759. $this->assertQuotedQuery(
  2760. 'INSERT INTO <articles> \(<title>, <body>\) (OUTPUT INSERTED\.\* )?' .
  2761. 'VALUES \(:c0, :c1\)',
  2762. $result,
  2763. !$this->autoQuote
  2764. );
  2765. $result = $query->execute();
  2766. $result->closeCursor();
  2767. //PDO_SQLSRV returns -1 for successful inserts when using INSERT ... OUTPUT
  2768. if (!$this->connection->driver() instanceof \Cake\Database\Driver\Sqlserver) {
  2769. $this->assertCount(1, $result, '1 row should be inserted');
  2770. }
  2771. $expected = [
  2772. [
  2773. 'id' => 4,
  2774. 'author_id' => null,
  2775. 'title' => 'mark',
  2776. 'body' => 'test insert',
  2777. 'published' => 'N',
  2778. ]
  2779. ];
  2780. $this->assertTable('articles', 1, $expected, ['id >=' => 4]);
  2781. }
  2782. /**
  2783. * Test insert queries quote integer column names
  2784. *
  2785. * @return void
  2786. */
  2787. public function testInsertQuoteColumns()
  2788. {
  2789. $this->loadFixtures('Articles');
  2790. $query = new Query($this->connection);
  2791. $query->insert([123])
  2792. ->into('articles')
  2793. ->values([
  2794. '123' => 'mark',
  2795. ]);
  2796. $result = $query->sql();
  2797. $this->assertQuotedQuery(
  2798. 'INSERT INTO <articles> \(<123>\) (OUTPUT INSERTED\.\* )?' .
  2799. 'VALUES \(:c0\)',
  2800. $result,
  2801. !$this->autoQuote
  2802. );
  2803. }
  2804. /**
  2805. * Test an insert when not all the listed fields are provided.
  2806. * Columns should be matched up where possible.
  2807. *
  2808. * @return void
  2809. */
  2810. public function testInsertSparseRow()
  2811. {
  2812. $this->loadFixtures('Articles');
  2813. $query = new Query($this->connection);
  2814. $query->insert(['title', 'body'])
  2815. ->into('articles')
  2816. ->values([
  2817. 'title' => 'mark',
  2818. ]);
  2819. $result = $query->sql();
  2820. $this->assertQuotedQuery(
  2821. 'INSERT INTO <articles> \(<title>, <body>\) (OUTPUT INSERTED\.\* )?' .
  2822. 'VALUES \(:c0, :c1\)',
  2823. $result,
  2824. !$this->autoQuote
  2825. );
  2826. $result = $query->execute();
  2827. $result->closeCursor();
  2828. //PDO_SQLSRV returns -1 for successful inserts when using INSERT ... OUTPUT
  2829. if (!$this->connection->driver() instanceof \Cake\Database\Driver\Sqlserver) {
  2830. $this->assertCount(1, $result, '1 row should be inserted');
  2831. }
  2832. $expected = [
  2833. [
  2834. 'id' => 4,
  2835. 'author_id' => null,
  2836. 'title' => 'mark',
  2837. 'body' => null,
  2838. 'published' => 'N',
  2839. ]
  2840. ];
  2841. $this->assertTable('articles', 1, $expected, ['id >=' => 4]);
  2842. }
  2843. /**
  2844. * Test inserting multiple rows with sparse data.
  2845. *
  2846. * @return void
  2847. */
  2848. public function testInsertMultipleRowsSparse()
  2849. {
  2850. $this->loadFixtures('Articles');
  2851. $query = new Query($this->connection);
  2852. $query->insert(['title', 'body'])
  2853. ->into('articles')
  2854. ->values([
  2855. 'body' => 'test insert'
  2856. ])
  2857. ->values([
  2858. 'title' => 'jose',
  2859. ]);
  2860. $result = $query->execute();
  2861. $result->closeCursor();
  2862. //PDO_SQLSRV returns -1 for successful inserts when using INSERT ... OUTPUT
  2863. if (!$this->connection->driver() instanceof \Cake\Database\Driver\Sqlserver) {
  2864. $this->assertCount(2, $result, '2 rows should be inserted');
  2865. }
  2866. $expected = [
  2867. [
  2868. 'id' => 4,
  2869. 'author_id' => null,
  2870. 'title' => null,
  2871. 'body' => 'test insert',
  2872. 'published' => 'N',
  2873. ],
  2874. [
  2875. 'id' => 5,
  2876. 'author_id' => null,
  2877. 'title' => 'jose',
  2878. 'body' => null,
  2879. 'published' => 'N',
  2880. ],
  2881. ];
  2882. $this->assertTable('articles', 2, $expected, ['id >=' => 4]);
  2883. }
  2884. /**
  2885. * Test that INSERT INTO ... SELECT works.
  2886. *
  2887. * @return void
  2888. */
  2889. public function testInsertFromSelect()
  2890. {
  2891. $this->loadFixtures('Authors', 'Articles');
  2892. $select = (new Query($this->connection))->select(['name', "'some text'", 99])
  2893. ->from('authors')
  2894. ->where(['id' => 1]);
  2895. $query = new Query($this->connection);
  2896. $query->insert(
  2897. ['title', 'body', 'author_id'],
  2898. ['title' => 'string', 'body' => 'string', 'author_id' => 'integer']
  2899. )
  2900. ->into('articles')
  2901. ->values($select);
  2902. $result = $query->sql();
  2903. $this->assertQuotedQuery(
  2904. 'INSERT INTO <articles> \(<title>, <body>, <author_id>\) (OUTPUT INSERTED\.\* )?SELECT',
  2905. $result,
  2906. !$this->autoQuote
  2907. );
  2908. $this->assertQuotedQuery(
  2909. 'SELECT <name>, \'some text\', 99 FROM <authors>',
  2910. $result,
  2911. !$this->autoQuote
  2912. );
  2913. $result = $query->execute();
  2914. $result->closeCursor();
  2915. //PDO_SQLSRV returns -1 for successful inserts when using INSERT ... OUTPUT
  2916. if (!$this->connection->driver() instanceof \Cake\Database\Driver\Sqlserver) {
  2917. $this->assertCount(1, $result);
  2918. }
  2919. $result = (new Query($this->connection))->select('*')
  2920. ->from('articles')
  2921. ->where(['author_id' => 99])
  2922. ->execute();
  2923. $this->assertCount(1, $result);
  2924. $expected = [
  2925. 'id' => 4,
  2926. 'title' => 'mariano',
  2927. 'body' => 'some text',
  2928. 'author_id' => 99,
  2929. 'published' => 'N',
  2930. ];
  2931. $this->assertEquals($expected, $result->fetch('assoc'));
  2932. }
  2933. /**
  2934. * Test that an exception is raised when mixing query + array types.
  2935. *
  2936. * @expectedException \Cake\Database\Exception
  2937. */
  2938. public function testInsertFailureMixingTypesArrayFirst()
  2939. {
  2940. $this->loadFixtures('Articles');
  2941. $query = new Query($this->connection);
  2942. $query->insert(['name'])
  2943. ->into('articles')
  2944. ->values(['name' => 'mark'])
  2945. ->values(new Query($this->connection));
  2946. }
  2947. /**
  2948. * Test that an exception is raised when mixing query + array types.
  2949. *
  2950. * @expectedException \Cake\Database\Exception
  2951. */
  2952. public function testInsertFailureMixingTypesQueryFirst()
  2953. {
  2954. $this->loadFixtures('Articles');
  2955. $query = new Query($this->connection);
  2956. $query->insert(['name'])
  2957. ->into('articles')
  2958. ->values(new Query($this->connection))
  2959. ->values(['name' => 'mark']);
  2960. }
  2961. /**
  2962. * Test that insert can use expression objects as values.
  2963. *
  2964. * @return void
  2965. */
  2966. public function testInsertExpressionValues()
  2967. {
  2968. $this->loadFixtures('Articles', 'Authors');
  2969. $query = new Query($this->connection);
  2970. $query->insert(['title', 'author_id'])
  2971. ->into('articles')
  2972. ->values(['title' => $query->newExpr("SELECT 'jose'"), 'author_id' => 99]);
  2973. $result = $query->execute();
  2974. $result->closeCursor();
  2975. //PDO_SQLSRV returns -1 for successful inserts when using INSERT ... OUTPUT
  2976. if (!$this->connection->driver() instanceof \Cake\Database\Driver\Sqlserver) {
  2977. $this->assertCount(1, $result);
  2978. }
  2979. $result = (new Query($this->connection))->select('*')
  2980. ->from('articles')
  2981. ->where(['author_id' => 99])
  2982. ->execute();
  2983. $this->assertCount(1, $result);
  2984. $expected = [
  2985. 'id' => 4,
  2986. 'title' => 'jose',
  2987. 'body' => null,
  2988. 'author_id' => '99',
  2989. 'published' => 'N',
  2990. ];
  2991. $this->assertEquals($expected, $result->fetch('assoc'));
  2992. $subquery = new Query($this->connection);
  2993. $subquery->select(['name'])
  2994. ->from('authors')
  2995. ->where(['id' => 1]);
  2996. $query = new Query($this->connection);
  2997. $query->insert(['title', 'author_id'])
  2998. ->into('articles')
  2999. ->values(['title' => $subquery, 'author_id' => 100]);
  3000. $result = $query->execute();
  3001. $result->closeCursor();
  3002. //PDO_SQLSRV returns -1 for successful inserts when using INSERT ... OUTPUT
  3003. if (!$this->connection->driver() instanceof \Cake\Database\Driver\Sqlserver) {
  3004. $this->assertCount(1, $result);
  3005. }
  3006. $result = (new Query($this->connection))->select('*')
  3007. ->from('articles')
  3008. ->where(['author_id' => 100])
  3009. ->execute();
  3010. $this->assertCount(1, $result);
  3011. $expected = [
  3012. 'id' => 5,
  3013. 'title' => 'mariano',
  3014. 'body' => null,
  3015. 'author_id' => '100',
  3016. 'published' => 'N',
  3017. ];
  3018. $this->assertEquals($expected, $result->fetch('assoc'));
  3019. }
  3020. /**
  3021. * Tests that functions are correctly transformed and their parameters are bound
  3022. *
  3023. * @group FunctionExpression
  3024. * @return void
  3025. */
  3026. public function testSQLFunctions()
  3027. {
  3028. $this->loadFixtures('Comments');
  3029. $query = new Query($this->connection);
  3030. $result = $query->select(
  3031. function ($q) {
  3032. return ['total' => $q->func()->count('*')];
  3033. }
  3034. )
  3035. ->from('comments')
  3036. ->execute();
  3037. $expected = [['total' => 6]];
  3038. $this->assertEquals($expected, $result->fetchAll('assoc'));
  3039. $query = new Query($this->connection);
  3040. $result = $query->select([
  3041. 'c' => $query->func()->concat(['comment' => 'literal', ' is appended'])
  3042. ])
  3043. ->from('comments')
  3044. ->order(['c' => 'ASC'])
  3045. ->limit(1)
  3046. ->execute();
  3047. $expected = [
  3048. ['c' => 'First Comment for First Article is appended'],
  3049. ];
  3050. $this->assertEquals($expected, $result->fetchAll('assoc'));
  3051. $query = new Query($this->connection);
  3052. $result = $query
  3053. ->select(['d' => $query->func()->dateDiff(['2012-01-05', '2012-01-02'])])
  3054. ->execute()
  3055. ->fetchAll('assoc');
  3056. $this->assertEquals(3, abs($result[0]['d']));
  3057. $query = new Query($this->connection);
  3058. $result = $query
  3059. ->select(['d' => $query->func()->now('date')])
  3060. ->execute();
  3061. $this->assertEquals([['d' => date('Y-m-d')]], $result->fetchAll('assoc'));
  3062. $query = new Query($this->connection);
  3063. $result = $query
  3064. ->select(['d' => $query->func()->now('time')])
  3065. ->execute();
  3066. $this->assertWithinRange(
  3067. date('U'),
  3068. (new \DateTime($result->fetchAll('assoc')[0]['d']))->format('U'),
  3069. 1
  3070. );
  3071. $query = new Query($this->connection);
  3072. $result = $query
  3073. ->select(['d' => $query->func()->now()])
  3074. ->execute();
  3075. $this->assertWithinRange(
  3076. date('U'),
  3077. (new \DateTime($result->fetchAll('assoc')[0]['d']))->format('U'),
  3078. 1
  3079. );
  3080. $query = new Query($this->connection);
  3081. $result = $query
  3082. ->select([
  3083. 'd' => $query->func()->datePart('day', 'created'),
  3084. 'm' => $query->func()->datePart('month', 'created'),
  3085. 'y' => $query->func()->datePart('year', 'created'),
  3086. 'de' => $query->func()->extract('day', 'created'),
  3087. 'me' => $query->func()->extract('month', 'created'),
  3088. 'ye' => $query->func()->extract('year', 'created'),
  3089. 'wd' => $query->func()->weekday('created'),
  3090. 'dow' => $query->func()->dayOfWeek('created'),
  3091. 'addDays' => $query->func()->dateAdd('created', 2, 'day'),
  3092. 'substractYears' => $query->func()->dateAdd('created', -2, 'year')
  3093. ])
  3094. ->from('comments')
  3095. ->where(['created' => '2007-03-18 10:45:23'])
  3096. ->execute()
  3097. ->fetchAll('assoc');
  3098. $result[0]['m'] = ltrim($result[0]['m'], '0');
  3099. $result[0]['me'] = ltrim($result[0]['me'], '0');
  3100. $result[0]['addDays'] = substr($result[0]['addDays'], 0, 10);
  3101. $result[0]['substractYears'] = substr($result[0]['substractYears'], 0, 10);
  3102. $expected = [
  3103. 'd' => '18',
  3104. 'm' => '3',
  3105. 'y' => '2007',
  3106. 'de' => '18',
  3107. 'me' => '3',
  3108. 'ye' => '2007',
  3109. 'wd' => '1', // Sunday
  3110. 'dow' => '1',
  3111. 'addDays' => '2007-03-20',
  3112. 'substractYears' => '2005-03-18'
  3113. ];
  3114. $this->assertEquals($expected, $result[0]);
  3115. }
  3116. /**
  3117. * Tests that default types are passed to functions accepting a $types param
  3118. *
  3119. * @return void
  3120. */
  3121. public function testDefaultTypes()
  3122. {
  3123. $this->loadFixtures('Comments');
  3124. $query = new Query($this->connection);
  3125. $this->assertEquals([], $query->defaultTypes());
  3126. $types = ['id' => 'integer', 'created' => 'datetime'];
  3127. $this->assertSame($query, $query->defaultTypes($types));
  3128. $this->assertSame($types, $query->defaultTypes());
  3129. $results = $query->select(['id', 'comment'])
  3130. ->from('comments')
  3131. ->where(['created >=' => new \DateTime('2007-03-18 10:55:00')])
  3132. ->execute();
  3133. $expected = [['id' => '6', 'comment' => 'Second Comment for Second Article']];
  3134. $this->assertEquals($expected, $results->fetchAll('assoc'));
  3135. // Now test default can be overridden
  3136. $types = ['created' => 'date'];
  3137. $results = $query
  3138. ->where(['created >=' => new \DateTime('2007-03-18 10:50:00')], $types, true)
  3139. ->execute();
  3140. $this->assertCount(6, $results, 'All 6 rows should match.');
  3141. }
  3142. /**
  3143. * Tests parameter binding
  3144. *
  3145. * @return void
  3146. */
  3147. public function testBind()
  3148. {
  3149. $this->loadFixtures('Comments');
  3150. $query = new Query($this->connection);
  3151. $results = $query->select(['id', 'comment'])
  3152. ->from('comments')
  3153. ->where(['created BETWEEN :foo AND :bar'])
  3154. ->bind(':foo', new \DateTime('2007-03-18 10:50:00'), 'datetime')
  3155. ->bind(':bar', new \DateTime('2007-03-18 10:52:00'), 'datetime')
  3156. ->execute();
  3157. $expected = [['id' => '4', 'comment' => 'Fourth Comment for First Article']];
  3158. $this->assertEquals($expected, $results->fetchAll('assoc'));
  3159. $query = new Query($this->connection);
  3160. $results = $query->select(['id', 'comment'])
  3161. ->from('comments')
  3162. ->where(['created BETWEEN :foo AND :bar'])
  3163. ->bind(':foo', '2007-03-18 10:50:00')
  3164. ->bind(':bar', '2007-03-18 10:52:00')
  3165. ->execute();
  3166. $this->assertEquals($expected, $results->fetchAll('assoc'));
  3167. }
  3168. /**
  3169. * Test that epilog() will actually append a string to a select query
  3170. *
  3171. * @return void
  3172. */
  3173. public function testAppendSelect()
  3174. {
  3175. $this->loadFixtures('Articles');
  3176. $query = new Query($this->connection);
  3177. $sql = $query
  3178. ->select(['id', 'title'])
  3179. ->from('articles')
  3180. ->where(['id' => 1])
  3181. ->epilog('FOR UPDATE')
  3182. ->sql();
  3183. $this->assertContains('SELECT', $sql);
  3184. $this->assertContains('FROM', $sql);
  3185. $this->assertContains('WHERE', $sql);
  3186. $this->assertEquals(' FOR UPDATE', substr($sql, -11));
  3187. }
  3188. /**
  3189. * Test that epilog() will actually append a string to an insert query
  3190. *
  3191. * @return void
  3192. */
  3193. public function testAppendInsert()
  3194. {
  3195. $query = new Query($this->connection);
  3196. $sql = $query
  3197. ->insert(['id', 'title'])
  3198. ->into('articles')
  3199. ->values([1, 'a title'])
  3200. ->epilog('RETURNING id')
  3201. ->sql();
  3202. $this->assertContains('INSERT', $sql);
  3203. $this->assertContains('INTO', $sql);
  3204. $this->assertContains('VALUES', $sql);
  3205. $this->assertEquals(' RETURNING id', substr($sql, -13));
  3206. }
  3207. /**
  3208. * Test that epilog() will actually append a string to an update query
  3209. *
  3210. * @return void
  3211. */
  3212. public function testAppendUpdate()
  3213. {
  3214. $query = new Query($this->connection);
  3215. $sql = $query
  3216. ->update('articles')
  3217. ->set(['title' => 'foo'])
  3218. ->where(['id' => 1])
  3219. ->epilog('RETURNING id')
  3220. ->sql();
  3221. $this->assertContains('UPDATE', $sql);
  3222. $this->assertContains('SET', $sql);
  3223. $this->assertContains('WHERE', $sql);
  3224. $this->assertEquals(' RETURNING id', substr($sql, -13));
  3225. }
  3226. /**
  3227. * Test that epilog() will actually append a string to a delete query
  3228. *
  3229. * @return void
  3230. */
  3231. public function testAppendDelete()
  3232. {
  3233. $query = new Query($this->connection);
  3234. $sql = $query
  3235. ->delete('articles')
  3236. ->where(['id' => 1])
  3237. ->epilog('RETURNING id')
  3238. ->sql();
  3239. $this->assertContains('DELETE FROM', $sql);
  3240. $this->assertContains('WHERE', $sql);
  3241. $this->assertEquals(' RETURNING id', substr($sql, -13));
  3242. }
  3243. /**
  3244. * Tests automatic identifier quoting in the select clause
  3245. *
  3246. * @return void
  3247. */
  3248. public function testQuotingSelectFieldsAndAlias()
  3249. {
  3250. $this->connection->driver()->autoQuoting(true);
  3251. $query = new Query($this->connection);
  3252. $sql = $query->select(['something'])->sql();
  3253. $this->assertQuotedQuery('SELECT <something>$', $sql);
  3254. $query = new Query($this->connection);
  3255. $sql = $query->select(['foo' => 'something'])->sql();
  3256. $this->assertQuotedQuery('SELECT <something> AS <foo>$', $sql);
  3257. $query = new Query($this->connection);
  3258. $sql = $query->select(['foo' => 1])->sql();
  3259. $this->assertQuotedQuery('SELECT 1 AS <foo>$', $sql);
  3260. $query = new Query($this->connection);
  3261. $sql = $query->select(['foo' => '1 + 1'])->sql();
  3262. $this->assertQuotedQuery('SELECT <1 \+ 1> AS <foo>$', $sql);
  3263. $query = new Query($this->connection);
  3264. $sql = $query->select(['foo' => $query->newExpr('1 + 1')])->sql();
  3265. $this->assertQuotedQuery('SELECT \(1 \+ 1\) AS <foo>$', $sql);
  3266. $query = new Query($this->connection);
  3267. $sql = $query->select(['foo' => new IdentifierExpression('bar')])->sql();
  3268. $this->assertQuotedQuery('<bar>', $sql);
  3269. }
  3270. /**
  3271. * Tests automatic identifier quoting in the from clause
  3272. *
  3273. * @return void
  3274. */
  3275. public function testQuotingFromAndAlias()
  3276. {
  3277. $this->connection->driver()->autoQuoting(true);
  3278. $query = new Query($this->connection);
  3279. $sql = $query->select('*')->from(['something'])->sql();
  3280. $this->assertQuotedQuery('FROM <something>', $sql);
  3281. $query = new Query($this->connection);
  3282. $sql = $query->select('*')->from(['foo' => 'something'])->sql();
  3283. $this->assertQuotedQuery('FROM <something> <foo>$', $sql);
  3284. $query = new Query($this->connection);
  3285. $sql = $query->select('*')->from(['foo' => $query->newExpr('bar')])->sql();
  3286. $this->assertQuotedQuery('FROM \(bar\) <foo>$', $sql);
  3287. }
  3288. /**
  3289. * Tests automatic identifier quoting for DISTINCT ON
  3290. *
  3291. * @return void
  3292. */
  3293. public function testQuotingDistinctOn()
  3294. {
  3295. $this->connection->driver()->autoQuoting(true);
  3296. $query = new Query($this->connection);
  3297. $sql = $query->select('*')->distinct(['something'])->sql();
  3298. $this->assertQuotedQuery('<something>', $sql);
  3299. }
  3300. /**
  3301. * Tests automatic identifier quoting in the join clause
  3302. *
  3303. * @return void
  3304. */
  3305. public function testQuotingJoinsAndAlias()
  3306. {
  3307. $this->connection->driver()->autoQuoting(true);
  3308. $query = new Query($this->connection);
  3309. $sql = $query->select('*')->join(['something'])->sql();
  3310. $this->assertQuotedQuery('JOIN <something>', $sql);
  3311. $query = new Query($this->connection);
  3312. $sql = $query->select('*')->join(['foo' => 'something'])->sql();
  3313. $this->assertQuotedQuery('JOIN <something> <foo>', $sql);
  3314. $query = new Query($this->connection);
  3315. $sql = $query->select('*')->join(['foo' => $query->newExpr('bar')])->sql();
  3316. $this->assertQuotedQuery('JOIN \(bar\) <foo>', $sql);
  3317. }
  3318. /**
  3319. * Tests automatic identifier quoting in the group by clause
  3320. *
  3321. * @return void
  3322. */
  3323. public function testQuotingGroupBy()
  3324. {
  3325. $this->connection->driver()->autoQuoting(true);
  3326. $query = new Query($this->connection);
  3327. $sql = $query->select('*')->group(['something'])->sql();
  3328. $this->assertQuotedQuery('GROUP BY <something>', $sql);
  3329. $query = new Query($this->connection);
  3330. $sql = $query->select('*')->group([$query->newExpr('bar')])->sql();
  3331. $this->assertQuotedQuery('GROUP BY \(bar\)', $sql);
  3332. $query = new Query($this->connection);
  3333. $sql = $query->select('*')->group([new IdentifierExpression('bar')])->sql();
  3334. $this->assertQuotedQuery('GROUP BY \(<bar>\)', $sql);
  3335. }
  3336. /**
  3337. * Tests automatic identifier quoting strings inside conditions expressions
  3338. *
  3339. * @return void
  3340. */
  3341. public function testQuotingExpressions()
  3342. {
  3343. $this->connection->driver()->autoQuoting(true);
  3344. $query = new Query($this->connection);
  3345. $sql = $query->select('*')
  3346. ->where(['something' => 'value'])
  3347. ->sql();
  3348. $this->assertQuotedQuery('WHERE <something> = :c0', $sql);
  3349. $query = new Query($this->connection);
  3350. $sql = $query->select('*')
  3351. ->where([
  3352. 'something' => 'value',
  3353. 'OR' => ['foo' => 'bar', 'baz' => 'cake']
  3354. ])
  3355. ->sql();
  3356. $this->assertQuotedQuery('<something> = :c0 AND', $sql);
  3357. $this->assertQuotedQuery('\(<foo> = :c1 OR <baz> = :c2\)', $sql);
  3358. }
  3359. /**
  3360. * Tests that insert query parts get quoted automatically
  3361. *
  3362. * @return void
  3363. */
  3364. public function testQuotingInsert()
  3365. {
  3366. $this->connection->driver()->autoQuoting(true);
  3367. $query = new Query($this->connection);
  3368. $sql = $query->insert(['bar', 'baz'])
  3369. ->into('foo')
  3370. ->where(['something' => 'value'])
  3371. ->sql();
  3372. $this->assertQuotedQuery('INSERT INTO <foo> \(<bar>, <baz>\)', $sql);
  3373. $query = new Query($this->connection);
  3374. $sql = $query->insert([$query->newExpr('bar')])
  3375. ->into('foo')
  3376. ->where(['something' => 'value'])
  3377. ->sql();
  3378. $this->assertQuotedQuery('INSERT INTO <foo> \(\(bar\)\)', $sql);
  3379. }
  3380. /**
  3381. * Tests converting a query to a string
  3382. *
  3383. * @return void
  3384. */
  3385. public function testToString()
  3386. {
  3387. $query = new Query($this->connection);
  3388. $query
  3389. ->select(['title'])
  3390. ->from('articles');
  3391. $result = (string)$query;
  3392. $this->assertQuotedQuery('SELECT <title> FROM <articles>', $result, !$this->autoQuote);
  3393. }
  3394. /**
  3395. * Tests __debugInfo
  3396. *
  3397. * @return void
  3398. */
  3399. public function testDebugInfo()
  3400. {
  3401. $query = (new Query($this->connection))->select('*')
  3402. ->from('articles')
  3403. ->defaultTypes(['id' => 'integer'])
  3404. ->where(['id' => '1']);
  3405. $expected = [
  3406. '(help)' => 'This is a Query object, to get the results execute or iterate it.',
  3407. 'sql' => $query->sql(),
  3408. 'params' => [
  3409. ':c0' => ['value' => '1', 'type' => 'integer', 'placeholder' => 'c0']
  3410. ],
  3411. 'defaultTypes' => ['id' => 'integer'],
  3412. 'decorators' => 0,
  3413. 'executed' => false
  3414. ];
  3415. $result = $query->__debugInfo();
  3416. $this->assertEquals($expected, $result);
  3417. $query->execute();
  3418. $expected = [
  3419. '(help)' => 'This is a Query object, to get the results execute or iterate it.',
  3420. 'sql' => $query->sql(),
  3421. 'params' => [
  3422. ':c0' => ['value' => '1', 'type' => 'integer', 'placeholder' => 'c0']
  3423. ],
  3424. 'defaultTypes' => ['id' => 'integer'],
  3425. 'decorators' => 0,
  3426. 'executed' => true
  3427. ];
  3428. $result = $query->__debugInfo();
  3429. $this->assertEquals($expected, $result);
  3430. }
  3431. /**
  3432. * Tests __debugInfo on incomplete query
  3433. *
  3434. * @return void
  3435. */
  3436. public function testDebugInfoIncompleteQuery()
  3437. {
  3438. $query = (new Query($this->connection))
  3439. ->insert(['title']);
  3440. $result = $query->__debugInfo();
  3441. $this->assertContains('incomplete', $result['sql']);
  3442. $this->assertSame([], $result['params']);
  3443. }
  3444. /**
  3445. * Tests that it is possible to pass ExpressionInterface to isNull and isNotNull
  3446. *
  3447. * @return void
  3448. */
  3449. public function testIsNullWithExpressions()
  3450. {
  3451. $this->loadFixtures('Authors');
  3452. $query = new Query($this->connection);
  3453. $subquery = (new Query($this->connection))
  3454. ->select(['id'])
  3455. ->from('authors')
  3456. ->where(['id' => 1]);
  3457. $result = $query
  3458. ->select(['name'])
  3459. ->from(['authors'])
  3460. ->where(function ($exp) use ($subquery) {
  3461. return $exp->isNotNull($subquery);
  3462. })
  3463. ->execute();
  3464. $this->assertNotEmpty($result->fetchAll('assoc'));
  3465. $result = (new Query($this->connection))
  3466. ->select(['name'])
  3467. ->from(['authors'])
  3468. ->where(function ($exp) use ($subquery) {
  3469. return $exp->isNull($subquery);
  3470. })
  3471. ->execute();
  3472. $this->assertEmpty($result->fetchAll('assoc'));
  3473. }
  3474. /**
  3475. * Tests that strings passed to isNull and isNotNull will be treated as identifiers
  3476. * when using autoQuoting
  3477. *
  3478. * @return void
  3479. */
  3480. public function testIsNullAutoQuoting()
  3481. {
  3482. $this->connection->driver()->autoQuoting(true);
  3483. $query = new Query($this->connection);
  3484. $query->select('*')->from('things')->where(function ($exp) {
  3485. return $exp->isNull('field');
  3486. });
  3487. $this->assertQuotedQuery('WHERE \(<field>\) IS NULL', $query->sql());
  3488. $query = new Query($this->connection);
  3489. $query->select('*')->from('things')->where(function ($exp) {
  3490. return $exp->isNotNull('field');
  3491. });
  3492. $this->assertQuotedQuery('WHERE \(<field>\) IS NOT NULL', $query->sql());
  3493. }
  3494. /**
  3495. * Tests that using the IS operator will automatically translate to the best
  3496. * possible operator depending on the passed value
  3497. *
  3498. * @return void
  3499. */
  3500. public function testDirectIsNull()
  3501. {
  3502. $this->loadFixtures('Authors');
  3503. $sql = (new Query($this->connection))
  3504. ->select(['name'])
  3505. ->from(['authors'])
  3506. ->where(['name IS' => null])
  3507. ->sql();
  3508. $this->assertQuotedQuery('WHERE \(<name>\) IS NULL', $sql, !$this->autoQuote);
  3509. $results = (new Query($this->connection))
  3510. ->select(['name'])
  3511. ->from(['authors'])
  3512. ->where(['name IS' => 'larry'])
  3513. ->execute();
  3514. $this->assertCount(1, $results);
  3515. $this->assertEquals(['name' => 'larry'], $results->fetch('assoc'));
  3516. }
  3517. /**
  3518. * Tests that using the IS NOT operator will automatically translate to the best
  3519. * possible operator depending on the passed value
  3520. *
  3521. * @return void
  3522. */
  3523. public function testDirectIsNotNull()
  3524. {
  3525. $this->loadFixtures('Authors');
  3526. $sql = (new Query($this->connection))
  3527. ->select(['name'])
  3528. ->from(['authors'])
  3529. ->where(['name IS NOT' => null])
  3530. ->sql();
  3531. $this->assertQuotedQuery('WHERE \(<name>\) IS NOT NULL', $sql, !$this->autoQuote);
  3532. $results = (new Query($this->connection))
  3533. ->select(['name'])
  3534. ->from(['authors'])
  3535. ->where(['name IS NOT' => 'larry'])
  3536. ->execute();
  3537. $this->assertCount(3, $results);
  3538. $this->assertNotEquals(['name' => 'larry'], $results->fetch('assoc'));
  3539. }
  3540. /**
  3541. * Performs the simple update query and verifies the row count.
  3542. *
  3543. * @return void
  3544. */
  3545. public function testRowCountAndClose()
  3546. {
  3547. $this->loadFixtures('Authors');
  3548. $statementMock = $this->getMockBuilder(StatementInterface::class)
  3549. ->setMethods(['rowCount', 'closeCursor'])
  3550. ->getMockForAbstractClass();
  3551. $statementMock->expects($this->once())
  3552. ->method('rowCount')
  3553. ->willReturn(500);
  3554. $statementMock->expects($this->once())
  3555. ->method('closeCursor');
  3556. /* @var \Cake\ORM\Query|\PHPUnit_Framework_MockObject_MockObject $queryMock */
  3557. $queryMock = $this->getMockBuilder(Query::class)
  3558. ->setMethods(['execute'])
  3559. ->setConstructorArgs((array)$this->connection)
  3560. ->getMock();
  3561. $queryMock->expects($this->once())
  3562. ->method('execute')
  3563. ->willReturn($statementMock);
  3564. $rowCount = $queryMock->update('authors')
  3565. ->set('name', 'mark')
  3566. ->where(['id' => 1])
  3567. ->rowCountAndClose();
  3568. $this->assertEquals(500, $rowCount);
  3569. }
  3570. /**
  3571. * Tests that case statements work correctly for various use-cases.
  3572. *
  3573. * @return void
  3574. */
  3575. public function testSqlCaseStatement()
  3576. {
  3577. $this->loadFixtures('Comments');
  3578. $query = new Query($this->connection);
  3579. $publishedCase = $query
  3580. ->newExpr()
  3581. ->addCase(
  3582. $query
  3583. ->newExpr()
  3584. ->add(['published' => 'Y']),
  3585. 1,
  3586. 'integer'
  3587. );
  3588. $notPublishedCase = $query
  3589. ->newExpr()
  3590. ->addCase(
  3591. $query
  3592. ->newExpr()
  3593. ->add(['published' => 'N']),
  3594. 1,
  3595. 'integer'
  3596. );
  3597. //Postgres requires the case statement to be cast to a integer
  3598. if ($this->connection->driver() instanceof \Cake\Database\Driver\Postgres) {
  3599. $publishedCase = $query->func()->cast([$publishedCase, 'integer' => 'literal'])->type(' AS ');
  3600. $notPublishedCase = $query->func()->cast([$notPublishedCase, 'integer' => 'literal'])->type(' AS ');
  3601. }
  3602. $results = $query
  3603. ->select([
  3604. 'published' => $query->func()->sum($publishedCase),
  3605. 'not_published' => $query->func()->sum($notPublishedCase)
  3606. ])
  3607. ->from(['comments'])
  3608. ->execute()
  3609. ->fetchAll('assoc');
  3610. $this->assertEquals(5, $results[0]['published']);
  3611. $this->assertEquals(1, $results[0]['not_published']);
  3612. $query = new Query($this->connection);
  3613. $query
  3614. ->insert(['article_id', 'user_id', 'comment', 'published'])
  3615. ->into('comments')
  3616. ->values([
  3617. 'article_id' => 2,
  3618. 'user_id' => 1,
  3619. 'comment' => 'In limbo',
  3620. 'published' => 'L'
  3621. ])
  3622. ->execute()
  3623. ->closeCursor();
  3624. $query = new Query($this->connection);
  3625. $conditions = [
  3626. $query
  3627. ->newExpr()
  3628. ->add(['published' => 'Y']),
  3629. $query
  3630. ->newExpr()
  3631. ->add(['published' => 'N'])
  3632. ];
  3633. $values = [
  3634. 'Published',
  3635. 'Not published',
  3636. 'None'
  3637. ];
  3638. $results = $query
  3639. ->select([
  3640. 'id',
  3641. 'comment',
  3642. 'status' => $query->newExpr()->addCase($conditions, $values)
  3643. ])
  3644. ->from(['comments'])
  3645. ->execute()
  3646. ->fetchAll('assoc');
  3647. $this->assertEquals('Published', $results[2]['status']);
  3648. $this->assertEquals('Not published', $results[3]['status']);
  3649. $this->assertEquals('None', $results[6]['status']);
  3650. }
  3651. /**
  3652. * Shows that bufferResults(false) will prevent client-side results buffering
  3653. *
  3654. * @return void
  3655. */
  3656. public function testUnbufferedQuery()
  3657. {
  3658. $this->loadFixtures('Articles');
  3659. $query = new Query($this->connection);
  3660. $result = $query->select(['body', 'author_id'])
  3661. ->from('articles')
  3662. ->bufferResults(false)
  3663. ->execute();
  3664. if (!method_exists($result, 'bufferResults')) {
  3665. $result->closeCursor();
  3666. $this->markTestSkipped('This driver does not support unbuffered queries');
  3667. }
  3668. $this->assertCount(0, $result, 'Unbuffered queries only have a count when results are fetched');
  3669. $list = $result->fetchAll('assoc');
  3670. $this->assertCount(3, $list);
  3671. $result->closeCursor();
  3672. $query = new Query($this->connection);
  3673. $result = $query->select(['body', 'author_id'])
  3674. ->from('articles')
  3675. ->execute();
  3676. $this->assertCount(3, $result, 'Buffered queries can be counted any time.');
  3677. $list = $result->fetchAll('assoc');
  3678. $this->assertCount(3, $list);
  3679. $result->closeCursor();
  3680. }
  3681. /**
  3682. * Test that cloning goes deep.
  3683. *
  3684. * @return void
  3685. */
  3686. public function testDeepClone()
  3687. {
  3688. $this->loadFixtures('Articles');
  3689. $query = new Query($this->connection);
  3690. $query->select(['id', 'title' => $query->func()->concat(['title' => 'literal', 'test'])])
  3691. ->from('articles')
  3692. ->where(['Articles.id' => 1])
  3693. ->offset(10)
  3694. ->limit(1)
  3695. ->order(['Articles.id' => 'DESC']);
  3696. $dupe = clone $query;
  3697. $this->assertEquals($query->clause('where'), $dupe->clause('where'));
  3698. $this->assertNotSame($query->clause('where'), $dupe->clause('where'));
  3699. $dupe->where(['Articles.title' => 'thinger']);
  3700. $this->assertNotEquals($query->clause('where'), $dupe->clause('where'));
  3701. $this->assertNotSame(
  3702. $query->clause('select')['title'],
  3703. $dupe->clause('select')['title']
  3704. );
  3705. $this->assertEquals($query->clause('order'), $dupe->clause('order'));
  3706. $this->assertNotSame($query->clause('order'), $dupe->clause('order'));
  3707. $query->order(['Articles.title' => 'ASC']);
  3708. $this->assertNotEquals($query->clause('order'), $dupe->clause('order'));
  3709. $this->assertNotSame(
  3710. $query->selectTypeMap(),
  3711. $dupe->selectTypeMap()
  3712. );
  3713. }
  3714. /**
  3715. * Tests the selectTypeMap method
  3716. *
  3717. * @return void
  3718. */
  3719. public function testSelectTypeMap()
  3720. {
  3721. $query = new Query($this->connection);
  3722. $typeMap = $query->selectTypeMap();
  3723. $this->assertInstanceOf(TypeMap::class, $typeMap);
  3724. $another = clone $typeMap;
  3725. $query->selectTypeMap($another);
  3726. $this->assertSame($another, $query->selectTypeMap());
  3727. }
  3728. /**
  3729. * Tests the automatic type conversion for the fields in the result
  3730. *
  3731. * @return void
  3732. */
  3733. public function testSelectTypeConversion()
  3734. {
  3735. $this->loadFixtures('Comments');
  3736. $query = new Query($this->connection);
  3737. $query
  3738. ->select(['id', 'comment', 'the_date' => 'created'])
  3739. ->from('comments')
  3740. ->limit(1)
  3741. ->selectTypeMap()->types(['id' => 'integer', 'the_date' => 'datetime']);
  3742. $result = $query->execute()->fetchAll('assoc');
  3743. $this->assertInternalType('integer', $result[0]['id']);
  3744. $this->assertInstanceOf('DateTime', $result[0]['the_date']);
  3745. }
  3746. /**
  3747. * Tests that the json type can save and get data symmetrically
  3748. *
  3749. * @return void
  3750. */
  3751. public function testSymmetricJsonType()
  3752. {
  3753. $query = new Query($this->connection);
  3754. $insert = $query
  3755. ->insert(['comment', 'article_id', 'user_id'], ['comment' => 'json'])
  3756. ->into('comments')
  3757. ->values([
  3758. 'comment' => ['a' => 'b', 'c' => true],
  3759. 'article_id' => 1,
  3760. 'user_id' => 1
  3761. ])
  3762. ->execute();
  3763. $id = $insert->lastInsertId('comments', 'id');
  3764. $insert->closeCursor();
  3765. $query = new Query($this->connection);
  3766. $query
  3767. ->select(['comment'])
  3768. ->from('comments')
  3769. ->where(['id' => $id])
  3770. ->selectTypeMap()->types(['comment' => 'json']);
  3771. $result = $query->execute();
  3772. $comment = $result->fetchAll('assoc')[0]['comment'];
  3773. $result->closeCursor();
  3774. $this->assertSame(['a' => 'b', 'c' => true], $comment);
  3775. }
  3776. /**
  3777. * Test removeJoin().
  3778. *
  3779. * @return void
  3780. */
  3781. public function testRemoveJoin()
  3782. {
  3783. $this->loadFixtures('Articles');
  3784. $query = new Query($this->connection);
  3785. $query->select(['id', 'title'])
  3786. ->from('articles')
  3787. ->join(['authors' => [
  3788. 'type' => 'INNER',
  3789. 'conditions' => ['articles.author_id = authors.id']
  3790. ]]);
  3791. $this->assertArrayHasKey('authors', $query->join());
  3792. $this->assertSame($query, $query->removeJoin('authors'));
  3793. $this->assertArrayNotHasKey('authors', $query->join());
  3794. }
  3795. /**
  3796. * Tests that types in the type map are used in the
  3797. * specific comparison functions when using a callable
  3798. *
  3799. * @return void
  3800. */
  3801. public function testBetweenExpressionAndTypeMap()
  3802. {
  3803. $this->loadFixtures('Comments');
  3804. $query = new Query($this->connection);
  3805. $query->select('id')
  3806. ->from('comments')
  3807. ->defaultTypes(['created' => 'datetime'])
  3808. ->where(function ($expr) {
  3809. $from = new \DateTime('2007-03-18 10:45:00');
  3810. $to = new \DateTime('2007-03-18 10:48:00');
  3811. return $expr->between('created', $from, $to);
  3812. });
  3813. $this->assertCount(2, $query->execute()->fetchAll());
  3814. }
  3815. /**
  3816. * Test use of modifiers in a INSERT query
  3817. *
  3818. * Testing the generated SQL since the modifiers are usually different per driver
  3819. *
  3820. * @return void
  3821. */
  3822. public function testInsertModifiers()
  3823. {
  3824. $query = new Query($this->connection);
  3825. $result = $query
  3826. ->insert(['title'])
  3827. ->into('articles')
  3828. ->values(['title' => 'foo'])
  3829. ->modifier('IGNORE');
  3830. $this->assertQuotedQuery(
  3831. 'INSERT IGNORE INTO <articles> \(<title>\) (OUTPUT INSERTED\.\* )?',
  3832. $result->sql(),
  3833. !$this->autoQuote
  3834. );
  3835. $query = new Query($this->connection);
  3836. $result = $query
  3837. ->insert(['title'])
  3838. ->into('articles')
  3839. ->values(['title' => 'foo'])
  3840. ->modifier(['IGNORE', 'LOW_PRIORITY']);
  3841. $this->assertQuotedQuery(
  3842. 'INSERT IGNORE LOW_PRIORITY INTO <articles> \(<title>\) (OUTPUT INSERTED\.\* )?',
  3843. $result->sql(),
  3844. !$this->autoQuote
  3845. );
  3846. }
  3847. /**
  3848. * Test use of modifiers in a UPDATE query
  3849. *
  3850. * Testing the generated SQL since the modifiers are usually different per driver
  3851. *
  3852. * @return void
  3853. */
  3854. public function testUpdateModifiers()
  3855. {
  3856. $query = new Query($this->connection);
  3857. $result = $query
  3858. ->update('authors')
  3859. ->set('name', 'mark')
  3860. ->modifier('TOP 10 PERCENT');
  3861. $this->assertQuotedQuery(
  3862. 'UPDATE TOP 10 PERCENT <authors> SET <name> = :c0',
  3863. $result->sql(),
  3864. !$this->autoQuote
  3865. );
  3866. $query = new Query($this->connection);
  3867. $result = $query
  3868. ->update('authors')
  3869. ->set('name', 'mark')
  3870. ->modifier(['TOP 10 PERCENT', 'FOO']);
  3871. $this->assertQuotedQuery(
  3872. 'UPDATE TOP 10 PERCENT FOO <authors> SET <name> = :c0',
  3873. $result->sql(),
  3874. !$this->autoQuote
  3875. );
  3876. $query = new Query($this->connection);
  3877. $result = $query
  3878. ->update('authors')
  3879. ->set('name', 'mark')
  3880. ->modifier([$query->newExpr('TOP 10 PERCENT')]);
  3881. $this->assertQuotedQuery(
  3882. 'UPDATE TOP 10 PERCENT <authors> SET <name> = :c0',
  3883. $result->sql(),
  3884. !$this->autoQuote
  3885. );
  3886. }
  3887. /**
  3888. * Test use of modifiers in a DELETE query
  3889. *
  3890. * Testing the generated SQL since the modifiers are usually different per driver
  3891. *
  3892. * @return void
  3893. */
  3894. public function testDeleteModifiers()
  3895. {
  3896. $query = new Query($this->connection);
  3897. $result = $query->delete()
  3898. ->from('authors')
  3899. ->where('1 = 1')
  3900. ->modifier('IGNORE');
  3901. $this->assertQuotedQuery(
  3902. 'DELETE IGNORE FROM <authors> WHERE 1 = 1',
  3903. $result->sql(),
  3904. !$this->autoQuote
  3905. );
  3906. $query = new Query($this->connection);
  3907. $result = $query->delete()
  3908. ->from('authors')
  3909. ->where('1 = 1')
  3910. ->modifier(['IGNORE', 'QUICK']);
  3911. $this->assertQuotedQuery(
  3912. 'DELETE IGNORE QUICK FROM <authors> WHERE 1 = 1',
  3913. $result->sql(),
  3914. !$this->autoQuote
  3915. );
  3916. }
  3917. /**
  3918. * Tests that fetch returns an anonymous object when the string 'obj'
  3919. * is passed as an argument
  3920. *
  3921. * @return void
  3922. */
  3923. public function testSelectWithObjFetchType()
  3924. {
  3925. $this->loadFixtures('Comments');
  3926. $query = new Query($this->connection);
  3927. $result = $query
  3928. ->select(['id'])
  3929. ->from('comments')
  3930. ->where(['id' => '1'])
  3931. ->execute();
  3932. $obj = (object)['id' => 1];
  3933. $this->assertEquals($obj, $result->fetch('obj'));
  3934. $query = new Query($this->connection);
  3935. $result = $query
  3936. ->select(['id'])
  3937. ->from('comments')
  3938. ->where(['id' => '1'])
  3939. ->execute();
  3940. $rows = $result->fetchAll('obj');
  3941. $this->assertEquals($obj, $rows[0]);
  3942. }
  3943. /**
  3944. * Test getValueBinder()
  3945. *
  3946. * @return void
  3947. */
  3948. public function testGetValueBinder()
  3949. {
  3950. $query = new Query($this->connection);
  3951. $this->assertInstanceOf('\Cake\Database\ValueBinder', $query->getValueBinder());
  3952. }
  3953. /**
  3954. * Test that reading an undefined clause does not emit an error.
  3955. *
  3956. * @expectedException \InvalidArgumentException
  3957. * @expectedExceptionMessage The 'nope' clause is not defined. Valid clauses are: delete, update
  3958. * @return void
  3959. */
  3960. public function testClauseUndefined()
  3961. {
  3962. $query = new Query($this->connection);
  3963. $this->assertEmpty($query->clause('where'));
  3964. $query->clause('nope');
  3965. }
  3966. /**
  3967. * Assertion for comparing a table's contents with what is in it.
  3968. *
  3969. * @param string $table
  3970. * @param int $count
  3971. * @param array $rows
  3972. * @param array $conditions
  3973. * @return void
  3974. */
  3975. public function assertTable($table, $count, $rows, $conditions = [])
  3976. {
  3977. $result = (new Query($this->connection))->select('*')
  3978. ->from($table)
  3979. ->where($conditions)
  3980. ->execute();
  3981. $this->assertCount($count, $result, 'Row count is incorrect');
  3982. $this->assertEquals($rows, $result->fetchAll('assoc'));
  3983. $result->closeCursor();
  3984. }
  3985. /**
  3986. * Assertion for comparing a regex pattern against a query having its identifiers
  3987. * quoted. It accepts queries quoted with the characters `<` and `>`. If the third
  3988. * parameter is set to true, it will alter the pattern to both accept quoted and
  3989. * unquoted queries
  3990. *
  3991. * @param string $pattern
  3992. * @param string $query the result to compare against
  3993. * @param bool $optional
  3994. * @return void
  3995. */
  3996. public function assertQuotedQuery($pattern, $query, $optional = false)
  3997. {
  3998. if ($optional) {
  3999. $optional = '?';
  4000. }
  4001. $pattern = str_replace('<', '[`"\[]' . $optional, $pattern);
  4002. $pattern = str_replace('>', '[`"\]]' . $optional, $pattern);
  4003. $this->assertRegExp('#' . $pattern . '#', $query);
  4004. }
  4005. }