123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564 |
- <?php
- /**
- * SetTest file
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
- * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
- * @package Cake.Test.Case.Utility
- * @since CakePHP(tm) v 1.2.0.4206
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('Set', 'Utility');
- App::uses('Model', 'Model');
- /**
- * SetTest class
- *
- * @package Cake.Test.Case.Utility
- */
- class SetTest extends CakeTestCase {
- /**
- * testNumericKeyExtraction method
- *
- * @return void
- */
- public function testNumericKeyExtraction() {
- $data = array('plugin' => null, 'controller' => '', 'action' => '', 1, 'whatever');
- $this->assertEquals(array(1, 'whatever'), Set::extract($data, '{n}'));
- $this->assertEquals(array('plugin' => null, 'controller' => '', 'action' => ''), Set::diff($data, Set::extract($data, '{n}')));
- }
- /**
- * testEnum method
- *
- * @return void
- */
- public function testEnum() {
- $result = Set::enum(1, 'one, two');
- $this->assertEquals('two', $result);
- $result = Set::enum(2, 'one, two');
- $this->assertNull($result);
- $set = array('one', 'two');
- $result = Set::enum(0, $set);
- $this->assertEquals('one', $result);
- $result = Set::enum(1, $set);
- $this->assertEquals('two', $result);
- $result = Set::enum(1, array('one', 'two'));
- $this->assertEquals('two', $result);
- $result = Set::enum(2, array('one', 'two'));
- $this->assertNull($result);
- $result = Set::enum('first', array('first' => 'one', 'second' => 'two'));
- $this->assertEquals('one', $result);
- $result = Set::enum('third', array('first' => 'one', 'second' => 'two'));
- $this->assertNull($result);
- $result = Set::enum('no', array('no' => 0, 'yes' => 1));
- $this->assertEquals(0, $result);
- $result = Set::enum('not sure', array('no' => 0, 'yes' => 1));
- $this->assertNull($result);
- $result = Set::enum(0);
- $this->assertEquals('no', $result);
- $result = Set::enum(1);
- $this->assertEquals('yes', $result);
- $result = Set::enum(2);
- $this->assertNull($result);
- }
- /**
- * testFilter method
- *
- * @see Hash test cases, as Set::filter() is just a proxy.
- * @return void
- */
- public function testFilter() {
- $result = Set::filter(array('0', false, true, 0, array('one thing', 'I can tell you', 'is you got to be', false)));
- $expected = array('0', 2 => true, 3 => 0, 4 => array('one thing', 'I can tell you', 'is you got to be'));
- $this->assertSame($expected, $result);
- }
- /**
- * testNumericArrayCheck method
- *
- * @see Hash test cases, as Set::numeric() is just a proxy.
- * @return void
- */
- public function testNumericArrayCheck() {
- $data = array('one');
- $this->assertTrue(Set::numeric(array_keys($data)));
- }
- /**
- * testKeyCheck method
- *
- * @return void
- */
- public function testKeyCheck() {
- $data = array('Multi' => array('dimensonal' => array('array')));
- $this->assertTrue(Set::check($data, 'Multi.dimensonal'));
- $this->assertFalse(Set::check($data, 'Multi.dimensonal.array'));
- $data = array(
- array(
- 'Article' => array('id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'),
- 'User' => array('id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'),
- 'Comment' => array(
- array('id' => '1', 'article_id' => '1', 'user_id' => '2', 'comment' => 'First Comment for First Article', 'published' => 'Y', 'created' => '2007-03-18 10:45:23', 'updated' => '2007-03-18 10:47:31'),
- array('id' => '2', 'article_id' => '1', 'user_id' => '4', 'comment' => 'Second Comment for First Article', 'published' => 'Y', 'created' => '2007-03-18 10:47:23', 'updated' => '2007-03-18 10:49:31'),
- ),
- 'Tag' => array(
- array('id' => '1', 'tag' => 'tag1', 'created' => '2007-03-18 12:22:23', 'updated' => '2007-03-18 12:24:31'),
- array('id' => '2', 'tag' => 'tag2', 'created' => '2007-03-18 12:24:23', 'updated' => '2007-03-18 12:26:31')
- )
- ),
- array(
- 'Article' => array('id' => '3', 'user_id' => '1', 'title' => 'Third Article', 'body' => 'Third Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:43:23', 'updated' => '2007-03-18 10:45:31'),
- 'User' => array('id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'),
- 'Comment' => array(),
- 'Tag' => array()
- )
- );
- $this->assertTrue(Set::check($data, '0.Article.user_id'));
- $this->assertTrue(Set::check($data, '0.Comment.0.id'));
- $this->assertFalse(Set::check($data, '0.Comment.0.id.0'));
- $this->assertTrue(Set::check($data, '0.Article.user_id'));
- $this->assertFalse(Set::check($data, '0.Article.user_id.a'));
- }
- /**
- * testMerge method
- *
- * @return void
- */
- public function testMerge() {
- $r = Set::merge(array('foo'));
- $this->assertEquals(array('foo'), $r);
- $r = Set::merge('foo');
- $this->assertEquals(array('foo'), $r);
- $r = Set::merge('foo', 'bar');
- $this->assertEquals(array('foo', 'bar'), $r);
- $r = Set::merge(array('foo'), array(), array('bar'));
- $this->assertEquals(array('foo', 'bar'), $r);
- $r = Set::merge('foo', array('user' => 'bob', 'no-bar'), 'bar');
- $this->assertEquals(array('foo', 'user' => 'bob', 'no-bar', 'bar'), $r);
- $a = array('foo', 'foo2');
- $b = array('bar', 'bar2');
- $this->assertEquals(array('foo', 'foo2', 'bar', 'bar2'), Set::merge($a, $b));
- $a = array('foo' => 'bar', 'bar' => 'foo');
- $b = array('foo' => 'no-bar', 'bar' => 'no-foo');
- $this->assertEquals(array('foo' => 'no-bar', 'bar' => 'no-foo'), Set::merge($a, $b));
- $a = array('users' => array('bob', 'jim'));
- $b = array('users' => array('lisa', 'tina'));
- $this->assertEquals(array('users' => array('bob', 'jim', 'lisa', 'tina')), Set::merge($a, $b));
- $a = array('users' => array('jim', 'bob'));
- $b = array('users' => 'none');
- $this->assertEquals(array('users' => 'none'), Set::merge($a, $b));
- $a = array('users' => array('lisa' => array('id' => 5, 'pw' => 'secret')), 'cakephp');
- $b = array('users' => array('lisa' => array('pw' => 'new-pass', 'age' => 23)), 'ice-cream');
- $this->assertEquals(array('users' => array('lisa' => array('id' => 5, 'pw' => 'new-pass', 'age' => 23)), 'cakephp', 'ice-cream'), Set::merge($a, $b));
- $c = array('users' => array('lisa' => array('pw' => 'you-will-never-guess', 'age' => 25, 'pet' => 'dog')), 'chocolate');
- $expected = array('users' => array('lisa' => array('id' => 5, 'pw' => 'you-will-never-guess', 'age' => 25, 'pet' => 'dog')), 'cakephp', 'ice-cream', 'chocolate');
- $this->assertEquals($expected, Set::merge($a, $b, $c));
- $this->assertEquals(Set::merge($a, $b, array(), $c), $expected);
- $r = Set::merge($a, $b, $c);
- $this->assertEquals($expected, $r);
- $a = array('Tree', 'CounterCache',
- 'Upload' => array('folder' => 'products',
- 'fields' => array('image_1_id', 'image_2_id', 'image_3_id', 'image_4_id', 'image_5_id')));
- $b = array('Cacheable' => array('enabled' => false),
- 'Limit',
- 'Bindable',
- 'Validator',
- 'Transactional');
- $expected = array('Tree', 'CounterCache',
- 'Upload' => array('folder' => 'products',
- 'fields' => array('image_1_id', 'image_2_id', 'image_3_id', 'image_4_id', 'image_5_id')),
- 'Cacheable' => array('enabled' => false),
- 'Limit',
- 'Bindable',
- 'Validator',
- 'Transactional');
- $this->assertEquals($expected, Set::merge($a, $b));
- $expected = array('Tree' => null, 'CounterCache' => null,
- 'Upload' => array('folder' => 'products',
- 'fields' => array('image_1_id', 'image_2_id', 'image_3_id', 'image_4_id', 'image_5_id')),
- 'Cacheable' => array('enabled' => false),
- 'Limit' => null,
- 'Bindable' => null,
- 'Validator' => null,
- 'Transactional' => null);
- $this->assertEquals($expected, Set::normalize(Set::merge($a, $b)));
- }
- /**
- * testSort method
- *
- * @return void
- */
- public function testSort() {
- $result = Set::sort(array(), '{n}.name', 'asc');
- $this->assertEquals(array(), $result);
- $a = array(
- 0 => array('Person' => array('name' => 'Jeff'), 'Friend' => array(array('name' => 'Nate'))),
- 1 => array('Person' => array('name' => 'Tracy'),'Friend' => array(array('name' => 'Lindsay')))
- );
- $b = array(
- 0 => array('Person' => array('name' => 'Tracy'),'Friend' => array(array('name' => 'Lindsay'))),
- 1 => array('Person' => array('name' => 'Jeff'), 'Friend' => array(array('name' => 'Nate')))
- );
- $a = Set::sort($a, '{n}.Friend.{n}.name', 'asc');
- $this->assertEquals($a, $b);
- $b = array(
- 0 => array('Person' => array('name' => 'Jeff'), 'Friend' => array(array('name' => 'Nate'))),
- 1 => array('Person' => array('name' => 'Tracy'),'Friend' => array(array('name' => 'Lindsay')))
- );
- $a = array(
- 0 => array('Person' => array('name' => 'Tracy'),'Friend' => array(array('name' => 'Lindsay'))),
- 1 => array('Person' => array('name' => 'Jeff'), 'Friend' => array(array('name' => 'Nate')))
- );
- $a = Set::sort($a, '{n}.Friend.{n}.name', 'desc');
- $this->assertEquals($a, $b);
- $a = array(
- 0 => array('Person' => array('name' => 'Jeff'), 'Friend' => array(array('name' => 'Nate'))),
- 1 => array('Person' => array('name' => 'Tracy'),'Friend' => array(array('name' => 'Lindsay'))),
- 2 => array('Person' => array('name' => 'Adam'),'Friend' => array(array('name' => 'Bob')))
- );
- $b = array(
- 0 => array('Person' => array('name' => 'Adam'),'Friend' => array(array('name' => 'Bob'))),
- 1 => array('Person' => array('name' => 'Jeff'), 'Friend' => array(array('name' => 'Nate'))),
- 2 => array('Person' => array('name' => 'Tracy'),'Friend' => array(array('name' => 'Lindsay')))
- );
- $a = Set::sort($a, '{n}.Person.name', 'asc');
- $this->assertEquals($a, $b);
- $a = array(
- array(7,6,4),
- array(3,4,5),
- array(3,2,1),
- );
- $b = array(
- array(3,2,1),
- array(3,4,5),
- array(7,6,4),
- );
- $a = Set::sort($a, '{n}.{n}', 'asc');
- $this->assertEquals($a, $b);
- $a = array(
- array(7,6,4),
- array(3,4,5),
- array(3,2,array(1,1,1)),
- );
- $b = array(
- array(3,2,array(1,1,1)),
- array(3,4,5),
- array(7,6,4),
- );
- $a = Set::sort($a, '{n}', 'asc');
- $this->assertEquals($a, $b);
- $a = array(
- 0 => array('Person' => array('name' => 'Jeff')),
- 1 => array('Shirt' => array('color' => 'black'))
- );
- $b = array(
- 0 => array('Shirt' => array('color' => 'black')),
- 1 => array('Person' => array('name' => 'Jeff')),
- );
- $a = Set::sort($a, '{n}.Person.name', 'ASC');
- $this->assertEquals($a, $b);
- $names = array(
- array('employees' => array(array('name' => array('first' => 'John', 'last' => 'Doe')))),
- array('employees' => array(array('name' => array('first' => 'Jane', 'last' => 'Doe')))),
- array('employees' => array(array('name' => array()))),
- array('employees' => array(array('name' => array())))
- );
- $result = Set::sort($names, '{n}.employees.0.name', 'asc', 1);
- $expected = array(
- array('employees' => array(array('name' => array('first' => 'John', 'last' => 'Doe')))),
- array('employees' => array(array('name' => array('first' => 'Jane', 'last' => 'Doe')))),
- array('employees' => array(array('name' => array()))),
- array('employees' => array(array('name' => array())))
- );
- $this->assertEquals($expected, $result);
- $menus = array(
- 'blogs' => array('title' => 'Blogs', 'weight' => 3),
- 'comments' => array('title' => 'Comments', 'weight' => 2),
- 'users' => array('title' => 'Users', 'weight' => 1),
- );
- $expected = array(
- 'users' => array('title' => 'Users', 'weight' => 1),
- 'comments' => array('title' => 'Comments', 'weight' => 2),
- 'blogs' => array('title' => 'Blogs', 'weight' => 3),
- );
- $result = Set::sort($menus, '{[a-z]+}.weight', 'ASC');
- $this->assertEquals($expected, $result);
- }
- /**
- * test sorting with string keys.
- *
- * @return void
- */
- public function testSortString() {
- $toSort = array(
- 'four' => array('number' => 4, 'some' => 'foursome'),
- 'six' => array('number' => 6, 'some' => 'sixsome'),
- 'five' => array('number' => 5, 'some' => 'fivesome'),
- 'two' => array('number' => 2, 'some' => 'twosome'),
- 'three' => array('number' => 3, 'some' => 'threesome')
- );
- $sorted = Set::sort($toSort, '{s}.number', 'asc');
- $expected = array(
- 'two' => array('number' => 2, 'some' => 'twosome'),
- 'three' => array('number' => 3, 'some' => 'threesome'),
- 'four' => array('number' => 4, 'some' => 'foursome'),
- 'five' => array('number' => 5, 'some' => 'fivesome'),
- 'six' => array('number' => 6, 'some' => 'sixsome')
- );
- $this->assertEquals($expected, $sorted);
- }
- /**
- * test sorting with out of order keys.
- *
- * @return void
- */
- public function testSortWithOutOfOrderKeys() {
- $data = array(
- 9 => array('class' => 510, 'test2' => 2),
- 1 => array('class' => 500, 'test2' => 1),
- 2 => array('class' => 600, 'test2' => 2),
- 5 => array('class' => 625, 'test2' => 4),
- 0 => array('class' => 605, 'test2' => 3),
- );
- $expected = array(
- array('class' => 500, 'test2' => 1),
- array('class' => 510, 'test2' => 2),
- array('class' => 600, 'test2' => 2),
- array('class' => 605, 'test2' => 3),
- array('class' => 625, 'test2' => 4),
- );
- $result = Set::sort($data, '{n}.class', 'asc');
- $this->assertEquals($expected, $result);
- $result = Set::sort($data, '{n}.test2', 'asc');
- $this->assertEquals($expected, $result);
- }
- /**
- * testExtract method
- *
- * @return void
- */
- public function testExtract() {
- $a = array(
- array(
- 'Article' => array('id' => '1', 'user_id' => '1', 'title' => 'First Article', 'body' => 'First Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'),
- 'User' => array('id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'),
- 'Comment' => array(
- array('id' => '1', 'article_id' => '1', 'user_id' => '2', 'comment' => 'First Comment for First Article', 'published' => 'Y', 'created' => '2007-03-18 10:45:23', 'updated' => '2007-03-18 10:47:31'),
- array('id' => '2', 'article_id' => '1', 'user_id' => '4', 'comment' => 'Second Comment for First Article', 'published' => 'Y', 'created' => '2007-03-18 10:47:23', 'updated' => '2007-03-18 10:49:31'),
- ),
- 'Tag' => array(
- array('id' => '1', 'tag' => 'tag1', 'created' => '2007-03-18 12:22:23', 'updated' => '2007-03-18 12:24:31'),
- array('id' => '2', 'tag' => 'tag2', 'created' => '2007-03-18 12:24:23', 'updated' => '2007-03-18 12:26:31')
- ),
- 'Deep' => array(
- 'Nesting' => array(
- 'test' => array(
- 1 => 'foo',
- 2 => array(
- 'and' => array('more' => 'stuff')
- )
- )
- )
- )
- ),
- array(
- 'Article' => array('id' => '3', 'user_id' => '1', 'title' => 'Third Article', 'body' => 'Third Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:43:23', 'updated' => '2007-03-18 10:45:31'),
- 'User' => array('id' => '2', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'),
- 'Comment' => array(),
- 'Tag' => array()
- ),
- array(
- 'Article' => array('id' => '3', 'user_id' => '1', 'title' => 'Third Article', 'body' => 'Third Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:43:23', 'updated' => '2007-03-18 10:45:31'),
- 'User' => array('id' => '3', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'),
- 'Comment' => array(),
- 'Tag' => array()
- ),
- array(
- 'Article' => array('id' => '3', 'user_id' => '1', 'title' => 'Third Article', 'body' => 'Third Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:43:23', 'updated' => '2007-03-18 10:45:31'),
- 'User' => array('id' => '4', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'),
- 'Comment' => array(),
- 'Tag' => array()
- ),
- array(
- 'Article' => array('id' => '3', 'user_id' => '1', 'title' => 'Third Article', 'body' => 'Third Article Body', 'published' => 'Y', 'created' => '2007-03-18 10:43:23', 'updated' => '2007-03-18 10:45:31'),
- 'User' => array('id' => '5', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31'),
- 'Comment' => array(),
- 'Tag' => array()
- )
- );
- $b = array('Deep' => $a[0]['Deep']);
- $c = array(
- array('a' => array('I' => array('a' => 1))),
- array(
- 'a' => array(
- 2
- )
- ),
- array('a' => array('II' => array('a' => 3, 'III' => array('a' => array('foo' => 4))))),
- );
- $expected = array(array('a' => $c[2]['a']));
- $r = Set::extract('/a/II[a=3]/..', $c);
- $this->assertEquals($expected, $r);
- $expected = array(1, 2, 3, 4, 5);
- $this->assertEquals($expected, Set::extract('/User/id', $a));
- $expected = array(1, 2, 3, 4, 5);
- $this->assertEquals($expected, Set::extract('/User/id', $a));
- $expected = array(
- array('id' => 1), array('id' => 2), array('id' => 3), array('id' => 4), array('id' => 5)
- );
- $r = Set::extract('/User/id', $a, array('flatten' => false));
- $this->assertEquals($expected, $r);
- $expected = array(array('test' => $a[0]['Deep']['Nesting']['test']));
- $this->assertEquals($expected, Set::extract('/Deep/Nesting/test', $a));
- $this->assertEquals($expected, Set::extract('/Deep/Nesting/test', $b));
- $expected = array(array('test' => $a[0]['Deep']['Nesting']['test']));
- $r = Set::extract('/Deep/Nesting/test/1/..', $a);
- $this->assertEquals($expected, $r);
- $expected = array(array('test' => $a[0]['Deep']['Nesting']['test']));
- $r = Set::extract('/Deep/Nesting/test/2/and/../..', $a);
- $this->assertEquals($expected, $r);
- $expected = array(array('test' => $a[0]['Deep']['Nesting']['test']));
- $r = Set::extract('/Deep/Nesting/test/2/../../../Nesting/test/2/..', $a);
- $this->assertEquals($expected, $r);
- $expected = array(2);
- $r = Set::extract('/User[2]/id', $a);
- $this->assertEquals($expected, $r);
- $expected = array(4, 5);
- $r = Set::extract('/User[id>3]/id', $a);
- $this->assertEquals($expected, $r);
- $expected = array(2, 3);
- $r = Set::extract('/User[id>1][id<=3]/id', $a);
- $this->assertEquals($expected, $r);
- $expected = array(array('I'), array('II'));
- $r = Set::extract('/a/@*', $c);
- $this->assertEquals($expected, $r);
- $single = array(
- 'User' => array(
- 'id' => 4,
- 'name' => 'Neo',
- )
- );
- $tricky = array(
- 0 => array(
- 'User' => array(
- 'id' => 1,
- 'name' => 'John',
- )
- ),
- 1 => array(
- 'User' => array(
- 'id' => 2,
- 'name' => 'Bob',
- )
- ),
- 2 => array(
- 'User' => array(
- 'id' => 3,
- 'name' => 'Tony',
- )
- ),
- 'User' => array(
- 'id' => 4,
- 'name' => 'Neo',
- )
- );
- $expected = array(1, 2, 3, 4);
- $r = Set::extract('/User/id', $tricky);
- $this->assertEquals($expected, $r);
- $expected = array(4);
- $r = Set::extract('/User/id', $single);
- $this->assertEquals($expected, $r);
- $expected = array(1, 3);
- $r = Set::extract('/User[name=/n/]/id', $tricky);
- $this->assertEquals($expected, $r);
- $expected = array(4);
- $r = Set::extract('/User[name=/N/]/id', $tricky);
- $this->assertEquals($expected, $r);
- $expected = array(1, 3, 4);
- $r = Set::extract('/User[name=/N/i]/id', $tricky);
- $this->assertEquals($expected, $r);
- $expected = array(array('id', 'name'), array('id', 'name'), array('id', 'name'), array('id', 'name'));
- $r = Set::extract('/User/@*', $tricky);
- $this->assertEquals($expected, $r);
- $common = array(
- array(
- 'Article' => array(
- 'id' => 1,
- 'name' => 'Article 1',
- ),
- 'Comment' => array(
- array(
- 'id' => 1,
- 'user_id' => 5,
- 'article_id' => 1,
- 'text' => 'Comment 1',
- ),
- array(
- 'id' => 2,
- 'user_id' => 23,
- 'article_id' => 1,
- 'text' => 'Comment 2',
- ),
- array(
- 'id' => 3,
- 'user_id' => 17,
- 'article_id' => 1,
- 'text' => 'Comment 3',
- ),
- ),
- ),
- array(
- 'Article' => array(
- 'id' => 2,
- 'name' => 'Article 2',
- ),
- 'Comment' => array(
- array(
- 'id' => 4,
- 'user_id' => 2,
- 'article_id' => 2,
- 'text' => 'Comment 4',
- 'addition' => '',
- ),
- array(
- 'id' => 5,
- 'user_id' => 23,
- 'article_id' => 2,
- 'text' => 'Comment 5',
- 'addition' => 'foo',
- ),
- ),
- ),
- array(
- 'Article' => array(
- 'id' => 3,
- 'name' => 'Article 3',
- ),
- 'Comment' => array(),
- )
- );
- $r = Set::extract('/Comment/id', $common);
- $expected = array(1, 2, 3, 4, 5);
- $this->assertEquals($expected, $r);
- $expected = array(1, 2, 4, 5);
- $r = Set::extract('/Comment[id!=3]/id', $common);
- $this->assertEquals($expected, $r);
- $r = Set::extract('/', $common);
- $this->assertEquals($r, $common);
- $expected = array(1, 2, 4, 5);
- $r = Set::extract($common, '/Comment[id!=3]/id');
- $this->assertEquals($expected, $r);
- $expected = array($common[0]['Comment'][2]);
- $r = Set::extract($common, '/Comment/2');
- $this->assertEquals($expected, $r);
- $expected = array($common[0]['Comment'][0]);
- $r = Set::extract($common, '/Comment[1]/.[id=1]');
- $this->assertEquals($expected, $r);
- $expected = array($common[1]['Comment'][1]);
- $r = Set::extract($common, '/1/Comment/.[2]');
- $this->assertEquals($expected, $r);
- $expected = array();
- $r = Set::extract('/User/id', array());
- $this->assertEquals($expected, $r);
- $expected = array(5);
- $r = Set::extract('/Comment/id[:last]', $common);
- $this->assertEquals($expected, $r);
- $expected = array(1);
- $r = Set::extract('/Comment/id[:first]', $common);
- $this->assertEquals($expected, $r);
- $expected = array(3);
- $r = Set::extract('/Article[:last]/id', $common);
- $this->assertEquals($expected, $r);
- $expected = array(array('Comment' => $common[1]['Comment'][0]));
- $r = Set::extract('/Comment[addition=]', $common);
- $this->assertEquals($expected, $r);
- $habtm = array(
- array(
- 'Post' => array(
- 'id' => 1,
- 'title' => 'great post',
- ),
- 'Comment' => array(
- array(
- 'id' => 1,
- 'text' => 'foo',
- 'User' => array(
- 'id' => 1,
- 'name' => 'bob'
- ),
- ),
- array(
- 'id' => 2,
- 'text' => 'bar',
- 'User' => array(
- 'id' => 2,
- 'name' => 'tod'
- ),
- ),
- ),
- ),
- array(
- 'Post' => array(
- 'id' => 2,
- 'title' => 'fun post',
- ),
- 'Comment' => array(
- array(
- 'id' => 3,
- 'text' => '123',
- 'User' => array(
- 'id' => 3,
- 'name' => 'dan'
- ),
- ),
- array(
- 'id' => 4,
- 'text' => '987',
- 'User' => array(
- 'id' => 4,
- 'name' => 'jim'
- ),
- ),
- ),
- ),
- );
- $r = Set::extract('/Comment/User[name=/bob|dan/]/..', $habtm);
- $this->assertEquals('bob', $r[0]['Comment']['User']['name']);
- $this->assertEquals('dan', $r[1]['Comment']['User']['name']);
- $this->assertEquals(2, count($r));
- $r = Set::extract('/Comment/User[name=/bob|tod/]/..', $habtm);
- $this->assertEquals('bob', $r[0]['Comment']['User']['name']);
- $this->assertEquals('tod', $r[1]['Comment']['User']['name']);
- $this->assertEquals(2, count($r));
- $tree = array(
- array(
- 'Category' => array('name' => 'Category 1'),
- 'children' => array(array('Category' => array('name' => 'Category 1.1')))
- ),
- array(
- 'Category' => array('name' => 'Category 2'),
- 'children' => array(
- array('Category' => array('name' => 'Category 2.1')),
- array('Category' => array('name' => 'Category 2.2'))
- )
- ),
- array(
- 'Category' => array('name' => 'Category 3'),
- 'children' => array(array('Category' => array('name' => 'Category 3.1')))
- )
- );
- $expected = array(array('Category' => $tree[1]['Category']));
- $r = Set::extract('/Category[name=Category 2]', $tree);
- $this->assertEquals($expected, $r);
- $expected = array(
- array('Category' => $tree[1]['Category'], 'children' => $tree[1]['children'])
- );
- $r = Set::extract('/Category[name=Category 2]/..', $tree);
- $this->assertEquals($expected, $r);
- $expected = array(
- array('children' => $tree[1]['children'][0]),
- array('children' => $tree[1]['children'][1])
- );
- $r = Set::extract('/Category[name=Category 2]/../children', $tree);
- $this->assertEquals($expected, $r);
- $habtm = array(
- array(
- 'Post' => array(
- 'id' => 1,
- 'title' => 'great post',
- ),
- 'Comment' => array(
- array(
- 'id' => 1,
- 'text' => 'foo',
- 'User' => array(
- 'id' => 1,
- 'name' => 'bob'
- ),
- ),
- array(
- 'id' => 2,
- 'text' => 'bar',
- 'User' => array(
- 'id' => 2,
- 'name' => 'tod'
- ),
- ),
- ),
- ),
- array(
- 'Post' => array(
- 'id' => 2,
- 'title' => 'fun post',
- ),
- 'Comment' => array(
- array(
- 'id' => 3,
- 'text' => '123',
- 'User' => array(
- 'id' => 3,
- 'name' => 'dan'
- ),
- ),
- array(
- 'id' => 4,
- 'text' => '987',
- 'User' => array(
- 'id' => 4,
- 'name' => 'jim'
- ),
- ),
- ),
- ),
- );
- $r = Set::extract('/Comment/User[name=/\w+/]/..', $habtm);
- $this->assertEquals('bob', $r[0]['Comment']['User']['name']);
- $this->assertEquals('tod', $r[1]['Comment']['User']['name']);
- $this->assertEquals('dan', $r[2]['Comment']['User']['name']);
- $this->assertEquals('dan', $r[3]['Comment']['User']['name']);
- $this->assertEquals(4, count($r));
- $r = Set::extract('/Comment/User[name=/[a-z]+/]/..', $habtm);
- $this->assertEquals('bob', $r[0]['Comment']['User']['name']);
- $this->assertEquals('tod', $r[1]['Comment']['User']['name']);
- $this->assertEquals('dan', $r[2]['Comment']['User']['name']);
- $this->assertEquals('dan', $r[3]['Comment']['User']['name']);
- $this->assertEquals(4, count($r));
- $r = Set::extract('/Comment/User[name=/bob|dan/]/..', $habtm);
- $this->assertEquals('bob', $r[0]['Comment']['User']['name']);
- $this->assertEquals('dan', $r[1]['Comment']['User']['name']);
- $this->assertEquals(2, count($r));
- $r = Set::extract('/Comment/User[name=/bob|tod/]/..', $habtm);
- $this->assertEquals('bob', $r[0]['Comment']['User']['name']);
- $this->assertEquals('tod', $r[1]['Comment']['User']['name']);
- $this->assertEquals(2, count($r));
- $mixedKeys = array(
- 'User' => array(
- 0 => array(
- 'id' => 4,
- 'name' => 'Neo'
- ),
- 1 => array(
- 'id' => 5,
- 'name' => 'Morpheus'
- ),
- 'stringKey' => array()
- )
- );
- $expected = array('Neo', 'Morpheus');
- $r = Set::extract('/User/name', $mixedKeys);
- $this->assertEquals($expected, $r);
- $f = array(
- array(
- 'file' => array(
- 'name' => 'zipfile.zip',
- 'type' => 'application/zip',
- 'tmp_name' => '/tmp/php178.tmp',
- 'error' => 0,
- 'size' => '564647'
- )
- ),
- array(
- 'file' => array(
- 'name' => 'zipfile2.zip',
- 'type' => 'application/x-zip-compressed',
- 'tmp_name' => '/tmp/php179.tmp',
- 'error' => 0,
- 'size' => '354784'
- )
- ),
- array(
- 'file' => array(
- 'name' => 'picture.jpg',
- 'type' => 'image/jpeg',
- 'tmp_name' => '/tmp/php180.tmp',
- 'error' => 0,
- 'size' => '21324'
- )
- )
- );
- $expected = array(array('name' => 'zipfile2.zip','type' => 'application/x-zip-compressed','tmp_name' => '/tmp/php179.tmp','error' => 0,'size' => '354784'));
- $r = Set::extract('/file/.[type=application/x-zip-compressed]', $f);
- $this->assertEquals($expected, $r);
- $expected = array(array('name' => 'zipfile.zip','type' => 'application/zip','tmp_name' => '/tmp/php178.tmp','error' => 0,'size' => '564647'));
- $r = Set::extract('/file/.[type=application/zip]', $f);
- $this->assertEquals($expected, $r);
- $f = array(
- array(
- 'file' => array(
- 'name' => 'zipfile.zip',
- 'type' => 'application/zip',
- 'tmp_name' => '/tmp/php178.tmp',
- 'error' => 0,
- 'size' => '564647'
- )
- ),
- array(
- 'file' => array(
- 'name' => 'zipfile2.zip',
- 'type' => 'application/x zip compressed',
- 'tmp_name' => '/tmp/php179.tmp',
- 'error' => 0,
- 'size' => '354784'
- )
- ),
- array(
- 'file' => array(
- 'name' => 'picture.jpg',
- 'type' => 'image/jpeg',
- 'tmp_name' => '/tmp/php180.tmp',
- 'error' => 0,
- 'size' => '21324'
- )
- )
- );
- $expected = array(array('name' => 'zipfile2.zip','type' => 'application/x zip compressed','tmp_name' => '/tmp/php179.tmp','error' => 0,'size' => '354784'));
- $r = Set::extract('/file/.[type=application/x zip compressed]', $f);
- $this->assertEquals($expected, $r);
- $expected = array(
- array('name' => 'zipfile.zip','type' => 'application/zip','tmp_name' => '/tmp/php178.tmp','error' => 0,'size' => '564647'),
- array('name' => 'zipfile2.zip','type' => 'application/x zip compressed','tmp_name' => '/tmp/php179.tmp','error' => 0,'size' => '354784')
- );
- $r = Set::extract('/file/.[tmp_name=/tmp\/php17/]', $f);
- $this->assertEquals($expected, $r);
- $hasMany = array(
- 'Node' => array(
- 'id' => 1,
- 'name' => 'First',
- 'state' => 50
- ),
- 'ParentNode' => array(
- 0 => array(
- 'id' => 2,
- 'name' => 'Second',
- 'state' => 60,
- )
- )
- );
- $result = Set::extract('/ParentNode/name', $hasMany);
- $expected = array('Second');
- $this->assertEquals($expected, $result);
- $data = array(
- array(
- 'Category' => array(
- 'id' => 1,
- 'name' => 'First'
- ),
- 0 => array(
- 'value' => 50
- )
- ),
- array(
- 'Category' => array(
- 'id' => 2,
- 'name' => 'Second'
- ),
- 0 => array(
- 'value' => 60
- )
- )
- );
- $expected = array(
- array(
- 'Category' => array(
- 'id' => 1,
- 'name' => 'First'
- ),
- 0 => array(
- 'value' => 50
- )
- )
- );
- $result = Set::extract('/Category[id=1]/..', $data);
- $this->assertEquals($expected, $result);
- $data = array(
- array(
- 'ChildNode' => array('id' => 1),
- array('name' => 'Item 1')
- ),
- array(
- 'ChildNode' => array('id' => 2),
- array('name' => 'Item 2')
- ),
- );
- $expected = array(
- 'Item 1',
- 'Item 2'
- );
- $result = Set::extract('/0/name', $data);
- $this->assertEquals($expected, $result);
- $data = array(
- array('A1', 'B1'),
- array('A2', 'B2')
- );
- $expected = array('A1', 'A2');
- $result = Set::extract('/0', $data);
- $this->assertEquals($expected, $result);
- }
- /**
- * test parent selectors with extract
- *
- * @return void
- */
- public function testExtractParentSelector() {
- $tree = array(
- array(
- 'Category' => array(
- 'name' => 'Category 1'
- ),
- 'children' => array(
- array(
- 'Category' => array(
- 'name' => 'Category 1.1'
- )
- )
- )
- ),
- array(
- 'Category' => array(
- 'name' => 'Category 2'
- ),
- 'children' => array(
- array(
- 'Category' => array(
- 'name' => 'Category 2.1'
- )
- ),
- array(
- 'Category' => array(
- 'name' => 'Category 2.2'
- )
- ),
- )
- ),
- array(
- 'Category' => array(
- 'name' => 'Category 3'
- ),
- 'children' => array(
- array(
- 'Category' => array(
- 'name' => 'Category 3.1'
- )
- )
- )
- )
- );
- $expected = array(array('Category' => $tree[1]['Category']));
- $r = Set::extract('/Category[name=Category 2]', $tree);
- $this->assertEquals($expected, $r);
- $expected = array(array('Category' => $tree[1]['Category'], 'children' => $tree[1]['children']));
- $r = Set::extract('/Category[name=Category 2]/..', $tree);
- $this->assertEquals($expected, $r);
- $expected = array(array('children' => $tree[1]['children'][0]), array('children' => $tree[1]['children'][1]));
- $r = Set::extract('/Category[name=Category 2]/../children', $tree);
- $this->assertEquals($expected, $r);
- $single = array(
- array(
- 'CallType' => array(
- 'name' => 'Internal Voice'
- ),
- 'x' => array(
- 'hour' => 7
- )
- )
- );
- $expected = array(7);
- $r = Set::extract('/CallType[name=Internal Voice]/../x/hour', $single);
- $this->assertEquals($expected, $r);
- $multiple = array(
- array(
- 'CallType' => array(
- 'name' => 'Internal Voice'
- ),
- 'x' => array(
- 'hour' => 7
- )
- ),
- array(
- 'CallType' => array(
- 'name' => 'Internal Voice'
- ),
- 'x' => array(
- 'hour' => 2
- )
- ),
- array(
- 'CallType' => array(
- 'name' => 'Internal Voice'
- ),
- 'x' => array(
- 'hour' => 1
- )
- )
- );
- $expected = array(7,2,1);
- $r = Set::extract('/CallType[name=Internal Voice]/../x/hour', $multiple);
- $this->assertEquals($expected, $r);
- $a = array(
- 'Model' => array(
- '0' => array(
- 'id' => 18,
- 'SubModelsModel' => array(
- 'id' => 1,
- 'submodel_id' => 66,
- 'model_id' => 18,
- 'type' => 1
- ),
- ),
- '1' => array(
- 'id' => 0,
- 'SubModelsModel' => array(
- 'id' => 2,
- 'submodel_id' => 66,
- 'model_id' => 0,
- 'type' => 1
- ),
- ),
- '2' => array(
- 'id' => 17,
- 'SubModelsModel' => array(
- 'id' => 3,
- 'submodel_id' => 66,
- 'model_id' => 17,
- 'type' => 2
- ),
- ),
- '3' => array(
- 'id' => 0,
- 'SubModelsModel' => array(
- 'id' => 4,
- 'submodel_id' => 66,
- 'model_id' => 0,
- 'type' => 2
- )
- )
- )
- );
- $expected = array(
- array(
- 'Model' => array(
- 'id' => 17,
- 'SubModelsModel' => array(
- 'id' => 3,
- 'submodel_id' => 66,
- 'model_id' => 17,
- 'type' => 2
- ),
- )
- ),
- array(
- 'Model' => array(
- 'id' => 0,
- 'SubModelsModel' => array(
- 'id' => 4,
- 'submodel_id' => 66,
- 'model_id' => 0,
- 'type' => 2
- )
- )
- )
- );
- $r = Set::extract('/Model/SubModelsModel[type=2]/..', $a);
- $this->assertEquals($expected, $r);
- }
- /**
- * test that extract() still works when arrays don't contain a 0 index.
- *
- * @return void
- */
- public function testExtractWithNonZeroArrays() {
- $nonZero = array(
- 1 => array(
- 'User' => array(
- 'id' => 1,
- 'name' => 'John',
- )
- ),
- 2 => array(
- 'User' => array(
- 'id' => 2,
- 'name' => 'Bob',
- )
- ),
- 3 => array(
- 'User' => array(
- 'id' => 3,
- 'name' => 'Tony',
- )
- )
- );
- $expected = array(1, 2, 3);
- $r = Set::extract('/User/id', $nonZero);
- $this->assertEquals($expected, $r);
- $expected = array(
- array('User' => array('id' => 1, 'name' => 'John')),
- array('User' => array('id' => 2, 'name' => 'Bob')),
- array('User' => array('id' => 3, 'name' => 'Tony')),
- );
- $result = Set::extract('/User', $nonZero);
- $this->assertEquals($expected, $result);
- $nonSequential = array(
- 'User' => array(
- 0 => array('id' => 1),
- 2 => array('id' => 2),
- 6 => array('id' => 3),
- 9 => array('id' => 4),
- 3 => array('id' => 5),
- ),
- );
- $nonZero = array(
- 'User' => array(
- 2 => array('id' => 1),
- 4 => array('id' => 2),
- 6 => array('id' => 3),
- 9 => array('id' => 4),
- 3 => array('id' => 5),
- ),
- );
- $expected = array(1, 2, 3, 4, 5);
- $this->assertEquals($expected, Set::extract('/User/id', $nonSequential));
- $result = Set::extract('/User/id', $nonZero);
- $this->assertEquals($expected, $result, 'Failed non zero array key extract');
- $expected = array(1, 2, 3, 4, 5);
- $this->assertEquals($expected, Set::extract('/User/id', $nonSequential));
- $result = Set::extract('/User/id', $nonZero);
- $this->assertEquals($expected, $result, 'Failed non zero array key extract');
- $startingAtOne = array(
- 'Article' => array(
- 1 => array(
- 'id' => 1,
- 'approved' => 1,
- ),
- )
- );
- $expected = array(0 => array('Article' => array('id' => 1, 'approved' => 1)));
- $result = Set::extract('/Article[approved=1]', $startingAtOne);
- $this->assertEquals($expected, $result);
- $items = array(
- 240 => array(
- 'A' => array(
- 'field1' => 'a240',
- 'field2' => 'a240',
- ),
- 'B' => array(
- 'field1' => 'b240',
- 'field2' => 'b240'
- ),
- )
- );
- $expected = array(
- 0 => 'b240'
- );
- $result = Set::extract('/B/field1', $items);
- $this->assertSame($expected, $result);
- $this->assertSame($result, Set::extract('{n}.B.field1', $items));
- }
- /**
- * testExtractWithArrays method
- *
- * @return void
- */
- public function testExtractWithArrays() {
- $data = array(
- 'Level1' => array(
- 'Level2' => array('test1', 'test2'),
- 'Level2bis' => array('test3', 'test4')
- )
- );
- $this->assertEquals(array(array('Level2' => array('test1', 'test2'))), Set::extract('/Level1/Level2', $data));
- $this->assertEquals(array(array('Level2bis' => array('test3', 'test4'))), Set::extract('/Level1/Level2bis', $data));
- }
- /**
- * test extract() with elements that have non-array children.
- *
- * @return void
- */
- public function testExtractWithNonArrayElements() {
- $data = array(
- 'node' => array(
- array('foo'),
- 'bar'
- )
- );
- $result = Set::extract('/node', $data);
- $expected = array(
- array('node' => array('foo')),
- 'bar'
- );
- $this->assertEquals($expected, $result);
- $data = array(
- 'node' => array(
- 'foo' => array('bar'),
- 'bar' => array('foo')
- )
- );
- $result = Set::extract('/node', $data);
- $expected = array(
- array('foo' => array('bar')),
- array('bar' => array('foo')),
- );
- $this->assertEquals($expected, $result);
- $data = array(
- 'node' => array(
- 'foo' => array(
- 'bar'
- ),
- 'bar' => 'foo'
- )
- );
- $result = Set::extract('/node', $data);
- $expected = array(
- array('foo' => array('bar')),
- 'foo'
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that extract() + matching can hit null things.
- */
- public function testExtractMatchesNull() {
- $data = array(
- 'Country' => array(
- array('name' => 'Canada'),
- array('name' => 'Australia'),
- array('name' => null),
- )
- );
- $result = Set::extract('/Country[name=/Canada|^$/]', $data);
- $expected = array(
- array(
- 'Country' => array(
- 'name' => 'Canada',
- ),
- ),
- array(
- 'Country' => array(
- 'name' => null,
- ),
- ),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * testMatches method
- *
- * @return void
- */
- public function testMatches() {
- $a = array(
- array('Article' => array('id' => 1, 'title' => 'Article 1')),
- array('Article' => array('id' => 2, 'title' => 'Article 2')),
- array('Article' => array('id' => 3, 'title' => 'Article 3'))
- );
- $this->assertTrue(Set::matches(array('id=2'), $a[1]['Article']));
- $this->assertFalse(Set::matches(array('id>2'), $a[1]['Article']));
- $this->assertTrue(Set::matches(array('id>=2'), $a[1]['Article']));
- $this->assertFalse(Set::matches(array('id>=3'), $a[1]['Article']));
- $this->assertTrue(Set::matches(array('id<=2'), $a[1]['Article']));
- $this->assertFalse(Set::matches(array('id<2'), $a[1]['Article']));
- $this->assertTrue(Set::matches(array('id>1'), $a[1]['Article']));
- $this->assertTrue(Set::matches(array('id>1', 'id<3', 'id!=0'), $a[1]['Article']));
- $this->assertTrue(Set::matches(array('3'), null, 3));
- $this->assertTrue(Set::matches(array('5'), null, 5));
- $this->assertTrue(Set::matches(array('id'), $a[1]['Article']));
- $this->assertTrue(Set::matches(array('id', 'title'), $a[1]['Article']));
- $this->assertFalse(Set::matches(array('non-existant'), $a[1]['Article']));
- $this->assertTrue(Set::matches('/Article[id=2]', $a));
- $this->assertFalse(Set::matches('/Article[id=4]', $a));
- $this->assertTrue(Set::matches(array(), $a));
- $r = array(
- 'Attachment' => array(
- 'keep' => array()
- ),
- 'Comment' => array(
- 'keep' => array(
- 'Attachment' => array(
- 'fields' => array(
- 0 => 'attachment',
- ),
- ),
- )
- ),
- 'User' => array(
- 'keep' => array()
- ),
- 'Article' => array(
- 'keep' => array(
- 'Comment' => array(
- 'fields' => array(
- 0 => 'comment',
- 1 => 'published',
- ),
- ),
- 'User' => array(
- 'fields' => array(
- 0 => 'user',
- ),
- ),
- )
- )
- );
- $this->assertTrue(Set::matches('/Article/keep/Comment', $r));
- $this->assertEquals(array('comment', 'published'), Set::extract('/Article/keep/Comment/fields', $r));
- $this->assertEquals(array('user'), Set::extract('/Article/keep/User/fields', $r));
- }
- /**
- * testSetExtractReturnsEmptyArray method
- *
- * @return void
- */
- public function testSetExtractReturnsEmptyArray() {
- $this->assertEquals(Set::extract(array(), '/Post/id'), array());
- $this->assertEquals(Set::extract('/Post/id', array()), array());
- $this->assertEquals(Set::extract('/Post/id', array(
- array('Post' => array('name' => 'bob')),
- array('Post' => array('name' => 'jim'))
- )), array());
- $this->assertEquals(Set::extract(array(), 'Message.flash'), null);
- }
- /**
- * testClassicExtract method
- *
- * @return void
- */
- public function testClassicExtract() {
- $a = array(
- array('Article' => array('id' => 1, 'title' => 'Article 1')),
- array('Article' => array('id' => 2, 'title' => 'Article 2')),
- array('Article' => array('id' => 3, 'title' => 'Article 3'))
- );
- $result = Set::extract($a, '{n}.Article.id');
- $expected = array(1, 2, 3);
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{n}.Article.title');
- $expected = array('Article 1', 'Article 2', 'Article 3');
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '1.Article.title');
- $expected = 'Article 2';
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '3.Article.title');
- $expected = null;
- $this->assertEquals($expected, $result);
- $a = array(
- array(
- 'Article' => array('id' => 1, 'title' => 'Article 1',
- 'User' => array('id' => 1, 'username' => 'mariano.iglesias'))
- ),
- array(
- 'Article' => array('id' => 2, 'title' => 'Article 2',
- 'User' => array('id' => 1, 'username' => 'mariano.iglesias'))
- ),
- array(
- 'Article' => array('id' => 3, 'title' => 'Article 3',
- 'User' => array('id' => 2, 'username' => 'phpnut'))
- )
- );
- $result = Set::extract($a, '{n}.Article.User.username');
- $expected = array('mariano.iglesias', 'mariano.iglesias', 'phpnut');
- $this->assertEquals($expected, $result);
- $a = array(
- array(
- 'Article' => array(
- 'id' => 1, 'title' => 'Article 1',
- 'Comment' => array(
- array('id' => 10, 'title' => 'Comment 10'),
- array('id' => 11, 'title' => 'Comment 11'),
- array('id' => 12, 'title' => 'Comment 12')
- )
- )
- ),
- array(
- 'Article' => array(
- 'id' => 2, 'title' => 'Article 2',
- 'Comment' => array(
- array('id' => 13, 'title' => 'Comment 13'),
- array('id' => 14, 'title' => 'Comment 14')
- )
- )
- ),
- array('Article' => array('id' => 3, 'title' => 'Article 3'))
- );
- $result = Set::extract($a, '{n}.Article.Comment.{n}.id');
- $expected = array(array(10, 11, 12), array(13, 14), null);
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{n}.Article.Comment.{n}.title');
- $expected = array(
- array('Comment 10', 'Comment 11', 'Comment 12'),
- array('Comment 13', 'Comment 14'),
- null
- );
- $this->assertEquals($expected, $result);
- $a = array(array('1day' => '20 sales'), array('1day' => '2 sales'));
- $result = Set::extract($a, '{n}.1day');
- $expected = array('20 sales', '2 sales');
- $this->assertEquals($expected, $result);
- $a = array(
- 'pages' => array('name' => 'page'),
- 'fruites' => array('name' => 'fruit'),
- 0 => array('name' => 'zero')
- );
- $result = Set::extract($a, '{s}.name');
- $expected = array('page','fruit');
- $this->assertEquals($expected, $result);
- $a = array(
- 0 => array('pages' => array('name' => 'page')),
- 1 => array('fruites' => array('name' => 'fruit')),
- 'test' => array(array('name' => 'jippi')),
- 'dot.test' => array(array('name' => 'jippi'))
- );
- $result = Set::extract($a, '{n}.{s}.name');
- $expected = array(0 => array('page'), 1 => array('fruit'));
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{s}.{n}.name');
- $expected = array(array('jippi'), array('jippi'));
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{\w+}.{\w+}.name');
- $expected = array(
- array('pages' => 'page'),
- array('fruites' => 'fruit'),
- 'test' => array('jippi'),
- 'dot.test' => array('jippi')
- );
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{\d+}.{\w+}.name');
- $expected = array(array('pages' => 'page'), array('fruites' => 'fruit'));
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{n}.{\w+}.name');
- $expected = array(array('pages' => 'page'), array('fruites' => 'fruit'));
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{s}.{\d+}.name');
- $expected = array(array('jippi'), array('jippi'));
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{s}');
- $expected = array(array(array('name' => 'jippi')), array(array('name' => 'jippi')));
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{[a-z]}');
- $expected = array(
- 'test' => array(array('name' => 'jippi')),
- 'dot.test' => array(array('name' => 'jippi'))
- );
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, '{dot\.test}.{n}');
- $expected = array('dot.test' => array(array('name' => 'jippi')));
- $this->assertEquals($expected, $result);
- $a = new stdClass();
- $a->articles = array(
- array('Article' => array('id' => 1, 'title' => 'Article 1')),
- array('Article' => array('id' => 2, 'title' => 'Article 2')),
- array('Article' => array('id' => 3, 'title' => 'Article 3'))
- );
- $result = Set::extract($a, 'articles.{n}.Article.id');
- $expected = array(1, 2, 3);
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, 'articles.{n}.Article.title');
- $expected = array('Article 1', 'Article 2', 'Article 3');
- $this->assertEquals($expected, $result);
- $a = new ArrayObject();
- $a['articles'] = array(
- array('Article' => array('id' => 1, 'title' => 'Article 1')),
- array('Article' => array('id' => 2, 'title' => 'Article 2')),
- array('Article' => array('id' => 3, 'title' => 'Article 3'))
- );
- $result = Set::extract($a, 'articles.{n}.Article.id');
- $expected = array(1, 2, 3);
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, 'articles.{n}.Article.title');
- $expected = array('Article 1', 'Article 2', 'Article 3');
- $this->assertEquals($expected, $result);
- $result = Set::extract($a, 'articles.0.Article.title');
- $expected = 'Article 1';
- $this->assertEquals($expected, $result);
- }
- /**
- * test classicExtract with keys that exceed 32bit max int.
- *
- * @return void
- */
- public function testClassicExtractMaxInt() {
- $data = array(
- 'Data' => array(
- '13376924712' => 'abc'
- )
- );
- $this->assertEquals('abc', Set::classicExtract($data, 'Data.13376924712'));
- }
- /**
- * testInsert method
- *
- * @see Hash tests, as Set::insert() is just a proxy.
- * @return void
- */
- public function testInsert() {
- $a = array(
- 'pages' => array('name' => 'page')
- );
- $result = Set::insert($a, 'files', array('name' => 'files'));
- $expected = array(
- 'pages' => array('name' => 'page'),
- 'files' => array('name' => 'files')
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * testRemove method
- *
- * @return void
- */
- public function testRemove() {
- $a = array(
- 'pages' => array('name' => 'page'),
- 'files' => array('name' => 'files')
- );
- $result = Set::remove($a, 'files');
- $expected = array(
- 'pages' => array('name' => 'page')
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * testCheck method
- *
- * @return void
- */
- public function testCheck() {
- $set = array(
- 'My Index 1' => array('First' => 'The first item')
- );
- $this->assertTrue(Set::check($set, 'My Index 1.First'));
- $this->assertTrue(Set::check($set, 'My Index 1'));
- $this->assertEquals(Set::check($set, array()), $set);
- $set = array(
- 'My Index 1' => array('First' => array('Second' => array('Third' => array('Fourth' => 'Heavy. Nesting.'))))
- );
- $this->assertTrue(Set::check($set, 'My Index 1.First.Second'));
- $this->assertTrue(Set::check($set, 'My Index 1.First.Second.Third'));
- $this->assertTrue(Set::check($set, 'My Index 1.First.Second.Third.Fourth'));
- $this->assertFalse(Set::check($set, 'My Index 1.First.Seconds.Third.Fourth'));
- }
- /**
- * testWritingWithFunkyKeys method
- *
- * @return void
- */
- public function testWritingWithFunkyKeys() {
- $set = Set::insert(array(), 'Session Test', "test");
- $this->assertEquals('test', Set::extract($set, 'Session Test'));
- $set = Set::remove($set, 'Session Test');
- $this->assertFalse(Set::check($set, 'Session Test'));
- $expected = array('Session Test' => array('Test Case' => 'test'));
- $this->assertEquals(Set::insert(array(), 'Session Test.Test Case', "test"), $expected);
- $this->assertTrue(Set::check($expected, 'Session Test.Test Case'));
- }
- /**
- * testDiff method
- *
- * @return void
- */
- public function testDiff() {
- $a = array(
- 0 => array('name' => 'main'),
- 1 => array('name' => 'about')
- );
- $b = array(
- 0 => array('name' => 'main'),
- 1 => array('name' => 'about'),
- 2 => array('name' => 'contact')
- );
- $result = Set::diff($a, $b);
- $expected = array(
- 2 => array('name' => 'contact')
- );
- $this->assertEquals($expected, $result);
- $result = Set::diff($a, array());
- $expected = $a;
- $this->assertEquals($expected, $result);
- $result = Set::diff(array(), $b);
- $expected = $b;
- $this->assertEquals($expected, $result);
- $b = array(
- 0 => array('name' => 'me'),
- 1 => array('name' => 'about')
- );
- $result = Set::diff($a, $b);
- $expected = array(
- 0 => array('name' => 'main')
- );
- $this->assertEquals($expected, $result);
- $a = array();
- $b = array('name' => 'bob', 'address' => 'home');
- $result = Set::diff($a, $b);
- $this->assertEquals($b, $result);
- $a = array('name' => 'bob', 'address' => 'home');
- $b = array();
- $result = Set::diff($a, $b);
- $this->assertEquals($a, $result);
- $a = array('key' => true, 'another' => false, 'name' => 'me');
- $b = array('key' => 1, 'another' => 0);
- $expected = array('name' => 'me');
- $result = Set::diff($a, $b);
- $this->assertEquals($expected, $result);
- $a = array('key' => 'value', 'another' => null, 'name' => 'me');
- $b = array('key' => 'differentValue', 'another' => null);
- $expected = array('key' => 'value', 'name' => 'me');
- $result = Set::diff($a, $b);
- $this->assertEquals($expected, $result);
- $a = array('key' => 'value', 'another' => null, 'name' => 'me');
- $b = array('key' => 'differentValue', 'another' => 'value');
- $expected = array('key' => 'value', 'another' => null, 'name' => 'me');
- $result = Set::diff($a, $b);
- $this->assertEquals($expected, $result);
- $a = array('key' => 'value', 'another' => null, 'name' => 'me');
- $b = array('key' => 'differentValue', 'another' => 'value');
- $expected = array('key' => 'differentValue', 'another' => 'value', 'name' => 'me');
- $result = Set::diff($b, $a);
- $this->assertEquals($expected, $result);
- $a = array('key' => 'value', 'another' => null, 'name' => 'me');
- $b = array(0 => 'differentValue', 1 => 'value');
- $expected = $a + $b;
- $result = Set::diff($a, $b);
- $this->assertEquals($expected, $result);
- }
- /**
- * testContains method
- *
- * @return void
- */
- public function testContains() {
- $a = array(
- 0 => array('name' => 'main'),
- 1 => array('name' => 'about')
- );
- $b = array(
- 0 => array('name' => 'main'),
- 1 => array('name' => 'about'),
- 2 => array('name' => 'contact'),
- 'a' => 'b'
- );
- $this->assertTrue(Set::contains($a, $a));
- $this->assertFalse(Set::contains($a, $b));
- $this->assertTrue(Set::contains($b, $a));
- }
- /**
- * testCombine method
- *
- * @return void
- */
- public function testCombine() {
- $result = Set::combine(array(), '{n}.User.id', '{n}.User.Data');
- $this->assertTrue(empty($result));
- $result = Set::combine('', '{n}.User.id', '{n}.User.Data');
- $this->assertTrue(empty($result));
- $a = array(
- array('User' => array('id' => 2, 'group_id' => 1,
- 'Data' => array('user' => 'mariano.iglesias','name' => 'Mariano Iglesias'))),
- array('User' => array('id' => 14, 'group_id' => 2,
- 'Data' => array('user' => 'phpnut', 'name' => 'Larry E. Masters'))),
- array('User' => array('id' => 25, 'group_id' => 1,
- 'Data' => array('user' => 'gwoo','name' => 'The Gwoo'))));
- $result = Set::combine($a, '{n}.User.id');
- $expected = array(2 => null, 14 => null, 25 => null);
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.non-existant');
- $expected = array(2 => null, 14 => null, 25 => null);
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.Data');
- $expected = array(
- 2 => array('user' => 'mariano.iglesias', 'name' => 'Mariano Iglesias'),
- 14 => array('user' => 'phpnut', 'name' => 'Larry E. Masters'),
- 25 => array('user' => 'gwoo', 'name' => 'The Gwoo'));
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.Data.name');
- $expected = array(
- 2 => 'Mariano Iglesias',
- 14 => 'Larry E. Masters',
- 25 => 'The Gwoo');
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.Data', '{n}.User.group_id');
- $expected = array(
- 1 => array(
- 2 => array('user' => 'mariano.iglesias', 'name' => 'Mariano Iglesias'),
- 25 => array('user' => 'gwoo', 'name' => 'The Gwoo')),
- 2 => array(
- 14 => array('user' => 'phpnut', 'name' => 'Larry E. Masters')));
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.Data.name', '{n}.User.group_id');
- $expected = array(
- 1 => array(
- 2 => 'Mariano Iglesias',
- 25 => 'The Gwoo'),
- 2 => array(
- 14 => 'Larry E. Masters'));
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id');
- $expected = array(2 => null, 14 => null, 25 => null);
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.Data');
- $expected = array(
- 2 => array('user' => 'mariano.iglesias', 'name' => 'Mariano Iglesias'),
- 14 => array('user' => 'phpnut', 'name' => 'Larry E. Masters'),
- 25 => array('user' => 'gwoo', 'name' => 'The Gwoo'));
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.Data.name');
- $expected = array(2 => 'Mariano Iglesias', 14 => 'Larry E. Masters', 25 => 'The Gwoo');
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.Data', '{n}.User.group_id');
- $expected = array(
- 1 => array(
- 2 => array('user' => 'mariano.iglesias', 'name' => 'Mariano Iglesias'),
- 25 => array('user' => 'gwoo', 'name' => 'The Gwoo')),
- 2 => array(
- 14 => array('user' => 'phpnut', 'name' => 'Larry E. Masters')));
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', '{n}.User.Data.name', '{n}.User.group_id');
- $expected = array(
- 1 => array(
- 2 => 'Mariano Iglesias',
- 25 => 'The Gwoo'),
- 2 => array(
- 14 => 'Larry E. Masters'));
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, '{n}.User.id', array('{0}: {1}', '{n}.User.Data.user', '{n}.User.Data.name'), '{n}.User.group_id');
- $expected = array(
- 1 => array(
- 2 => 'mariano.iglesias: Mariano Iglesias',
- 25 => 'gwoo: The Gwoo'),
- 2 => array(14 => 'phpnut: Larry E. Masters'));
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, array('{0}: {1}', '{n}.User.Data.user', '{n}.User.Data.name'), '{n}.User.id');
- $expected = array('mariano.iglesias: Mariano Iglesias' => 2, 'phpnut: Larry E. Masters' => 14, 'gwoo: The Gwoo' => 25);
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, array('{1}: {0}', '{n}.User.Data.user', '{n}.User.Data.name'), '{n}.User.id');
- $expected = array('Mariano Iglesias: mariano.iglesias' => 2, 'Larry E. Masters: phpnut' => 14, 'The Gwoo: gwoo' => 25);
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, array('%1$s: %2$d', '{n}.User.Data.user', '{n}.User.id'), '{n}.User.Data.name');
- $expected = array('mariano.iglesias: 2' => 'Mariano Iglesias', 'phpnut: 14' => 'Larry E. Masters', 'gwoo: 25' => 'The Gwoo');
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, array('%2$d: %1$s', '{n}.User.Data.user', '{n}.User.id'), '{n}.User.Data.name');
- $expected = array('2: mariano.iglesias' => 'Mariano Iglesias', '14: phpnut' => 'Larry E. Masters', '25: gwoo' => 'The Gwoo');
- $this->assertEquals($expected, $result);
- $b = new stdClass();
- $b->users = array(
- array('User' => array('id' => 2, 'group_id' => 1,
- 'Data' => array('user' => 'mariano.iglesias','name' => 'Mariano Iglesias'))),
- array('User' => array('id' => 14, 'group_id' => 2,
- 'Data' => array('user' => 'phpnut', 'name' => 'Larry E. Masters'))),
- array('User' => array('id' => 25, 'group_id' => 1,
- 'Data' => array('user' => 'gwoo','name' => 'The Gwoo'))));
- $result = Set::combine($b, 'users.{n}.User.id');
- $expected = array(2 => null, 14 => null, 25 => null);
- $this->assertEquals($expected, $result);
- $result = Set::combine($b, 'users.{n}.User.id', 'users.{n}.User.non-existant');
- $expected = array(2 => null, 14 => null, 25 => null);
- $this->assertEquals($expected, $result);
- $result = Set::combine($a, 'fail', 'fail');
- $this->assertSame(array(), $result);
- }
- /**
- * testMapReverse method
- *
- * @return void
- */
- public function testMapReverse() {
- $result = Set::reverse(null);
- $this->assertEquals(null, $result);
- $result = Set::reverse(false);
- $this->assertEquals(false, $result);
- $expected = array(
- 'Array1' => array(
- 'Array1Data1' => 'Array1Data1 value 1', 'Array1Data2' => 'Array1Data2 value 2'),
- 'Array2' => array(
- 0 => array('Array2Data1' => 1, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 1 => array('Array2Data1' => 2, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 2 => array('Array2Data1' => 3, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 3 => array('Array2Data1' => 4, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 4 => array('Array2Data1' => 5, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4')),
- 'Array3' => array(
- 0 => array('Array3Data1' => 1, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 1 => array('Array3Data1' => 2, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 2 => array('Array3Data1' => 3, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 3 => array('Array3Data1' => 4, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 4 => array('Array3Data1' => 5, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4')));
- $map = Set::map($expected, true);
- $this->assertEquals($expected['Array1']['Array1Data1'], $map->Array1->Array1Data1);
- $this->assertEquals($expected['Array2'][0]['Array2Data1'], $map->Array2[0]->Array2Data1);
- $result = Set::reverse($map);
- $this->assertEquals($expected, $result);
- $expected = array(
- 'Post' => array('id' => 1, 'title' => 'First Post'),
- 'Comment' => array(
- array('id' => 1, 'title' => 'First Comment'),
- array('id' => 2, 'title' => 'Second Comment')
- ),
- 'Tag' => array(
- array('id' => 1, 'title' => 'First Tag'),
- array('id' => 2, 'title' => 'Second Tag')
- ),
- );
- $map = Set::map($expected);
- $this->assertEquals($expected['Post']['title'], $map->title);
- foreach ($map->Comment as $comment) {
- $ids[] = $comment->id;
- }
- $this->assertEquals(array(1, 2), $ids);
- $expected = array(
- 'Array1' => array(
- 'Array1Data1' => 'Array1Data1 value 1', 'Array1Data2' => 'Array1Data2 value 2', 'Array1Data3' => 'Array1Data3 value 3','Array1Data4' => 'Array1Data4 value 4',
- 'Array1Data5' => 'Array1Data5 value 5', 'Array1Data6' => 'Array1Data6 value 6', 'Array1Data7' => 'Array1Data7 value 7', 'Array1Data8' => 'Array1Data8 value 8'),
- 'string' => 1,
- 'another' => 'string',
- 'some' => 'thing else',
- 'Array2' => array(
- 0 => array('Array2Data1' => 1, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 1 => array('Array2Data1' => 2, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 2 => array('Array2Data1' => 3, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 3 => array('Array2Data1' => 4, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 4 => array('Array2Data1' => 5, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4')),
- 'Array3' => array(
- 0 => array('Array3Data1' => 1, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 1 => array('Array3Data1' => 2, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 2 => array('Array3Data1' => 3, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 3 => array('Array3Data1' => 4, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 4 => array('Array3Data1' => 5, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4')));
- $map = Set::map($expected, true);
- $result = Set::reverse($map);
- $this->assertEquals($expected, $result);
- $expected = array(
- 'Array1' => array(
- 'Array1Data1' => 'Array1Data1 value 1', 'Array1Data2' => 'Array1Data2 value 2', 'Array1Data3' => 'Array1Data3 value 3','Array1Data4' => 'Array1Data4 value 4',
- 'Array1Data5' => 'Array1Data5 value 5', 'Array1Data6' => 'Array1Data6 value 6', 'Array1Data7' => 'Array1Data7 value 7', 'Array1Data8' => 'Array1Data8 value 8'),
- 'string' => 1,
- 'another' => 'string',
- 'some' => 'thing else',
- 'Array2' => array(
- 0 => array('Array2Data1' => 1, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 1 => array('Array2Data1' => 2, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 2 => array('Array2Data1' => 3, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 3 => array('Array2Data1' => 4, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4'),
- 4 => array('Array2Data1' => 5, 'Array2Data2' => 'Array2Data2 value 2', 'Array2Data3' => 'Array2Data3 value 2', 'Array2Data4' => 'Array2Data4 value 4')),
- 'string2' => 1,
- 'another2' => 'string',
- 'some2' => 'thing else',
- 'Array3' => array(
- 0 => array('Array3Data1' => 1, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 1 => array('Array3Data1' => 2, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 2 => array('Array3Data1' => 3, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 3 => array('Array3Data1' => 4, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4'),
- 4 => array('Array3Data1' => 5, 'Array3Data2' => 'Array3Data2 value 2', 'Array3Data3' => 'Array3Data3 value 2', 'Array3Data4' => 'Array3Data4 value 4')),
- 'string3' => 1,
- 'another3' => 'string',
- 'some3' => 'thing else');
- $map = Set::map($expected, true);
- $result = Set::reverse($map);
- $this->assertEquals($expected, $result);
- $expected = array('User' => array('psword' => 'whatever', 'Icon' => array('id' => 851)));
- $map = Set::map($expected);
- $result = Set::reverse($map);
- $this->assertEquals($expected, $result);
- $expected = array('User' => array('psword' => 'whatever', 'Icon' => array('id' => 851)));
- $class = new stdClass;
- $class->User = new stdClass;
- $class->User->psword = 'whatever';
- $class->User->Icon = new stdClass;
- $class->User->Icon->id = 851;
- $result = Set::reverse($class);
- $this->assertEquals($expected, $result);
- $expected = array('User' => array('psword' => 'whatever', 'Icon' => array('id' => 851), 'Profile' => array('name' => 'Some Name', 'address' => 'Some Address')));
- $class = new stdClass;
- $class->User = new stdClass;
- $class->User->psword = 'whatever';
- $class->User->Icon = new stdClass;
- $class->User->Icon->id = 851;
- $class->User->Profile = new stdClass;
- $class->User->Profile->name = 'Some Name';
- $class->User->Profile->address = 'Some Address';
- $result = Set::reverse($class);
- $this->assertEquals($expected, $result);
- $expected = array('User' => array('psword' => 'whatever',
- 'Icon' => array('id' => 851),
- 'Profile' => array('name' => 'Some Name', 'address' => 'Some Address'),
- 'Comment' => array(
- array('id' => 1, 'article_id' => 1, 'user_id' => 1, 'comment' => 'First Comment for First Article', 'published' => 'Y', 'created' => '2007-03-18 10:47:23', 'updated' => '2007-03-18 10:49:31'),
- array('id' => 2, 'article_id' => 1, 'user_id' => 2, 'comment' => 'Second Comment for First Article', 'published' => 'Y', 'created' => '2007-03-18 10:47:23', 'updated' => '2007-03-18 10:49:31'))));
- $class = new stdClass;
- $class->User = new stdClass;
- $class->User->psword = 'whatever';
- $class->User->Icon = new stdClass;
- $class->User->Icon->id = 851;
- $class->User->Profile = new stdClass;
- $class->User->Profile->name = 'Some Name';
- $class->User->Profile->address = 'Some Address';
- $class->User->Comment = new stdClass;
- $class->User->Comment->{'0'} = new stdClass;
- $class->User->Comment->{'0'}->id = 1;
- $class->User->Comment->{'0'}->article_id = 1;
- $class->User->Comment->{'0'}->user_id = 1;
- $class->User->Comment->{'0'}->comment = 'First Comment for First Article';
- $class->User->Comment->{'0'}->published = 'Y';
- $class->User->Comment->{'0'}->created = '2007-03-18 10:47:23';
- $class->User->Comment->{'0'}->updated = '2007-03-18 10:49:31';
- $class->User->Comment->{'1'} = new stdClass;
- $class->User->Comment->{'1'}->id = 2;
- $class->User->Comment->{'1'}->article_id = 1;
- $class->User->Comment->{'1'}->user_id = 2;
- $class->User->Comment->{'1'}->comment = 'Second Comment for First Article';
- $class->User->Comment->{'1'}->published = 'Y';
- $class->User->Comment->{'1'}->created = '2007-03-18 10:47:23';
- $class->User->Comment->{'1'}->updated = '2007-03-18 10:49:31';
- $result = Set::reverse($class);
- $this->assertEquals($expected, $result);
- $expected = array('User' => array('psword' => 'whatever',
- 'Icon' => array('id' => 851),
- 'Profile' => array('name' => 'Some Name', 'address' => 'Some Address'),
- 'Comment' => array(
- array('id' => 1, 'article_id' => 1, 'user_id' => 1, 'comment' => 'First Comment for First Article', 'published' => 'Y', 'created' => '2007-03-18 10:47:23', 'updated' => '2007-03-18 10:49:31'),
- array('id' => 2, 'article_id' => 1, 'user_id' => 2, 'comment' => 'Second Comment for First Article', 'published' => 'Y', 'created' => '2007-03-18 10:47:23', 'updated' => '2007-03-18 10:49:31'))));
- // @codingStandardsIgnoreStart
- $class = new stdClass;
- $class->User = new stdClass;
- $class->User->psword = 'whatever';
- $class->User->Icon = new stdClass;
- $class->User->Icon->id = 851;
- $class->User->Profile = new stdClass;
- $class->User->Profile->name = 'Some Name';
- $class->User->Profile->address = 'Some Address';
- $class->User->Comment = array();
- $comment = new stdClass;
- $comment->id = 1;
- $comment->article_id = 1;
- $comment->user_id = 1;
- $comment->comment = 'First Comment for First Article';
- $comment->published = 'Y';
- $comment->created = '2007-03-18 10:47:23';
- $comment->updated = '2007-03-18 10:49:31';
- $comment2 = new stdClass;
- $comment2->id = 2;
- $comment2->article_id = 1;
- $comment2->user_id = 2;
- $comment2->comment = 'Second Comment for First Article';
- $comment2->published = 'Y';
- $comment2->created = '2007-03-18 10:47:23';
- $comment2->updated = '2007-03-18 10:49:31';
- // @codingStandardsIgnoreEnd
- $class->User->Comment = array($comment, $comment2);
- $result = Set::reverse($class);
- $this->assertEquals($expected, $result);
- $class = new stdClass;
- $class->User = new stdClass;
- $class->User->id = 100;
- $class->someString = 'this is some string';
- $class->Profile = new stdClass;
- $class->Profile->name = 'Joe Mamma';
- $result = Set::reverse($class);
- $expected = array(
- 'User' => array('id' => '100'),
- 'someString' => 'this is some string',
- 'Profile' => array('name' => 'Joe Mamma')
- );
- $this->assertEquals($expected, $result);
- // @codingStandardsIgnoreStart
- $class = new stdClass;
- $class->User = new stdClass;
- $class->User->id = 100;
- $class->User->_name_ = 'User';
- $class->Profile = new stdClass;
- $class->Profile->name = 'Joe Mamma';
- $class->Profile->_name_ = 'Profile';
- // @codingStandardsIgnoreEnd
- $result = Set::reverse($class);
- $expected = array('User' => array('id' => '100'), 'Profile' => array('name' => 'Joe Mamma'));
- $this->assertEquals($expected, $result);
- }
- /**
- * testFormatting method
- *
- * @return void
- */
- public function testFormatting() {
- $data = array(
- array('Person' => array('first_name' => 'Nate', 'last_name' => 'Abele', 'city' => 'Boston', 'state' => 'MA', 'something' => '42')),
- array('Person' => array('first_name' => 'Larry', 'last_name' => 'Masters', 'city' => 'Boondock', 'state' => 'TN', 'something' => '{0}')),
- array('Person' => array('first_name' => 'Garrett', 'last_name' => 'Woodworth', 'city' => 'Venice Beach', 'state' => 'CA', 'something' => '{1}')));
- $result = Set::format($data, '{1}, {0}', array('{n}.Person.first_name', '{n}.Person.last_name'));
- $expected = array('Abele, Nate', 'Masters, Larry', 'Woodworth, Garrett');
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '{0}, {1}', array('{n}.Person.last_name', '{n}.Person.first_name'));
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '{0}, {1}', array('{n}.Person.city', '{n}.Person.state'));
- $expected = array('Boston, MA', 'Boondock, TN', 'Venice Beach, CA');
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '{{0}, {1}}', array('{n}.Person.city', '{n}.Person.state'));
- $expected = array('{Boston, MA}', '{Boondock, TN}', '{Venice Beach, CA}');
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '{{0}, {1}}', array('{n}.Person.something', '{n}.Person.something'));
- $expected = array('{42, 42}', '{{0}, {0}}', '{{1}, {1}}');
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '{%2$d, %1$s}', array('{n}.Person.something', '{n}.Person.something'));
- $expected = array('{42, 42}', '{0, {0}}', '{0, {1}}');
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '{%1$s, %1$s}', array('{n}.Person.something', '{n}.Person.something'));
- $expected = array('{42, 42}', '{{0}, {0}}', '{{1}, {1}}');
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '%2$d, %1$s', array('{n}.Person.first_name', '{n}.Person.something'));
- $expected = array('42, Nate', '0, Larry', '0, Garrett');
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '%1$s, %2$d', array('{n}.Person.first_name', '{n}.Person.something'));
- $expected = array('Nate, 42', 'Larry, 0', 'Garrett, 0');
- $this->assertEquals($expected, $result);
- }
- /**
- * testFormattingNullValues method
- *
- * @return void
- */
- public function testFormattingNullValues() {
- $data = array(
- array('Person' => array('first_name' => 'Nate', 'last_name' => 'Abele', 'city' => 'Boston', 'state' => 'MA', 'something' => '42')),
- array('Person' => array('first_name' => 'Larry', 'last_name' => 'Masters', 'city' => 'Boondock', 'state' => 'TN', 'something' => null)),
- array('Person' => array('first_name' => 'Garrett', 'last_name' => 'Woodworth', 'city' => 'Venice Beach', 'state' => 'CA', 'something' => null)));
- $result = Set::format($data, '%s', array('{n}.Person.something'));
- $expected = array('42', '', '');
- $this->assertEquals($expected, $result);
- $result = Set::format($data, '{0}, {1}', array('{n}.Person.city', '{n}.Person.something'));
- $expected = array('Boston, 42', 'Boondock, ', 'Venice Beach, ');
- $this->assertEquals($expected, $result);
- }
- /**
- * testCountDim method
- *
- * @return void
- */
- public function testCountDim() {
- $data = array('one', '2', 'three');
- $result = Set::countDim($data);
- $this->assertEquals(1, $result);
- $data = array('1' => '1.1', '2', '3');
- $result = Set::countDim($data);
- $this->assertEquals(1, $result);
- $data = array('1' => array('1.1' => '1.1.1'), '2', '3' => array('3.1' => '3.1.1'));
- $result = Set::countDim($data);
- $this->assertEquals(2, $result);
- $data = array('1' => '1.1', '2', '3' => array('3.1' => '3.1.1'));
- $result = Set::countDim($data);
- $this->assertEquals(1, $result);
- $data = array('1' => '1.1', '2', '3' => array('3.1' => '3.1.1'));
- $result = Set::countDim($data, true);
- $this->assertEquals(2, $result);
- $data = array('1' => array('1.1' => '1.1.1'), '2', '3' => array('3.1' => array('3.1.1' => '3.1.1.1')));
- $result = Set::countDim($data);
- $this->assertEquals(2, $result);
- $data = array('1' => array('1.1' => '1.1.1'), '2', '3' => array('3.1' => array('3.1.1' => '3.1.1.1')));
- $result = Set::countDim($data, true);
- $this->assertEquals(3, $result);
- $data = array('1' => array('1.1' => '1.1.1'), array('2' => array('2.1' => array('2.1.1' => '2.1.1.1'))), '3' => array('3.1' => array('3.1.1' => '3.1.1.1')));
- $result = Set::countDim($data, true);
- $this->assertEquals(4, $result);
- $data = array('1' => array('1.1' => '1.1.1'), array('2' => array('2.1' => array('2.1.1' => array('2.1.1.1')))), '3' => array('3.1' => array('3.1.1' => '3.1.1.1')));
- $result = Set::countDim($data, true);
- $this->assertEquals(5, $result);
- $data = array('1' => array('1.1' => '1.1.1'), array('2' => array('2.1' => array('2.1.1' => array('2.1.1.1' => '2.1.1.1.1')))), '3' => array('3.1' => array('3.1.1' => '3.1.1.1')));
- $result = Set::countDim($data, true);
- $this->assertEquals(5, $result);
- $set = array('1' => array('1.1' => '1.1.1'), array('2' => array('2.1' => array('2.1.1' => array('2.1.1.1' => '2.1.1.1.1')))), '3' => array('3.1' => array('3.1.1' => '3.1.1.1')));
- $result = Set::countDim($set, false, 0);
- $this->assertEquals(2, $result);
- $result = Set::countDim($set, true);
- $this->assertEquals(5, $result);
- }
- /**
- * testMapNesting method
- *
- * @return void
- */
- public function testMapNesting() {
- $expected = array(
- array(
- "IndexedPage" => array(
- "id" => 1,
- "url" => 'http://blah.com/',
- 'hash' => '68a9f053b19526d08e36c6a9ad150737933816a5',
- 'headers' => array(
- 'Date' => "Wed, 14 Nov 2007 15:51:42 GMT",
- 'Server' => "Apache",
- 'Expires' => "Thu, 19 Nov 1981 08:52:00 GMT",
- 'Cache-Control' => "private",
- 'Pragma' => "no-cache",
- 'Content-Type' => "text/html; charset=UTF-8",
- 'X-Original-Transfer-Encoding' => "chunked",
- 'Content-Length' => "50210",
- ),
- 'meta' => array(
- 'keywords' => array('testing','tests'),
- 'description' => 'describe me',
- ),
- 'get_vars' => '',
- 'post_vars' => array(),
- 'cookies' => array('PHPSESSID' => "dde9896ad24595998161ffaf9e0dbe2d"),
- 'redirect' => '',
- 'created' => "1195055503",
- 'updated' => "1195055503",
- )
- ),
- array(
- "IndexedPage" => array(
- "id" => 2,
- "url" => 'http://blah.com/',
- 'hash' => '68a9f053b19526d08e36c6a9ad150737933816a5',
- 'headers' => array(
- 'Date' => "Wed, 14 Nov 2007 15:51:42 GMT",
- 'Server' => "Apache",
- 'Expires' => "Thu, 19 Nov 1981 08:52:00 GMT",
- 'Cache-Control' => "private",
- 'Pragma' => "no-cache",
- 'Content-Type' => "text/html; charset=UTF-8",
- 'X-Original-Transfer-Encoding' => "chunked",
- 'Content-Length' => "50210",
- ),
- 'meta' => array(
- 'keywords' => array('testing','tests'),
- 'description' => 'describe me',
- ),
- 'get_vars' => '',
- 'post_vars' => array(),
- 'cookies' => array('PHPSESSID' => "dde9896ad24595998161ffaf9e0dbe2d"),
- 'redirect' => '',
- 'created' => "1195055503",
- 'updated' => "1195055503",
- ),
- )
- );
- $mapped = Set::map($expected);
- $ids = array();
- foreach ($mapped as $object) {
- $ids[] = $object->id;
- }
- $this->assertEquals(array(1, 2), $ids);
- $this->assertEquals($expected[0]['IndexedPage']['headers'], get_object_vars($mapped[0]->headers));
- $result = Set::reverse($mapped);
- $this->assertEquals($expected, $result);
- $data = array(
- array(
- "IndexedPage" => array(
- "id" => 1,
- "url" => 'http://blah.com/',
- 'hash' => '68a9f053b19526d08e36c6a9ad150737933816a5',
- 'get_vars' => '',
- 'redirect' => '',
- 'created' => "1195055503",
- 'updated' => "1195055503",
- )
- ),
- array(
- "IndexedPage" => array(
- "id" => 2,
- "url" => 'http://blah.com/',
- 'hash' => '68a9f053b19526d08e36c6a9ad150737933816a5',
- 'get_vars' => '',
- 'redirect' => '',
- 'created' => "1195055503",
- 'updated' => "1195055503",
- ),
- )
- );
- $mapped = Set::map($data);
- // @codingStandardsIgnoreStart
- $expected = new stdClass();
- $expected->_name_ = 'IndexedPage';
- $expected->id = 2;
- $expected->url = 'http://blah.com/';
- $expected->hash = '68a9f053b19526d08e36c6a9ad150737933816a5';
- $expected->get_vars = '';
- $expected->redirect = '';
- $expected->created = "1195055503";
- $expected->updated = "1195055503";
- // @codingStandardsIgnoreEnd
- $this->assertEquals($expected, $mapped[1]);
- $ids = array();
- foreach ($mapped as $object) {
- $ids[] = $object->id;
- }
- $this->assertEquals(array(1, 2), $ids);
- $result = Set::map(null);
- $expected = null;
- $this->assertEquals($expected, $result);
- }
- /**
- * testNestedMappedData method
- *
- * @return void
- */
- public function testNestedMappedData() {
- $result = Set::map(array(
- array(
- 'Post' => array('id' => '1', 'author_id' => '1', 'title' => 'First Post', 'body' => 'First Post Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'),
- 'Author' => array('id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31', 'test' => 'working'),
- )
- , array(
- 'Post' => array('id' => '2', 'author_id' => '3', 'title' => 'Second Post', 'body' => 'Second Post Body', 'published' => 'Y', 'created' => '2007-03-18 10:41:23', 'updated' => '2007-03-18 10:43:31'),
- 'Author' => array('id' => '3', 'user' => 'larry', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:20:23', 'updated' => '2007-03-17 01:22:31', 'test' => 'working'),
- )
- ));
- // @codingStandardsIgnoreStart
- $expected = new stdClass;
- $expected->_name_ = 'Post';
- $expected->id = '1';
- $expected->author_id = '1';
- $expected->title = 'First Post';
- $expected->body = 'First Post Body';
- $expected->published = 'Y';
- $expected->created = "2007-03-18 10:39:23";
- $expected->updated = "2007-03-18 10:41:31";
- $expected->Author = new stdClass;
- $expected->Author->id = '1';
- $expected->Author->user = 'mariano';
- $expected->Author->password = '5f4dcc3b5aa765d61d8327deb882cf99';
- $expected->Author->created = "2007-03-17 01:16:23";
- $expected->Author->updated = "2007-03-17 01:18:31";
- $expected->Author->test = "working";
- $expected->Author->_name_ = 'Author';
- $expected2 = new stdClass;
- $expected2->_name_ = 'Post';
- $expected2->id = '2';
- $expected2->author_id = '3';
- $expected2->title = 'Second Post';
- $expected2->body = 'Second Post Body';
- $expected2->published = 'Y';
- $expected2->created = "2007-03-18 10:41:23";
- $expected2->updated = "2007-03-18 10:43:31";
- $expected2->Author = new stdClass;
- $expected2->Author->id = '3';
- $expected2->Author->user = 'larry';
- $expected2->Author->password = '5f4dcc3b5aa765d61d8327deb882cf99';
- $expected2->Author->created = "2007-03-17 01:20:23";
- $expected2->Author->updated = "2007-03-17 01:22:31";
- $expected2->Author->test = "working";
- $expected2->Author->_name_ = 'Author';
- // @codingStandardsIgnoreEnd
- $test = array();
- $test[0] = $expected;
- $test[1] = $expected2;
- $this->assertEquals($test, $result);
- $result = Set::map(
- array(
- 'Post' => array('id' => '1', 'author_id' => '1', 'title' => 'First Post', 'body' => 'First Post Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'),
- 'Author' => array('id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31', 'test' => 'working'),
- )
- );
- // @codingStandardsIgnoreStart
- $expected = new stdClass;
- $expected->_name_ = 'Post';
- $expected->id = '1';
- $expected->author_id = '1';
- $expected->title = 'First Post';
- $expected->body = 'First Post Body';
- $expected->published = 'Y';
- $expected->created = "2007-03-18 10:39:23";
- $expected->updated = "2007-03-18 10:41:31";
- $expected->Author = new stdClass;
- $expected->Author->id = '1';
- $expected->Author->user = 'mariano';
- $expected->Author->password = '5f4dcc3b5aa765d61d8327deb882cf99';
- $expected->Author->created = "2007-03-17 01:16:23";
- $expected->Author->updated = "2007-03-17 01:18:31";
- $expected->Author->test = "working";
- $expected->Author->_name_ = 'Author';
- // @codingStandardsIgnoreEnd
- $this->assertEquals($expected, $result);
- //Case where extra HABTM fields come back in a result
- $data = array(
- 'User' => array(
- 'id' => 1,
- 'email' => '[email protected]',
- 'first_name' => 'John',
- 'last_name' => 'Smith',
- ),
- 'Piece' => array(
- array(
- 'id' => 1,
- 'title' => 'Moonlight Sonata',
- 'composer' => 'Ludwig van Beethoven',
- 'PiecesUser' => array(
- 'id' => 1,
- 'created' => '2008-01-01 00:00:00',
- 'modified' => '2008-01-01 00:00:00',
- 'piece_id' => 1,
- 'user_id' => 2,
- )
- ),
- array(
- 'id' => 2,
- 'title' => 'Moonlight Sonata 2',
- 'composer' => 'Ludwig van Beethoven',
- 'PiecesUser' => array(
- 'id' => 2,
- 'created' => '2008-01-01 00:00:00',
- 'modified' => '2008-01-01 00:00:00',
- 'piece_id' => 2,
- 'user_id' => 2,
- )
- )
- )
- );
- $result = Set::map($data);
- // @codingStandardsIgnoreStart
- $expected = new stdClass();
- $expected->_name_ = 'User';
- $expected->id = 1;
- $expected->email = '[email protected]';
- $expected->first_name = 'John';
- $expected->last_name = 'Smith';
- $piece = new stdClass();
- $piece->id = 1;
- $piece->title = 'Moonlight Sonata';
- $piece->composer = 'Ludwig van Beethoven';
- $piece->PiecesUser = new stdClass();
- $piece->PiecesUser->id = 1;
- $piece->PiecesUser->created = '2008-01-01 00:00:00';
- $piece->PiecesUser->modified = '2008-01-01 00:00:00';
- $piece->PiecesUser->piece_id = 1;
- $piece->PiecesUser->user_id = 2;
- $piece->PiecesUser->_name_ = 'PiecesUser';
- $piece->_name_ = 'Piece';
- $piece2 = new stdClass();
- $piece2->id = 2;
- $piece2->title = 'Moonlight Sonata 2';
- $piece2->composer = 'Ludwig van Beethoven';
- $piece2->PiecesUser = new stdClass();
- $piece2->PiecesUser->id = 2;
- $piece2->PiecesUser->created = '2008-01-01 00:00:00';
- $piece2->PiecesUser->modified = '2008-01-01 00:00:00';
- $piece2->PiecesUser->piece_id = 2;
- $piece2->PiecesUser->user_id = 2;
- $piece2->PiecesUser->_name_ = 'PiecesUser';
- $piece2->_name_ = 'Piece';
- // @codingStandardsIgnoreEnd
- $expected->Piece = array($piece, $piece2);
- $this->assertEquals($expected, $result);
- //Same data, but should work if _name_ has been manually defined:
- $data = array(
- 'User' => array(
- 'id' => 1,
- 'email' => '[email protected]',
- 'first_name' => 'John',
- 'last_name' => 'Smith',
- '_name_' => 'FooUser',
- ),
- 'Piece' => array(
- array(
- 'id' => 1,
- 'title' => 'Moonlight Sonata',
- 'composer' => 'Ludwig van Beethoven',
- '_name_' => 'FooPiece',
- 'PiecesUser' => array(
- 'id' => 1,
- 'created' => '2008-01-01 00:00:00',
- 'modified' => '2008-01-01 00:00:00',
- 'piece_id' => 1,
- 'user_id' => 2,
- '_name_' => 'FooPiecesUser',
- )
- ),
- array(
- 'id' => 2,
- 'title' => 'Moonlight Sonata 2',
- 'composer' => 'Ludwig van Beethoven',
- '_name_' => 'FooPiece',
- 'PiecesUser' => array(
- 'id' => 2,
- 'created' => '2008-01-01 00:00:00',
- 'modified' => '2008-01-01 00:00:00',
- 'piece_id' => 2,
- 'user_id' => 2,
- '_name_' => 'FooPiecesUser',
- )
- )
- )
- );
- $result = Set::map($data);
- // @codingStandardsIgnoreStart
- $expected = new stdClass();
- $expected->_name_ = 'FooUser';
- $expected->id = 1;
- $expected->email = '[email protected]';
- $expected->first_name = 'John';
- $expected->last_name = 'Smith';
- $piece = new stdClass();
- $piece->id = 1;
- $piece->title = 'Moonlight Sonata';
- $piece->composer = 'Ludwig van Beethoven';
- $piece->_name_ = 'FooPiece';
- $piece->PiecesUser = new stdClass();
- $piece->PiecesUser->id = 1;
- $piece->PiecesUser->created = '2008-01-01 00:00:00';
- $piece->PiecesUser->modified = '2008-01-01 00:00:00';
- $piece->PiecesUser->piece_id = 1;
- $piece->PiecesUser->user_id = 2;
- $piece->PiecesUser->_name_ = 'FooPiecesUser';
- $piece2 = new stdClass();
- $piece2->id = 2;
- $piece2->title = 'Moonlight Sonata 2';
- $piece2->composer = 'Ludwig van Beethoven';
- $piece2->_name_ = 'FooPiece';
- $piece2->PiecesUser = new stdClass();
- $piece2->PiecesUser->id = 2;
- $piece2->PiecesUser->created = '2008-01-01 00:00:00';
- $piece2->PiecesUser->modified = '2008-01-01 00:00:00';
- $piece2->PiecesUser->piece_id = 2;
- $piece2->PiecesUser->user_id = 2;
- $piece2->PiecesUser->_name_ = 'FooPiecesUser';
- // @codingStandardsIgnoreEnd
- $expected->Piece = array($piece, $piece2);
- $this->assertEquals($expected, $result);
- }
- /**
- * testPushDiff method
- *
- * @return void
- */
- public function testPushDiff() {
- $array1 = array('ModelOne' => array('id' => 1001, 'field_one' => 'a1.m1.f1', 'field_two' => 'a1.m1.f2'));
- $array2 = array('ModelTwo' => array('id' => 1002, 'field_one' => 'a2.m2.f1', 'field_two' => 'a2.m2.f2'));
- $result = Set::pushDiff($array1, $array2);
- $this->assertEquals($array1 + $array2, $result);
- $array3 = array('ModelOne' => array('id' => 1003, 'field_one' => 'a3.m1.f1', 'field_two' => 'a3.m1.f2', 'field_three' => 'a3.m1.f3'));
- $result = Set::pushDiff($array1, $array3);
- $expected = array('ModelOne' => array('id' => 1001, 'field_one' => 'a1.m1.f1', 'field_two' => 'a1.m1.f2', 'field_three' => 'a3.m1.f3'));
- $this->assertEquals($expected, $result);
- $array1 = array(
- 0 => array('ModelOne' => array('id' => 1001, 'field_one' => 's1.0.m1.f1', 'field_two' => 's1.0.m1.f2')),
- 1 => array('ModelTwo' => array('id' => 1002, 'field_one' => 's1.1.m2.f2', 'field_two' => 's1.1.m2.f2')));
- $array2 = array(
- 0 => array('ModelOne' => array('id' => 1001, 'field_one' => 's2.0.m1.f1', 'field_two' => 's2.0.m1.f2')),
- 1 => array('ModelTwo' => array('id' => 1002, 'field_one' => 's2.1.m2.f2', 'field_two' => 's2.1.m2.f2')));
- $result = Set::pushDiff($array1, $array2);
- $this->assertEquals($array1, $result);
- $array3 = array(0 => array('ModelThree' => array('id' => 1003, 'field_one' => 's3.0.m3.f1', 'field_two' => 's3.0.m3.f2')));
- $result = Set::pushDiff($array1, $array3);
- $expected = array(
- 0 => array('ModelOne' => array('id' => 1001, 'field_one' => 's1.0.m1.f1', 'field_two' => 's1.0.m1.f2'),
- 'ModelThree' => array('id' => 1003, 'field_one' => 's3.0.m3.f1', 'field_two' => 's3.0.m3.f2')),
- 1 => array('ModelTwo' => array('id' => 1002, 'field_one' => 's1.1.m2.f2', 'field_two' => 's1.1.m2.f2')));
- $this->assertEquals($expected, $result);
- $result = Set::pushDiff($array1, null);
- $this->assertEquals($array1, $result);
- $result = Set::pushDiff($array1, $array2);
- $this->assertEquals($array1 + $array2, $result);
- }
- /**
- * testSetApply method
- * @return void
- *
- */
- public function testApply() {
- $data = array(
- array('Movie' => array('id' => 1, 'title' => 'movie 3', 'rating' => 5)),
- array('Movie' => array('id' => 1, 'title' => 'movie 1', 'rating' => 1)),
- array('Movie' => array('id' => 1, 'title' => 'movie 2', 'rating' => 3))
- );
- $result = Set::apply('/Movie/rating', $data, 'array_sum');
- $expected = 9;
- $this->assertEquals($expected, $result);
- $result = Set::apply('/Movie/rating', $data, 'array_product');
- $expected = 15;
- $this->assertEquals($expected, $result);
- $result = Set::apply('/Movie/title', $data, 'ucfirst', array('type' => 'map'));
- $expected = array('Movie 3', 'Movie 1', 'Movie 2');
- $this->assertEquals($expected, $result);
- $result = Set::apply('/Movie/title', $data, 'strtoupper', array('type' => 'map'));
- $expected = array('MOVIE 3', 'MOVIE 1', 'MOVIE 2');
- $this->assertEquals($expected, $result);
- $result = Set::apply('/Movie/rating', $data, array('SetTest', 'method'), array('type' => 'reduce'));
- $expected = 9;
- $this->assertEquals($expected, $result);
- $result = Set::apply('/Movie/rating', $data, 'strtoupper', array('type' => 'non existing type'));
- $expected = null;
- $this->assertEquals($expected, $result);
- }
- /**
- * Helper method to test Set::apply()
- *
- * @return void
- */
- public static function method($val1, $val2) {
- $val1 += $val2;
- return $val1;
- }
- /**
- * testXmlSetReverse method
- *
- * @return void
- */
- public function testXmlSetReverse() {
- App::uses('Xml', 'Utility');
- $string = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
- <rss version="2.0">
- <channel>
- <title>Cake PHP Google Group</title>
- <link>http://groups.google.com/group/cake-php</link>
- <description>Search this group before posting anything. There are over 20,000 posts and it&#39;s very likely your question was answered before. Visit the IRC channel #cakephp at irc.freenode.net for live chat with users and developers of Cake. If you post, tell us the version of Cake, PHP, and database.</description>
- <language>en</language>
- <item>
- <title>constructng result array when using findall</title>
- <link>http://groups.google.com/group/cake-php/msg/49bc00f3bc651b4f</link>
- <description>i'm using cakephp to construct a logical data model array that will be <br> passed to a flex app. I have the following model association: <br> ServiceDay-&gt;(hasMany)ServiceTi me-&gt;(hasMany)ServiceTimePrice. So what <br> the current output from my findall is something like this example: <br> <p>Array( <br> [0] =&gt; Array(</description>
- <guid isPermaLink="true">http://groups.google.com/group/cake-php/msg/49bc00f3bc651b4f</guid>
- <author>[email protected](bpscrugs)</author>
- <pubDate>Fri, 28 Dec 2007 00:44:14 UT</pubDate>
- </item>
- <item>
- <title>Re: share views between actions?</title>
- <link>http://groups.google.com/group/cake-php/msg/8b350d898707dad8</link>
- <description>Then perhaps you might do us all a favour and refrain from replying to <br> things you do not understand. That goes especially for asinine comments. <br> Indeed. <br> To sum up: <br> No comment. <br> In my day, a simple &quot;RTFM&quot; would suffice. I'll keep in mind to ignore any <br> further responses from you. <br> You (and I) were referring to the *online documentation*, not other</description>
- <guid isPermaLink="true">http://groups.google.com/group/cake-php/msg/8b350d898707dad8</guid>
- <author>[email protected](subtropolis zijn)</author>
- <pubDate>Fri, 28 Dec 2007 00:45:01 UT</pubDate>
- </item>
- </channel>
- </rss>';
- $xml = Xml::build($string);
- $result = Set::reverse($xml);
- $expected = array('rss' => array(
- '@version' => '2.0',
- 'channel' => array(
- 'title' => 'Cake PHP Google Group',
- 'link' => 'http://groups.google.com/group/cake-php',
- 'description' => 'Search this group before posting anything. There are over 20,000 posts and it's very likely your question was answered before. Visit the IRC channel #cakephp at irc.freenode.net for live chat with users and developers of Cake. If you post, tell us the version of Cake, PHP, and database.',
- 'language' => 'en',
- 'item' => array(
- array(
- 'title' => 'constructng result array when using findall',
- 'link' => 'http://groups.google.com/group/cake-php/msg/49bc00f3bc651b4f',
- 'description' => "i'm using cakephp to construct a logical data model array that will be <br> passed to a flex app. I have the following model association: <br> ServiceDay->(hasMany)ServiceTi me->(hasMany)ServiceTimePrice. So what <br> the current output from my findall is something like this example: <br> <p>Array( <br> [0] => Array(",
- 'guid' => array('@isPermaLink' => 'true', '@' => 'http://groups.google.com/group/cake-php/msg/49bc00f3bc651b4f'),
- 'author' => '[email protected](bpscrugs)',
- 'pubDate' => 'Fri, 28 Dec 2007 00:44:14 UT',
- ),
- array(
- 'title' => 'Re: share views between actions?',
- 'link' => 'http://groups.google.com/group/cake-php/msg/8b350d898707dad8',
- 'description' => 'Then perhaps you might do us all a favour and refrain from replying to <br> things you do not understand. That goes especially for asinine comments. <br> Indeed. <br> To sum up: <br> No comment. <br> In my day, a simple "RTFM" would suffice. I\'ll keep in mind to ignore any <br> further responses from you. <br> You (and I) were referring to the *online documentation*, not other',
- 'guid' => array('@isPermaLink' => 'true', '@' => 'http://groups.google.com/group/cake-php/msg/8b350d898707dad8'),
- 'author' => '[email protected](subtropolis zijn)',
- 'pubDate' => 'Fri, 28 Dec 2007 00:45:01 UT'
- )
- )
- )
- ));
- $this->assertEquals($expected, $result);
- $string = '<data><post title="Title of this post" description="cool"/></data>';
- $xml = Xml::build($string);
- $result = Set::reverse($xml);
- $expected = array('data' => array('post' => array('@title' => 'Title of this post', '@description' => 'cool')));
- $this->assertEquals($expected, $result);
- $xml = Xml::build('<example><item><title>An example of a correctly reversed SimpleXMLElement</title><desc/></item></example>');
- $result = Set::reverse($xml);
- $expected = array('example' =>
- array(
- 'item' => array(
- 'title' => 'An example of a correctly reversed SimpleXMLElement',
- 'desc' => '',
- )
- )
- );
- $this->assertEquals($expected, $result);
- $xml = Xml::build('<example><item attr="123"><titles><title>title1</title><title>title2</title></titles></item></example>');
- $result = Set::reverse($xml);
- $expected =
- array('example' => array(
- 'item' => array(
- '@attr' => '123',
- 'titles' => array(
- 'title' => array('title1', 'title2')
- )
- )
- )
- );
- $this->assertEquals($expected, $result);
- $xml = Xml::build('<example attr="ex_attr"><item attr="123"><titles>list</titles>textforitems</item></example>');
- $result = Set::reverse($xml);
- $expected =
- array('example' => array(
- '@attr' => 'ex_attr',
- 'item' => array(
- '@attr' => '123',
- 'titles' => 'list',
- '@' => 'textforitems'
- )
- )
- );
- $this->assertEquals($expected, $result);
- $string = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
- <rss version="2.0" xmlns:dc="http://www.cakephp.org/">
- <channel>
- <title>Cake PHP Google Group</title>
- <link>http://groups.google.com/group/cake-php</link>
- <description>Search this group before posting anything. There are over 20,000 posts and it&#39;s very likely your question was answered before. Visit the IRC channel #cakephp at irc.freenode.net for live chat with users and developers of Cake. If you post, tell us the version of Cake, PHP, and database.</description>
- <language>en</language>
- <item>
- <title>constructng result array when using findall</title>
- <link>http://groups.google.com/group/cake-php/msg/49bc00f3bc651b4f</link>
- <description>i'm using cakephp to construct a logical data model array that will be <br> passed to a flex app. I have the following model association: <br> ServiceDay-&gt;(hasMany)ServiceTi me-&gt;(hasMany)ServiceTimePrice. So what <br> the current output from my findall is something like this example: <br> <p>Array( <br> [0] =&gt; Array(</description>
- <dc:creator>cakephp</dc:creator>
- <category><![CDATA[cakephp]]></category>
- <category><![CDATA[model]]></category>
- <guid isPermaLink="true">http://groups.google.com/group/cake-php/msg/49bc00f3bc651b4f</guid>
- <author>[email protected](bpscrugs)</author>
- <pubDate>Fri, 28 Dec 2007 00:44:14 UT</pubDate>
- </item>
- <item>
- <title>Re: share views between actions?</title>
- <link>http://groups.google.com/group/cake-php/msg/8b350d898707dad8</link>
- <description>Then perhaps you might do us all a favour and refrain from replying to <br> things you do not understand. That goes especially for asinine comments. <br> Indeed. <br> To sum up: <br> No comment. <br> In my day, a simple &quot;RTFM&quot; would suffice. I'll keep in mind to ignore any <br> further responses from you. <br> You (and I) were referring to the *online documentation*, not other</description>
- <dc:creator>cakephp</dc:creator>
- <category><![CDATA[cakephp]]></category>
- <category><![CDATA[model]]></category>
- <guid isPermaLink="true">http://groups.google.com/group/cake-php/msg/8b350d898707dad8</guid>
- <author>[email protected](subtropolis zijn)</author>
- <pubDate>Fri, 28 Dec 2007 00:45:01 UT</pubDate>
- </item>
- </channel>
- </rss>';
- $xml = Xml::build($string);
- $result = Set::reverse($xml);
- $expected = array('rss' => array(
- '@version' => '2.0',
- 'channel' => array(
- 'title' => 'Cake PHP Google Group',
- 'link' => 'http://groups.google.com/group/cake-php',
- 'description' => 'Search this group before posting anything. There are over 20,000 posts and it's very likely your question was answered before. Visit the IRC channel #cakephp at irc.freenode.net for live chat with users and developers of Cake. If you post, tell us the version of Cake, PHP, and database.',
- 'language' => 'en',
- 'item' => array(
- array(
- 'title' => 'constructng result array when using findall',
- 'link' => 'http://groups.google.com/group/cake-php/msg/49bc00f3bc651b4f',
- 'description' => "i'm using cakephp to construct a logical data model array that will be <br> passed to a flex app. I have the following model association: <br> ServiceDay->(hasMany)ServiceTi me->(hasMany)ServiceTimePrice. So what <br> the current output from my findall is something like this example: <br> <p>Array( <br> [0] => Array(",
- 'dc:creator' => 'cakephp',
- 'category' => array('cakephp', 'model'),
- 'guid' => array('@isPermaLink' => 'true', '@' => 'http://groups.google.com/group/cake-php/msg/49bc00f3bc651b4f'),
- 'author' => '[email protected](bpscrugs)',
- 'pubDate' => 'Fri, 28 Dec 2007 00:44:14 UT',
- ),
- array(
- 'title' => 'Re: share views between actions?',
- 'link' => 'http://groups.google.com/group/cake-php/msg/8b350d898707dad8',
- 'description' => 'Then perhaps you might do us all a favour and refrain from replying to <br> things you do not understand. That goes especially for asinine comments. <br> Indeed. <br> To sum up: <br> No comment. <br> In my day, a simple "RTFM" would suffice. I\'ll keep in mind to ignore any <br> further responses from you. <br> You (and I) were referring to the *online documentation*, not other',
- 'dc:creator' => 'cakephp',
- 'category' => array('cakephp', 'model'),
- 'guid' => array('@isPermaLink' => 'true', '@' => 'http://groups.google.com/group/cake-php/msg/8b350d898707dad8'),
- 'author' => '[email protected](subtropolis zijn)',
- 'pubDate' => 'Fri, 28 Dec 2007 00:45:01 UT'
- )
- )
- )
- ));
- $this->assertEquals($expected, $result);
- $text = '<?xml version="1.0" encoding="UTF-8"?>
- <XRDS xmlns="xri://$xrds">
- <XRD xml:id="oauth" xmlns="xri://$XRD*($v*2.0)" version="2.0">
- <Type>xri://$xrds*simple</Type>
- <Expires>2008-04-13T07:34:58Z</Expires>
- <Service>
- <Type>http://oauth.net/core/1.0/endpoint/authorize</Type>
- <Type>http://oauth.net/core/1.0/parameters/auth-header</Type>
- <Type>http://oauth.net/core/1.0/parameters/uri-query</Type>
- <URI priority="10">https://ma.gnolia.com/oauth/authorize</URI>
- <URI priority="20">http://ma.gnolia.com/oauth/authorize</URI>
- </Service>
- </XRD>
- <XRD xmlns="xri://$XRD*($v*2.0)" version="2.0">
- <Type>xri://$xrds*simple</Type>
- <Service priority="10">
- <Type>http://oauth.net/discovery/1.0</Type>
- <URI>#oauth</URI>
- </Service>
- </XRD>
- </XRDS>';
- $xml = Xml::build($text);
- $result = Set::reverse($xml);
- $expected = array('XRDS' => array(
- 'XRD' => array(
- array(
- '@xml:id' => 'oauth',
- '@version' => '2.0',
- 'Type' => 'xri://$xrds*simple',
- 'Expires' => '2008-04-13T07:34:58Z',
- 'Service' => array(
- 'Type' => array(
- 'http://oauth.net/core/1.0/endpoint/authorize',
- 'http://oauth.net/core/1.0/parameters/auth-header',
- 'http://oauth.net/core/1.0/parameters/uri-query'
- ),
- 'URI' => array(
- array(
- '@' => 'https://ma.gnolia.com/oauth/authorize',
- '@priority' => '10',
- ),
- array(
- '@' => 'http://ma.gnolia.com/oauth/authorize',
- '@priority' => '20'
- )
- )
- )
- ),
- array(
- '@version' => '2.0',
- 'Type' => 'xri://$xrds*simple',
- 'Service' => array(
- '@priority' => '10',
- 'Type' => 'http://oauth.net/discovery/1.0',
- 'URI' => '#oauth'
- )
- )
- )
- ));
- $this->assertEquals($expected, $result);
- }
- /**
- * testStrictKeyCheck method
- *
- * @return void
- */
- public function testStrictKeyCheck() {
- $set = array('a' => 'hi');
- $this->assertFalse(Set::check($set, 'a.b'));
- }
- /**
- * Tests Set::flatten
- *
- * @see Hash test cases, as Set::flatten() is just a proxy.
- * @return void
- */
- public function testFlatten() {
- $data = array('Larry', 'Curly', 'Moe');
- $result = Set::flatten($data);
- $this->assertEquals($data, $result);
- $data[9] = 'Shemp';
- $result = Set::flatten($data);
- $this->assertEquals($data, $result);
- $data = array(
- array(
- 'Post' => array('id' => '1', 'author_id' => null, 'title' => 'First Post'),
- 'Author' => array(),
- )
- );
- $result = Set::flatten($data);
- $expected = array(
- '0.Post.id' => '1',
- '0.Post.author_id' => null,
- '0.Post.title' => 'First Post',
- '0.Author' => array()
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests Set::expand
- *
- * @return void
- */
- public function testExpand() {
- $data = array('My', 'Array', 'To', 'Flatten');
- $flat = Set::flatten($data);
- $result = Set::expand($flat);
- $this->assertEquals($data, $result);
- }
- /**
- * test normalization
- *
- * @return void
- */
- public function testNormalizeStrings() {
- $result = Set::normalize('one,two,three');
- $expected = array('one' => null, 'two' => null, 'three' => null);
- $this->assertEquals($expected, $result);
- $result = Set::normalize('one two three', true, ' ');
- $expected = array('one' => null, 'two' => null, 'three' => null);
- $this->assertEquals($expected, $result);
- $result = Set::normalize('one , two , three ', true, ',', true);
- $expected = array('one' => null, 'two' => null, 'three' => null);
- $this->assertEquals($expected, $result);
- }
- /**
- * test normalizing arrays
- *
- * @return void
- */
- public function testNormalizeArrays() {
- $result = Set::normalize(array('one', 'two', 'three'));
- $expected = array('one' => null, 'two' => null, 'three' => null);
- $this->assertEquals($expected, $result);
- $result = Set::normalize(array('one', 'two', 'three'), false);
- $expected = array('one', 'two', 'three');
- $this->assertEquals($expected, $result);
- $result = Set::normalize(array('one' => 1, 'two' => 2, 'three' => 3, 'four'), false);
- $expected = array('one' => 1, 'two' => 2, 'three' => 3, 'four' => null);
- $this->assertEquals($expected, $result);
- $result = Set::normalize(array('one' => 1, 'two' => 2, 'three' => 3, 'four'));
- $expected = array('one' => 1, 'two' => 2, 'three' => 3, 'four' => null);
- $this->assertEquals($expected, $result);
- $result = Set::normalize(array('one' => array('a', 'b', 'c' => 'cee'), 'two' => 2, 'three'));
- $expected = array('one' => array('a', 'b', 'c' => 'cee'), 'two' => 2, 'three' => null);
- $this->assertEquals($expected, $result);
- }
- /**
- * test Set nest with a normal model result set. For kicks rely on Set nest detecting the key names
- * automatically
- *
- * @return void
- */
- public function testNestModel() {
- $input = array(
- array(
- 'ModelName' => array(
- 'id' => 1,
- 'parent_id' => null
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 2,
- 'parent_id' => 1
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 3,
- 'parent_id' => 1
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 4,
- 'parent_id' => 1
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 5,
- 'parent_id' => 1
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 6,
- 'parent_id' => null
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 7,
- 'parent_id' => 6
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 8,
- 'parent_id' => 6
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 9,
- 'parent_id' => 6
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 10,
- 'parent_id' => 6
- )
- )
- );
- $expected = array(
- array(
- 'ModelName' => array(
- 'id' => 1,
- 'parent_id' => null
- ),
- 'children' => array(
- array(
- 'ModelName' => array(
- 'id' => 2,
- 'parent_id' => 1
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 3,
- 'parent_id' => 1
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 4,
- 'parent_id' => 1
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 5,
- 'parent_id' => 1
- ),
- 'children' => array()
- ),
- )
- ),
- array(
- 'ModelName' => array(
- 'id' => 6,
- 'parent_id' => null
- ),
- 'children' => array(
- array(
- 'ModelName' => array(
- 'id' => 7,
- 'parent_id' => 6
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 8,
- 'parent_id' => 6
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 9,
- 'parent_id' => 6
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 10,
- 'parent_id' => 6
- ),
- 'children' => array()
- )
- )
- )
- );
- $result = Set::nest($input);
- $this->assertEquals($expected, $result);
- }
- /**
- * test Set nest with a normal model result set, and a nominated root id
- *
- * @return void
- */
- public function testNestModelExplicitRoot() {
- $input = array(
- array(
- 'ModelName' => array(
- 'id' => 1,
- 'parent_id' => null
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 2,
- 'parent_id' => 1
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 3,
- 'parent_id' => 1
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 4,
- 'parent_id' => 1
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 5,
- 'parent_id' => 1
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 6,
- 'parent_id' => null
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 7,
- 'parent_id' => 6
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 8,
- 'parent_id' => 6
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 9,
- 'parent_id' => 6
- ),
- ),
- array(
- 'ModelName' => array(
- 'id' => 10,
- 'parent_id' => 6
- )
- )
- );
- $expected = array(
- array(
- 'ModelName' => array(
- 'id' => 6,
- 'parent_id' => null
- ),
- 'children' => array(
- array(
- 'ModelName' => array(
- 'id' => 7,
- 'parent_id' => 6
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 8,
- 'parent_id' => 6
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 9,
- 'parent_id' => 6
- ),
- 'children' => array()
- ),
- array(
- 'ModelName' => array(
- 'id' => 10,
- 'parent_id' => 6
- ),
- 'children' => array()
- )
- )
- )
- );
- $result = Set::nest($input, array('root' => 6));
- $this->assertEquals($expected, $result);
- }
- /**
- * test Set nest with a 1d array - this method should be able to handle any type of array input
- *
- * @return void
- */
- public function testNest1Dimensional() {
- $input = array(
- array(
- 'id' => 1,
- 'parent_id' => null
- ),
- array(
- 'id' => 2,
- 'parent_id' => 1
- ),
- array(
- 'id' => 3,
- 'parent_id' => 1
- ),
- array(
- 'id' => 4,
- 'parent_id' => 1
- ),
- array(
- 'id' => 5,
- 'parent_id' => 1
- ),
- array(
- 'id' => 6,
- 'parent_id' => null
- ),
- array(
- 'id' => 7,
- 'parent_id' => 6
- ),
- array(
- 'id' => 8,
- 'parent_id' => 6
- ),
- array(
- 'id' => 9,
- 'parent_id' => 6
- ),
- array(
- 'id' => 10,
- 'parent_id' => 6
- )
- );
- $expected = array(
- array(
- 'id' => 1,
- 'parent_id' => null,
- 'children' => array(
- array(
- 'id' => 2,
- 'parent_id' => 1,
- 'children' => array()
- ),
- array(
- 'id' => 3,
- 'parent_id' => 1,
- 'children' => array()
- ),
- array(
- 'id' => 4,
- 'parent_id' => 1,
- 'children' => array()
- ),
- array(
- 'id' => 5,
- 'parent_id' => 1,
- 'children' => array()
- ),
- )
- ),
- array(
- 'id' => 6,
- 'parent_id' => null,
- 'children' => array(
- array(
- 'id' => 7,
- 'parent_id' => 6,
- 'children' => array()
- ),
- array(
- 'id' => 8,
- 'parent_id' => 6,
- 'children' => array()
- ),
- array(
- 'id' => 9,
- 'parent_id' => 6,
- 'children' => array()
- ),
- array(
- 'id' => 10,
- 'parent_id' => 6,
- 'children' => array()
- )
- )
- )
- );
- $result = Set::nest($input, array('idPath' => '/id', 'parentPath' => '/parent_id'));
- $this->assertEquals($expected, $result);
- }
- /**
- * test Set nest with no specified parent data.
- *
- * The result should be the same as the input.
- * For an easier comparison, unset all the empty children arrays from the result
- *
- * @return void
- */
- public function testMissingParent() {
- $input = array(
- array(
- 'id' => 1,
- ),
- array(
- 'id' => 2,
- ),
- array(
- 'id' => 3,
- ),
- array(
- 'id' => 4,
- ),
- array(
- 'id' => 5,
- ),
- array(
- 'id' => 6,
- ),
- array(
- 'id' => 7,
- ),
- array(
- 'id' => 8,
- ),
- array(
- 'id' => 9,
- ),
- array(
- 'id' => 10,
- )
- );
- $result = Set::nest($input, array('idPath' => '/id', 'parentPath' => '/parent_id'));
- foreach ($result as &$row) {
- if (empty($row['children'])) {
- unset($row['children']);
- }
- }
- $this->assertEquals($input, $result);
- }
- }
|