| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 2.2.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Utility;
- use ArrayObject;
- use Cake\ORM\Entity;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\Hash;
- /**
- * Class HashTest
- *
- */
- class HashTest extends TestCase
- {
- /**
- * Data provider
- *
- * @return array
- */
- public static function articleData()
- {
- return [
- [
- 'Article' => [
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body'
- ],
- 'User' => [
- 'id' => '1',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ],
- 'Comment' => [
- [
- 'id' => '1',
- 'article_id' => '1',
- 'user_id' => '2',
- 'comment' => 'First Comment for First Article',
- ],
- [
- 'id' => '2',
- 'article_id' => '1',
- 'user_id' => '4',
- 'comment' => 'Second Comment for First Article',
- ],
- ],
- 'Tag' => [
- [
- 'id' => '1',
- 'tag' => 'tag1',
- ],
- [
- 'id' => '2',
- 'tag' => 'tag2',
- ]
- ],
- 'Deep' => [
- 'Nesting' => [
- 'test' => [
- 1 => 'foo',
- 2 => [
- 'and' => ['more' => 'stuff']
- ]
- ]
- ]
- ]
- ],
- [
- 'Article' => [
- 'id' => '2',
- 'user_id' => '1',
- 'title' => 'Second Article',
- 'body' => 'Second Article Body',
- 'published' => 'Y',
- ],
- 'User' => [
- 'id' => '2',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ],
- 'Comment' => [],
- 'Tag' => []
- ],
- [
- 'Article' => [
- 'id' => '3',
- 'user_id' => '1',
- 'title' => 'Third Article',
- 'body' => 'Third Article Body',
- ],
- 'User' => [
- 'id' => '3',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ],
- 'Comment' => [],
- 'Tag' => []
- ],
- [
- 'Article' => [
- 'id' => '4',
- 'user_id' => '1',
- 'title' => 'Fourth Article',
- 'body' => 'Fourth Article Body',
- ],
- 'User' => [
- 'id' => '4',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ],
- 'Comment' => [],
- 'Tag' => []
- ],
- [
- 'Article' => [
- 'id' => '5',
- 'user_id' => '1',
- 'title' => 'Fifth Article',
- 'body' => 'Fifth Article Body',
- ],
- 'User' => [
- 'id' => '5',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ],
- 'Comment' => [],
- 'Tag' => []
- ]
- ];
- }
- /**
- * Data provider
- *
- * @return array
- */
- public static function articleDataObject()
- {
- return new ArrayObject([
- new Entity([
- 'Article' => new ArrayObject([
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body'
- ]),
- 'User' => new ArrayObject([
- 'id' => '1',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ]),
- 'Comment' => new ArrayObject([
- new ArrayObject([
- 'id' => '1',
- 'article_id' => '1',
- 'user_id' => '2',
- 'comment' => 'First Comment for First Article',
- ]),
- new ArrayObject([
- 'id' => '2',
- 'article_id' => '1',
- 'user_id' => '4',
- 'comment' => 'Second Comment for First Article',
- ]),
- ]),
- 'Tag' => new ArrayObject([
- new ArrayObject([
- 'id' => '1',
- 'tag' => 'tag1',
- ]),
- new ArrayObject([
- 'id' => '2',
- 'tag' => 'tag2',
- ])
- ]),
- 'Deep' => new ArrayObject([
- 'Nesting' => new ArrayObject([
- 'test' => new ArrayObject([
- 1 => 'foo',
- 2 => new ArrayObject([
- 'and' => new ArrayObject(['more' => 'stuff'])
- ])
- ])
- ])
- ])
- ]),
- new ArrayObject([
- 'Article' => new ArrayObject([
- 'id' => '2',
- 'user_id' => '1',
- 'title' => 'Second Article',
- 'body' => 'Second Article Body',
- 'published' => 'Y',
- ]),
- 'User' => new ArrayObject([
- 'id' => '2',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ]),
- 'Comment' => new ArrayObject([]),
- 'Tag' => new ArrayObject([])
- ]),
- new ArrayObject([
- 'Article' => new ArrayObject([
- 'id' => '3',
- 'user_id' => '1',
- 'title' => 'Third Article',
- 'body' => 'Third Article Body',
- ]),
- 'User' => new ArrayObject([
- 'id' => '3',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ]),
- 'Comment' => new ArrayObject([]),
- 'Tag' => new ArrayObject([])
- ]),
- new ArrayObject([
- 'Article' => new ArrayObject([
- 'id' => '4',
- 'user_id' => '1',
- 'title' => 'Fourth Article',
- 'body' => 'Fourth Article Body',
- ]),
- 'User' => new ArrayObject([
- 'id' => '4',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ]),
- 'Comment' => new ArrayObject([]),
- 'Tag' => new ArrayObject([])
- ]),
- new ArrayObject([
- 'Article' => new ArrayObject([
- 'id' => '5',
- 'user_id' => '1',
- 'title' => 'Fifth Article',
- 'body' => 'Fifth Article Body',
- ]),
- 'User' => new ArrayObject([
- 'id' => '5',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ]),
- 'Comment' => new ArrayObject([]),
- 'Tag' => new ArrayObject([])
- ])
- ]);
- }
- /**
- * Data provider
- *
- * @return array
- */
- public static function articleDataSets()
- {
- return [
- [static::articleData()],
- [static::articleDataObject()]
- ];
- }
- /**
- * Data provider
- *
- * @return array
- */
- public static function userData()
- {
- return [
- [
- 'User' => [
- 'id' => 2,
- 'group_id' => 1,
- 'Data' => [
- 'user' => 'mariano.iglesias',
- 'name' => 'Mariano Iglesias'
- ]
- ]
- ],
- [
- 'User' => [
- 'id' => 14,
- 'group_id' => 2,
- 'Data' => [
- 'user' => 'phpnut',
- 'name' => 'Larry E. Masters'
- ]
- ]
- ],
- [
- 'User' => [
- 'id' => 25,
- 'group_id' => 1,
- 'Data' => [
- 'user' => 'gwoo',
- 'name' => 'The Gwoo'
- ]
- ]
- ]
- ];
- }
- /**
- * Test get()
- *
- * @return void
- */
- public function testGet()
- {
- $data = ['abc', 'def'];
- $result = Hash::get($data, '0');
- $this->assertEquals('abc', $result);
- $result = Hash::get($data, 0);
- $this->assertEquals('abc', $result);
- $result = Hash::get($data, '1');
- $this->assertEquals('def', $result);
- $data = self::articleData();
- $result = Hash::get([], '1.Article.title');
- $this->assertNull($result);
- $result = Hash::get($data, '');
- $this->assertNull($result);
- $result = Hash::get($data, null, '-');
- $this->assertSame('-', $result);
- $result = Hash::get($data, '0.Article.title');
- $this->assertEquals('First Article', $result);
- $result = Hash::get($data, '1.Article.title');
- $this->assertEquals('Second Article', $result);
- $result = Hash::get($data, '5.Article.title');
- $this->assertNull($result);
- $default = ['empty'];
- $this->assertEquals($default, Hash::get($data, '5.Article.title', $default));
- $this->assertEquals($default, Hash::get([], '5.Article.title', $default));
- $result = Hash::get($data, '1.Article.title.not_there');
- $this->assertNull($result);
- $result = Hash::get($data, '1.Article');
- $this->assertEquals($data[1]['Article'], $result);
- $result = Hash::get($data, ['1', 'Article']);
- $this->assertEquals($data[1]['Article'], $result);
- // Object which implements ArrayAccess
- $nested = new ArrayObject([
- 'user' => 'bar'
- ]);
- $data = new ArrayObject([
- 'name' => 'foo',
- 'associated' => $nested
- ]);
- $return = Hash::get($data, 'name');
- $this->assertEquals('foo', $return);
- $return = Hash::get($data, 'associated');
- $this->assertEquals($nested, $return);
- $return = Hash::get($data, 'associated.user');
- $this->assertEquals('bar', $return);
- $return = Hash::get($data, 'non-existent');
- $this->assertNull($return);
- $data = ['a' => ['b' => ['c' => ['d' => 1]]]];
- $this->assertEquals(1, Hash::get(new ArrayObject($data), 'a.b.c.d'));
- }
- /**
- * Test get() for invalid $data type
- *
- * @expectedException \InvalidArgumentException
- * @expectedExceptionMessage Invalid data type, must be an array or \ArrayAccess instance.
- * @return void
- */
- public function testGetInvalidData()
- {
- Hash::get('string', 'path');
- }
- /**
- * Test get() with an invalid path
- *
- * @expectedException \InvalidArgumentException
- * @return void
- */
- public function testGetInvalidPath()
- {
- Hash::get(['one' => 'two'], true);
- }
- /**
- * Test dimensions.
- *
- * @return void
- */
- public function testDimensions()
- {
- $result = Hash::dimensions([]);
- $this->assertEquals($result, 0);
- $data = ['one', '2', 'three'];
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 1);
- $data = ['1' => '1.1', '2', '3'];
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 1);
- $data = ['1' => ['1.1' => '1.1.1'], '2', '3' => ['3.1' => '3.1.1']];
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 2);
- $data = ['1' => '1.1', '2', '3' => ['3.1' => '3.1.1']];
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 1);
- $data = ['1' => ['1.1' => '1.1.1'], '2', '3' => ['3.1' => ['3.1.1' => '3.1.1.1']]];
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 2);
- }
- /**
- * Test maxDimensions
- *
- * @return void
- */
- public function testMaxDimensions()
- {
- $data = [];
- $result = Hash::maxDimensions($data);
- $this->assertEquals(0, $result);
- $data = ['a', 'b'];
- $result = Hash::maxDimensions($data);
- $this->assertEquals(1, $result);
- $data = ['1' => '1.1', '2', '3' => ['3.1' => '3.1.1']];
- $result = Hash::maxDimensions($data);
- $this->assertEquals($result, 2);
- $data = ['1' => ['1.1' => '1.1.1'], '2', '3' => ['3.1' => ['3.1.1' => '3.1.1.1']]];
- $result = Hash::maxDimensions($data);
- $this->assertEquals($result, 3);
- $data = [
- '1' => ['1.1' => '1.1.1'],
- ['2' => ['2.1' => ['2.1.1' => '2.1.1.1']]],
- '3' => ['3.1' => ['3.1.1' => '3.1.1.1']]
- ];
- $result = Hash::maxDimensions($data);
- $this->assertEquals($result, 4);
- $data = [
- '1' => [
- '1.1' => '1.1.1',
- '1.2' => [
- '1.2.1' => [
- '1.2.1.1',
- ['1.2.2.1']
- ]
- ]
- ],
- '2' => ['2.1' => '2.1.1']
- ];
- $result = Hash::maxDimensions($data);
- $this->assertEquals($result, 5);
- }
- /**
- * Tests Hash::flatten
- *
- * @return void
- */
- public function testFlatten()
- {
- $data = ['Larry', 'Curly', 'Moe'];
- $result = Hash::flatten($data);
- $this->assertEquals($result, $data);
- $data[9] = 'Shemp';
- $result = Hash::flatten($data);
- $this->assertEquals($result, $data);
- $data = [
- [
- 'Post' => ['id' => '1', 'author_id' => '1', 'title' => 'First Post'],
- 'Author' => ['id' => '1', 'user' => 'nate', 'password' => 'foo'],
- ],
- [
- 'Post' => ['id' => '2', 'author_id' => '3', 'title' => 'Second Post', 'body' => 'Second Post Body'],
- 'Author' => ['id' => '3', 'user' => 'larry', 'password' => null],
- ]
- ];
- $result = Hash::flatten($data);
- $expected = [
- '0.Post.id' => '1',
- '0.Post.author_id' => '1',
- '0.Post.title' => 'First Post',
- '0.Author.id' => '1',
- '0.Author.user' => 'nate',
- '0.Author.password' => 'foo',
- '1.Post.id' => '2',
- '1.Post.author_id' => '3',
- '1.Post.title' => 'Second Post',
- '1.Post.body' => 'Second Post Body',
- '1.Author.id' => '3',
- '1.Author.user' => 'larry',
- '1.Author.password' => null
- ];
- $this->assertEquals($expected, $result);
- $data = [
- [
- 'Post' => ['id' => '1', 'author_id' => null, 'title' => 'First Post'],
- 'Author' => [],
- ]
- ];
- $result = Hash::flatten($data);
- $expected = [
- '0.Post.id' => '1',
- '0.Post.author_id' => null,
- '0.Post.title' => 'First Post',
- '0.Author' => []
- ];
- $this->assertEquals($expected, $result);
- $data = [
- ['Post' => ['id' => 1]],
- ['Post' => ['id' => 2]],
- ];
- $result = Hash::flatten($data, '/');
- $expected = [
- '0/Post/id' => '1',
- '1/Post/id' => '2',
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test diff();
- *
- * @return void
- */
- public function testDiff()
- {
- $a = [
- 0 => ['name' => 'main'],
- 1 => ['name' => 'about']
- ];
- $b = [
- 0 => ['name' => 'main'],
- 1 => ['name' => 'about'],
- 2 => ['name' => 'contact']
- ];
- $result = Hash::diff($a, []);
- $expected = $a;
- $this->assertEquals($expected, $result);
- $result = Hash::diff([], $b);
- $expected = $b;
- $this->assertEquals($expected, $result);
- $result = Hash::diff($a, $b);
- $expected = [
- 2 => ['name' => 'contact']
- ];
- $this->assertEquals($expected, $result);
- $b = [
- 0 => ['name' => 'me'],
- 1 => ['name' => 'about']
- ];
- $result = Hash::diff($a, $b);
- $expected = [
- 0 => ['name' => 'main']
- ];
- $this->assertEquals($expected, $result);
- $a = [];
- $b = ['name' => 'bob', 'address' => 'home'];
- $result = Hash::diff($a, $b);
- $this->assertEquals($result, $b);
- $a = ['name' => 'bob', 'address' => 'home'];
- $b = [];
- $result = Hash::diff($a, $b);
- $this->assertEquals($result, $a);
- $a = ['key' => true, 'another' => false, 'name' => 'me'];
- $b = ['key' => 1, 'another' => 0];
- $expected = ['name' => 'me'];
- $result = Hash::diff($a, $b);
- $this->assertEquals($expected, $result);
- $a = ['key' => 'value', 'another' => null, 'name' => 'me'];
- $b = ['key' => 'differentValue', 'another' => null];
- $expected = ['key' => 'value', 'name' => 'me'];
- $result = Hash::diff($a, $b);
- $this->assertEquals($expected, $result);
- $a = ['key' => 'value', 'another' => null, 'name' => 'me'];
- $b = ['key' => 'differentValue', 'another' => 'value'];
- $expected = ['key' => 'value', 'another' => null, 'name' => 'me'];
- $result = Hash::diff($a, $b);
- $this->assertEquals($expected, $result);
- $a = ['key' => 'value', 'another' => null, 'name' => 'me'];
- $b = ['key' => 'differentValue', 'another' => 'value'];
- $expected = ['key' => 'differentValue', 'another' => 'value', 'name' => 'me'];
- $result = Hash::diff($b, $a);
- $this->assertEquals($expected, $result);
- $a = ['key' => 'value', 'another' => null, 'name' => 'me'];
- $b = [0 => 'differentValue', 1 => 'value'];
- $expected = $a + $b;
- $result = Hash::diff($a, $b);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test merge()
- *
- * @return void
- */
- public function testMerge()
- {
- $result = Hash::merge(['foo'], ['bar']);
- $this->assertEquals($result, ['foo', 'bar']);
- $result = Hash::merge(['foo'], ['user' => 'bob', 'no-bar'], 'bar');
- $this->assertEquals($result, ['foo', 'user' => 'bob', 'no-bar', 'bar']);
- $a = ['foo', 'foo2'];
- $b = ['bar', 'bar2'];
- $expected = ['foo', 'foo2', 'bar', 'bar2'];
- $this->assertEquals($expected, Hash::merge($a, $b));
- $a = ['foo' => 'bar', 'bar' => 'foo'];
- $b = ['foo' => 'no-bar', 'bar' => 'no-foo'];
- $expected = ['foo' => 'no-bar', 'bar' => 'no-foo'];
- $this->assertEquals($expected, Hash::merge($a, $b));
- $a = ['users' => ['bob', 'jim']];
- $b = ['users' => ['lisa', 'tina']];
- $expected = ['users' => ['bob', 'jim', 'lisa', 'tina']];
- $this->assertEquals($expected, Hash::merge($a, $b));
- $a = ['users' => ['jim', 'bob']];
- $b = ['users' => 'none'];
- $expected = ['users' => 'none'];
- $this->assertEquals($expected, Hash::merge($a, $b));
- $a = ['users' => ['lisa' => ['id' => 5, 'pw' => 'secret']], 'cakephp'];
- $b = ['users' => ['lisa' => ['pw' => 'new-pass', 'age' => 23]], 'ice-cream'];
- $expected = [
- 'users' => ['lisa' => ['id' => 5, 'pw' => 'new-pass', 'age' => 23]],
- 'cakephp',
- 'ice-cream'
- ];
- $result = Hash::merge($a, $b);
- $this->assertEquals($expected, $result);
- $c = [
- 'users' => ['lisa' => ['pw' => 'you-will-never-guess', 'age' => 25, 'pet' => 'dog']],
- 'chocolate'
- ];
- $expected = [
- 'users' => ['lisa' => ['id' => 5, 'pw' => 'you-will-never-guess', 'age' => 25, 'pet' => 'dog']],
- 'cakephp',
- 'ice-cream',
- 'chocolate'
- ];
- $this->assertEquals($expected, Hash::merge($a, $b, $c));
- $this->assertEquals($expected, Hash::merge($a, $b, [], $c));
- $a = [
- 'Tree',
- 'CounterCache',
- 'Upload' => [
- 'folder' => 'products',
- 'fields' => ['image_1_id', 'image_2_id', 'image_3_id', 'image_4_id', 'image_5_id']
- ]
- ];
- $b = [
- 'Cacheable' => ['enabled' => false],
- 'Limit',
- 'Bindable',
- 'Validator',
- 'Transactional'
- ];
- $expected = [
- 'Tree',
- 'CounterCache',
- 'Upload' => [
- 'folder' => 'products',
- 'fields' => ['image_1_id', 'image_2_id', 'image_3_id', 'image_4_id', 'image_5_id']
- ],
- 'Cacheable' => ['enabled' => false],
- 'Limit',
- 'Bindable',
- 'Validator',
- 'Transactional'
- ];
- $this->assertEquals($expected, Hash::merge($a, $b));
- }
- /**
- * test normalizing arrays
- *
- * @return void
- */
- public function testNormalize()
- {
- $result = Hash::normalize(['one', 'two', 'three']);
- $expected = ['one' => null, 'two' => null, 'three' => null];
- $this->assertEquals($expected, $result);
- $result = Hash::normalize(['one', 'two', 'three'], false);
- $expected = ['one', 'two', 'three'];
- $this->assertEquals($expected, $result);
- $result = Hash::normalize(['one' => 1, 'two' => 2, 'three' => 3, 'four'], false);
- $expected = ['one' => 1, 'two' => 2, 'three' => 3, 'four' => null];
- $this->assertEquals($expected, $result);
- $result = Hash::normalize(['one' => 1, 'two' => 2, 'three' => 3, 'four']);
- $expected = ['one' => 1, 'two' => 2, 'three' => 3, 'four' => null];
- $this->assertEquals($expected, $result);
- $result = Hash::normalize(['one' => ['a', 'b', 'c' => 'cee'], 'two' => 2, 'three']);
- $expected = ['one' => ['a', 'b', 'c' => 'cee'], 'two' => 2, 'three' => null];
- $this->assertEquals($expected, $result);
- }
- /**
- * testContains method
- *
- * @return void
- */
- public function testContains()
- {
- $data = ['apple', 'bee', 'cyclops'];
- $this->assertTrue(Hash::contains($data, ['apple']));
- $this->assertFalse(Hash::contains($data, ['data']));
- $a = [
- 0 => ['name' => 'main'],
- 1 => ['name' => 'about']
- ];
- $b = [
- 0 => ['name' => 'main'],
- 1 => ['name' => 'about'],
- 2 => ['name' => 'contact'],
- 'a' => 'b'
- ];
- $this->assertTrue(Hash::contains($a, $a));
- $this->assertFalse(Hash::contains($a, $b));
- $this->assertTrue(Hash::contains($b, $a));
- $a = [
- ['User' => ['id' => 1]],
- ['User' => ['id' => 2]],
- ];
- $b = [
- ['User' => ['id' => 1]],
- ['User' => ['id' => 2]],
- ['User' => ['id' => 3]]
- ];
- $this->assertTrue(Hash::contains($b, $a));
- $this->assertFalse(Hash::contains($a, $b));
- $a = [0 => 'test', 'string' => null];
- $this->assertTrue(Hash::contains($a, ['string' => null]));
- $a = [0 => 'test', 'string' => null];
- $this->assertTrue(Hash::contains($a, ['test']));
- }
- /**
- * testFilter method
- *
- * @return void
- */
- public function testFilter()
- {
- $result = Hash::filter(['0', false, true, 0, ['one thing', 'I can tell you', 'is you got to be', false]]);
- $expected = ['0', 2 => true, 3 => 0, 4 => ['one thing', 'I can tell you', 'is you got to be']];
- $this->assertSame($expected, $result);
- $result = Hash::filter([1, [false]]);
- $expected = [1];
- $this->assertEquals($expected, $result);
- $result = Hash::filter([1, [false, false]]);
- $expected = [1];
- $this->assertEquals($expected, $result);
- $result = Hash::filter([1, ['empty', false]]);
- $expected = [1, ['empty']];
- $this->assertEquals($expected, $result);
- $result = Hash::filter([1, ['2', false, [3, null]]]);
- $expected = [1, ['2', 2 => [3]]];
- $this->assertEquals($expected, $result);
- $this->assertSame([], Hash::filter([]));
- }
- /**
- * testNumericArrayCheck method
- *
- * @return void
- */
- public function testNumeric()
- {
- $data = ['one'];
- $this->assertTrue(Hash::numeric(array_keys($data)));
- $data = [1 => 'one'];
- $this->assertFalse(Hash::numeric($data));
- $data = ['one'];
- $this->assertFalse(Hash::numeric($data));
- $data = ['one' => 'two'];
- $this->assertFalse(Hash::numeric($data));
- $data = ['one' => 1];
- $this->assertTrue(Hash::numeric($data));
- $data = [0];
- $this->assertTrue(Hash::numeric($data));
- $data = ['one', 'two', 'three', 'four', 'five'];
- $this->assertTrue(Hash::numeric(array_keys($data)));
- $data = [1 => 'one', 2 => 'two', 3 => 'three', 4 => 'four', 5 => 'five'];
- $this->assertTrue(Hash::numeric(array_keys($data)));
- $data = ['1' => 'one', 2 => 'two', 3 => 'three', 4 => 'four', 5 => 'five'];
- $this->assertTrue(Hash::numeric(array_keys($data)));
- $data = ['one', 2 => 'two', 3 => 'three', 4 => 'four', 'a' => 'five'];
- $this->assertFalse(Hash::numeric(array_keys($data)));
- $data = [2.4, 1, 0, -1, -2];
- $this->assertTrue(Hash::numeric($data));
- }
- /**
- * Test passing invalid argument type
- *
- * @expectedException InvalidArgumentException
- * @expectedExceptionMessage Invalid data type, must be an array or \ArrayAccess instance.
- * @return void
- */
- public function testExtractInvalidArgument()
- {
- Hash::extract('foo', '');
- }
- /**
- * Test the extraction of a single value filtered by another field.
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractSingleValueWithFilteringByAnotherField($data)
- {
- $result = Hash::extract($data, '{*}.Article[id=1].title');
- $this->assertEquals([0 => 'First Article'], $result);
- $result = Hash::extract($data, '{*}.Article[id=2].title');
- $this->assertEquals([0 => 'Second Article'], $result);
- }
- /**
- * Test simple paths.
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractBasic($data)
- {
- $result = Hash::extract($data, '');
- $this->assertEquals($data, $result);
- $result = Hash::extract($data, '0.Article.title');
- $this->assertEquals(['First Article'], $result);
- $result = Hash::extract($data, '1.Article.title');
- $this->assertEquals(['Second Article'], $result);
- $result = Hash::extract([false], '{n}.Something.another_thing');
- $this->assertEquals([], $result);
- }
- /**
- * Test the {n} selector
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractNumericKey($data)
- {
- $result = Hash::extract($data, '{n}.Article.title');
- $expected = [
- 'First Article', 'Second Article',
- 'Third Article', 'Fourth Article',
- 'Fifth Article'
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '0.Comment.{n}.user_id');
- $expected = [
- '2', '4'
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the {n} selector with inconsistent arrays
- *
- * @return void
- */
- public function testExtractNumericMixedKeys()
- {
- $data = [
- 'User' => [
- 0 => [
- 'id' => 4,
- 'name' => 'Neo'
- ],
- 1 => [
- 'id' => 5,
- 'name' => 'Morpheus'
- ],
- 'stringKey' => [
- 'name' => 'Fail'
- ]
- ]
- ];
- $result = Hash::extract($data, 'User.{n}.name');
- $expected = ['Neo', 'Morpheus'];
- $this->assertEquals($expected, $result);
- $data = new ArrayObject([
- 'User' => new ArrayObject([
- 0 => new Entity([
- 'id' => 4,
- 'name' => 'Neo'
- ]),
- 1 => new ArrayObject([
- 'id' => 5,
- 'name' => 'Morpheus'
- ]),
- 'stringKey' => new ArrayObject([
- 'name' => 'Fail'
- ])
- ])
- ]);
- $result = Hash::extract($data, 'User.{n}.name');
- $this->assertEquals($expected, $result);
- $data = [
- 0 => new Entity([
- 'id' => 4,
- 'name' => 'Neo'
- ]),
- 'stringKey' => new ArrayObject([
- 'name' => 'Fail'
- ])
- ];
- $result = Hash::extract($data, '{n}.name');
- $expected = ['Neo'];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the {n} selector with non-zero based arrays
- *
- * @return void
- */
- public function testExtractNumericNonZero()
- {
- $data = [
- 1 => [
- 'User' => [
- 'id' => 1,
- 'name' => 'John',
- ]
- ],
- 2 => [
- 'User' => [
- 'id' => 2,
- 'name' => 'Bob',
- ]
- ],
- 3 => [
- 'User' => [
- 'id' => 3,
- 'name' => 'Tony',
- ]
- ]
- ];
- $result = Hash::extract($data, '{n}.User.name');
- $expected = ['John', 'Bob', 'Tony'];
- $this->assertEquals($expected, $result);
- $data = new ArrayObject([
- 1 => new ArrayObject([
- 'User' => new ArrayObject([
- 'id' => 1,
- 'name' => 'John',
- ])
- ]),
- 2 => new ArrayObject([
- 'User' => new ArrayObject([
- 'id' => 2,
- 'name' => 'Bob',
- ])
- ]),
- 3 => new ArrayObject([
- 'User' => new ArrayObject([
- 'id' => 3,
- 'name' => 'Tony',
- ])
- ])
- ]);
- $result = Hash::extract($data, '{n}.User.name');
- $expected = ['John', 'Bob', 'Tony'];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the {s} selector.
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractStringKey($data)
- {
- $result = Hash::extract($data, '{n}.{s}.user');
- $expected = [
- 'mariano',
- 'mariano',
- 'mariano',
- 'mariano',
- 'mariano'
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '{n}.{s}.Nesting.test.1');
- $this->assertEquals(['foo'], $result);
- }
- /**
- * Test wildcard matcher
- *
- * @return void
- */
- public function testExtractWildcard()
- {
- $data = [
- '02000009C5560001' => ['name' => 'Mr. Alphanumeric'],
- '2300000918020101' => ['name' => 'Mr. Numeric'],
- '390000096AB30001' => ['name' => 'Mrs. Alphanumeric'],
- 'stuff' => ['name' => 'Ms. Word'],
- 123 => ['name' => 'Mr. Number'],
- true => ['name' => 'Ms. Bool'],
- ];
- $result = Hash::extract($data, '{*}.name');
- $expected = [
- 'Mr. Alphanumeric',
- 'Mr. Numeric',
- 'Mrs. Alphanumeric',
- 'Ms. Word',
- 'Mr. Number',
- 'Ms. Bool',
- ];
- $this->assertEquals($expected, $result);
- $data = new ArrayObject([
- '02000009C5560001' => new ArrayObject(['name' => 'Mr. Alphanumeric']),
- '2300000918020101' => new ArrayObject(['name' => 'Mr. Numeric']),
- '390000096AB30001' => new ArrayObject(['name' => 'Mrs. Alphanumeric']),
- 'stuff' => new ArrayObject(['name' => 'Ms. Word']),
- 123 => new ArrayObject(['name' => 'Mr. Number']),
- true => new ArrayObject(['name' => 'Ms. Bool']),
- ]);
- $result = Hash::extract($data, '{*}.name');
- $expected = [
- 'Mr. Alphanumeric',
- 'Mr. Numeric',
- 'Mrs. Alphanumeric',
- 'Ms. Word',
- 'Mr. Number',
- 'Ms. Bool',
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the attribute presense selector.
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractAttributePresence($data)
- {
- $result = Hash::extract($data, '{n}.Article[published]');
- $expected = [$data[1]['Article']];
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '{n}.Article[id][published]');
- $expected = [$data[1]['Article']];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test = and != operators.
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractAttributeEquality($data)
- {
- $result = Hash::extract($data, '{n}.Article[id=3]');
- $expected = [$data[2]['Article']];
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '{n}.Article[id = 3]');
- $expected = [$data[2]['Article']];
- $this->assertEquals($expected, $result, 'Whitespace should not matter.');
- $result = Hash::extract($data, '{n}.Article[id!=3]');
- $this->assertEquals(1, $result[0]['id']);
- $this->assertEquals(2, $result[1]['id']);
- $this->assertEquals(4, $result[2]['id']);
- $this->assertEquals(5, $result[3]['id']);
- }
- /**
- * Test extracting based on attributes with boolean values.
- *
- * @return void
- */
- public function testExtractAttributeBoolean()
- {
- $usersArray = [
- [
- 'id' => 2,
- 'username' => 'johndoe',
- 'active' => true
- ],
- [
- 'id' => 5,
- 'username' => 'kevin',
- 'active' => true
- ],
- [
- 'id' => 9,
- 'username' => 'samantha',
- 'active' => false
- ],
- ];
- $usersObject = new ArrayObject([
- new ArrayObject([
- 'id' => 2,
- 'username' => 'johndoe',
- 'active' => true
- ]),
- new ArrayObject([
- 'id' => 5,
- 'username' => 'kevin',
- 'active' => true
- ]),
- new ArrayObject([
- 'id' => 9,
- 'username' => 'samantha',
- 'active' => false
- ]),
- ]);
- foreach ([$usersArray, $usersObject] as $users) {
- $result = Hash::extract($users, '{n}[active=0]');
- $this->assertCount(1, $result);
- $this->assertEquals($users[2], $result[0]);
- $result = Hash::extract($users, '{n}[active=false]');
- $this->assertCount(1, $result);
- $this->assertEquals($users[2], $result[0]);
- $result = Hash::extract($users, '{n}[active=1]');
- $this->assertCount(2, $result);
- $this->assertEquals($users[0], $result[0]);
- $this->assertEquals($users[1], $result[1]);
- $result = Hash::extract($users, '{n}[active=true]');
- $this->assertCount(2, $result);
- $this->assertEquals($users[0], $result[0]);
- $this->assertEquals($users[1], $result[1]);
- }
- }
- /**
- * Test that attribute matchers don't cause errors on scalar data.
- *
- * @return void
- */
- public function testExtractAttributeEqualityOnScalarValue()
- {
- $dataArray = [
- 'Entity' => [
- 'id' => 1,
- 'data1' => 'value',
- ]
- ];
- $dataObject = new ArrayObject([
- 'Entity' => new ArrayObject([
- 'id' => 1,
- 'data1' => 'value',
- ])
- ]);
- foreach ([$dataArray, $dataObject] as $data) {
- $result = Hash::extract($data, 'Entity[id=1].data1');
- $this->assertEquals(['value'], $result);
- $data = ['Entity' => false];
- $result = Hash::extract($data, 'Entity[id=1].data1');
- $this->assertEquals([], $result);
- }
- }
- /**
- * Test comparison operators.
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractAttributeComparison($data)
- {
- $result = Hash::extract($data, '{n}.Comment.{n}[user_id > 2]');
- $expected = [$data[0]['Comment'][1]];
- $this->assertEquals($expected, $result);
- $this->assertEquals(4, $expected[0]['user_id']);
- $result = Hash::extract($data, '{n}.Comment.{n}[user_id >= 4]');
- $expected = [$data[0]['Comment'][1]];
- $this->assertEquals($expected, $result);
- $this->assertEquals(4, $expected[0]['user_id']);
- $result = Hash::extract($data, '{n}.Comment.{n}[user_id < 3]');
- $expected = [$data[0]['Comment'][0]];
- $this->assertEquals($expected, $result);
- $this->assertEquals(2, $expected[0]['user_id']);
- $result = Hash::extract($data, '{n}.Comment.{n}[user_id <= 2]');
- $expected = [$data[0]['Comment'][0]];
- $this->assertEquals($expected, $result);
- $this->assertEquals(2, $expected[0]['user_id']);
- }
- /**
- * Test multiple attributes with conditions.
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractAttributeMultiple($data)
- {
- $result = Hash::extract($data, '{n}.Comment.{n}[user_id > 2][id=1]');
- $this->assertEmpty($result);
- $result = Hash::extract($data, '{n}.Comment.{n}[user_id > 2][id=2]');
- $expected = [$data[0]['Comment'][1]];
- $this->assertEquals($expected, $result);
- $this->assertEquals(4, $expected[0]['user_id']);
- }
- /**
- * Test attribute pattern matching.
- *
- * @dataProvider articleDataSets
- * @return void
- */
- public function testExtractAttributePattern($data)
- {
- $result = Hash::extract($data, '{n}.Article[title=/^First/]');
- $expected = [$data[0]['Article']];
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '{n}.Article[title=/^Fir[a-z]+/]');
- $expected = [$data[0]['Article']];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that extract() + matching can hit null things.
- *
- * @return void
- */
- public function testExtractMatchesNull()
- {
- $data = [
- 'Country' => [
- ['name' => 'Canada'],
- ['name' => 'Australia'],
- ['name' => null],
- ]
- ];
- $result = Hash::extract($data, 'Country.{n}[name=/Canada|^$/]');
- $expected = [
- [
- 'name' => 'Canada',
- ],
- [
- 'name' => null,
- ],
- ];
- $this->assertEquals($expected, $result);
- $data = new ArrayObject([
- 'Country' => new ArrayObject([
- ['name' => 'Canada'],
- ['name' => 'Australia'],
- ['name' => null],
- ])
- ]);
- $result = Hash::extract($data, 'Country.{n}[name=/Canada|^$/]');
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that uneven keys are handled correctly.
- *
- * @return void
- */
- public function testExtractUnevenKeys()
- {
- $data = [
- 'Level1' => [
- 'Level2' => ['test1', 'test2'],
- 'Level2bis' => ['test3', 'test4']
- ]
- ];
- $this->assertEquals(
- ['test1', 'test2'],
- Hash::extract($data, 'Level1.Level2')
- );
- $this->assertEquals(
- ['test3', 'test4'],
- Hash::extract($data, 'Level1.Level2bis')
- );
- $data = new ArrayObject([
- 'Level1' => new ArrayObject([
- 'Level2' => ['test1', 'test2'],
- 'Level2bis' => ['test3', 'test4']
- ])
- ]);
- $this->assertEquals(
- ['test1', 'test2'],
- Hash::extract($data, 'Level1.Level2')
- );
- $this->assertEquals(
- ['test3', 'test4'],
- Hash::extract($data, 'Level1.Level2bis')
- );
- $data = [
- 'Level1' => [
- 'Level2bis' => [
- ['test3', 'test4'],
- ['test5', 'test6']
- ]
- ]
- ];
- $expected = [
- ['test3', 'test4'],
- ['test5', 'test6']
- ];
- $this->assertEquals($expected, Hash::extract($data, 'Level1.Level2bis'));
- $data['Level1']['Level2'] = ['test1', 'test2'];
- $this->assertEquals($expected, Hash::extract($data, 'Level1.Level2bis'));
- $data = new ArrayObject([
- 'Level1' => new ArrayObject([
- 'Level2bis' => [
- ['test3', 'test4'],
- ['test5', 'test6']
- ]
- ])
- ]);
- $this->assertEquals($expected, Hash::extract($data, 'Level1.Level2bis'));
- $data['Level1']['Level2'] = ['test1', 'test2'];
- $this->assertEquals($expected, Hash::extract($data, 'Level1.Level2bis'));
- }
- /**
- * testSort method
- *
- * @return void
- */
- public function testSort()
- {
- $result = Hash::sort([], '{n}.name');
- $this->assertEquals([], $result);
- $a = [
- 0 => [
- 'Person' => ['name' => 'Jeff'],
- 'Friend' => [['name' => 'Nate']]
- ],
- 1 => [
- 'Person' => ['name' => 'Tracy'],
- 'Friend' => [['name' => 'Lindsay']]
- ]
- ];
- $b = [
- 0 => [
- 'Person' => ['name' => 'Tracy'],
- 'Friend' => [['name' => 'Lindsay']]
- ],
- 1 => [
- 'Person' => ['name' => 'Jeff'],
- 'Friend' => [['name' => 'Nate']]
- ]
- ];
- $a = Hash::sort($a, '{n}.Friend.{n}.name');
- $this->assertEquals($a, $b);
- $b = [
- 0 => [
- 'Person' => ['name' => 'Jeff'],
- 'Friend' => [['name' => 'Nate']]
- ],
- 1 => [
- 'Person' => ['name' => 'Tracy'],
- 'Friend' => [['name' => 'Lindsay']]
- ]
- ];
- $a = [
- 0 => [
- 'Person' => ['name' => 'Tracy'],
- 'Friend' => [['name' => 'Lindsay']]
- ],
- 1 => [
- 'Person' => ['name' => 'Jeff'],
- 'Friend' => [['name' => 'Nate']]
- ]
- ];
- $a = Hash::sort($a, '{n}.Friend.{n}.name', 'desc');
- $this->assertEquals($a, $b);
- $a = [
- 0 => [
- 'Person' => ['name' => 'Jeff'],
- 'Friend' => [['name' => 'Nate']]
- ],
- 1 => [
- 'Person' => ['name' => 'Tracy'],
- 'Friend' => [['name' => 'Lindsay']]
- ],
- 2 => [
- 'Person' => ['name' => 'Adam'],
- 'Friend' => [['name' => 'Bob']]
- ]
- ];
- $b = [
- 0 => [
- 'Person' => ['name' => 'Adam'],
- 'Friend' => [['name' => 'Bob']]
- ],
- 1 => [
- 'Person' => ['name' => 'Jeff'],
- 'Friend' => [['name' => 'Nate']]
- ],
- 2 => [
- 'Person' => ['name' => 'Tracy'],
- 'Friend' => [['name' => 'Lindsay']]
- ]
- ];
- $a = Hash::sort($a, '{n}.Person.name', 'asc');
- $this->assertEquals($a, $b);
- $a = [
- 0 => ['Person' => ['name' => 'Jeff']],
- 1 => ['Shirt' => ['color' => 'black']]
- ];
- $b = [
- 0 => ['Shirt' => ['color' => 'black']],
- 1 => ['Person' => ['name' => 'Jeff']],
- ];
- $a = Hash::sort($a, '{n}.Person.name', 'ASC', 'STRING');
- $this->assertSame($a, $b);
- $names = [
- ['employees' => [
- ['name' => ['first' => 'John', 'last' => 'Doe']]]
- ],
- ['employees' => [
- ['name' => ['first' => 'Jane', 'last' => 'Doe']]]
- ],
- ['employees' => [['name' => []]]],
- ['employees' => [['name' => []]]]
- ];
- $result = Hash::sort($names, '{n}.employees.0.name', 'asc');
- $expected = [
- ['employees' => [
- ['name' => ['first' => 'John', 'last' => 'Doe']]]
- ],
- ['employees' => [
- ['name' => ['first' => 'Jane', 'last' => 'Doe']]]
- ],
- ['employees' => [['name' => []]]],
- ['employees' => [['name' => []]]]
- ];
- $this->assertSame($expected, $result);
- $a = [
- 'SU' => [
- 'total_fulfillable' => 2
- ],
- 'AA' => [
- 'total_fulfillable' => 1
- ],
- 'LX' => [
- 'total_fulfillable' => 0
- ],
- 'BL' => [
- 'total_fulfillable' => 3
- ],
- ];
- $expected = [
- 'LX' => [
- 'total_fulfillable' => 0
- ],
- 'AA' => [
- 'total_fulfillable' => 1
- ],
- 'SU' => [
- 'total_fulfillable' => 2
- ],
- 'BL' => [
- 'total_fulfillable' => 3
- ],
- ];
- $result = Hash::sort($a, '{s}.total_fulfillable', 'asc');
- $this->assertSame($expected, $result);
- }
- /**
- * Test sort() with numeric option.
- *
- * @return void
- */
- public function testSortNumeric()
- {
- $items = [
- ['Item' => ['price' => '155,000']],
- ['Item' => ['price' => '139,000']],
- ['Item' => ['price' => '275,622']],
- ['Item' => ['price' => '230,888']],
- ['Item' => ['price' => '66,000']],
- ];
- $result = Hash::sort($items, '{n}.Item.price', 'asc', 'numeric');
- $expected = [
- ['Item' => ['price' => '66,000']],
- ['Item' => ['price' => '139,000']],
- ['Item' => ['price' => '155,000']],
- ['Item' => ['price' => '230,888']],
- ['Item' => ['price' => '275,622']],
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::sort($items, '{n}.Item.price', 'desc', 'numeric');
- $expected = [
- ['Item' => ['price' => '275,622']],
- ['Item' => ['price' => '230,888']],
- ['Item' => ['price' => '155,000']],
- ['Item' => ['price' => '139,000']],
- ['Item' => ['price' => '66,000']],
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test natural sorting.
- *
- * @return void
- */
- public function testSortNatural()
- {
- $items = [
- ['Item' => ['image' => 'img1.jpg']],
- ['Item' => ['image' => 'img99.jpg']],
- ['Item' => ['image' => 'img12.jpg']],
- ['Item' => ['image' => 'img10.jpg']],
- ['Item' => ['image' => 'img2.jpg']],
- ];
- $result = Hash::sort($items, '{n}.Item.image', 'desc', 'natural');
- $expected = [
- ['Item' => ['image' => 'img99.jpg']],
- ['Item' => ['image' => 'img12.jpg']],
- ['Item' => ['image' => 'img10.jpg']],
- ['Item' => ['image' => 'img2.jpg']],
- ['Item' => ['image' => 'img1.jpg']],
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::sort($items, '{n}.Item.image', 'asc', 'natural');
- $expected = [
- ['Item' => ['image' => 'img1.jpg']],
- ['Item' => ['image' => 'img2.jpg']],
- ['Item' => ['image' => 'img10.jpg']],
- ['Item' => ['image' => 'img12.jpg']],
- ['Item' => ['image' => 'img99.jpg']],
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that sort() with 'natural' type will fallback to 'regular' as SORT_NATURAL is introduced in PHP 5.4
- *
- * @return void
- */
- public function testSortNaturalFallbackToRegular()
- {
- $a = [
- 0 => ['Person' => ['name' => 'Jeff']],
- 1 => ['Shirt' => ['color' => 'black']]
- ];
- $b = [
- 0 => ['Shirt' => ['color' => 'black']],
- 1 => ['Person' => ['name' => 'Jeff']],
- ];
- $sorted = Hash::sort($a, '{n}.Person.name', 'asc', 'natural');
- $this->assertEquals($sorted, $b);
- }
- /**
- * test sorting with out of order keys.
- *
- * @return void
- */
- public function testSortWithOutOfOrderKeys()
- {
- $data = [
- 9 => ['class' => 510, 'test2' => 2],
- 1 => ['class' => 500, 'test2' => 1],
- 2 => ['class' => 600, 'test2' => 2],
- 5 => ['class' => 625, 'test2' => 4],
- 0 => ['class' => 605, 'test2' => 3],
- ];
- $expected = [
- ['class' => 500, 'test2' => 1],
- ['class' => 510, 'test2' => 2],
- ['class' => 600, 'test2' => 2],
- ['class' => 605, 'test2' => 3],
- ['class' => 625, 'test2' => 4],
- ];
- $result = Hash::sort($data, '{n}.class', 'asc');
- $this->assertEquals($expected, $result);
- $result = Hash::sort($data, '{n}.test2', 'asc');
- $this->assertEquals($expected, $result);
- }
- /**
- * test sorting with string keys.
- *
- * @return void
- */
- public function testSortString()
- {
- $toSort = [
- 'four' => ['number' => 4, 'some' => 'foursome'],
- 'six' => ['number' => 6, 'some' => 'sixsome'],
- 'five' => ['number' => 5, 'some' => 'fivesome'],
- 'two' => ['number' => 2, 'some' => 'twosome'],
- 'three' => ['number' => 3, 'some' => 'threesome']
- ];
- $sorted = Hash::sort($toSort, '{s}.number', 'asc');
- $expected = [
- 'two' => ['number' => 2, 'some' => 'twosome'],
- 'three' => ['number' => 3, 'some' => 'threesome'],
- 'four' => ['number' => 4, 'some' => 'foursome'],
- 'five' => ['number' => 5, 'some' => 'fivesome'],
- 'six' => ['number' => 6, 'some' => 'sixsome']
- ];
- $this->assertEquals($expected, $sorted);
- $menus = [
- 'blogs' => ['title' => 'Blogs', 'weight' => 3],
- 'comments' => ['title' => 'Comments', 'weight' => 2],
- 'users' => ['title' => 'Users', 'weight' => 1],
- ];
- $expected = [
- 'users' => ['title' => 'Users', 'weight' => 1],
- 'comments' => ['title' => 'Comments', 'weight' => 2],
- 'blogs' => ['title' => 'Blogs', 'weight' => 3],
- ];
- $result = Hash::sort($menus, '{s}.weight', 'ASC');
- $this->assertEquals($expected, $result);
- }
- /**
- * test sorting with string ignoring case.
- *
- * @return void
- */
- public function testSortStringIgnoreCase()
- {
- $toSort = [
- ['Item' => ['name' => 'bar']],
- ['Item' => ['name' => 'Baby']],
- ['Item' => ['name' => 'Baz']],
- ['Item' => ['name' => 'bat']],
- ];
- $sorted = Hash::sort($toSort, '{n}.Item.name', 'asc', ['type' => 'string', 'ignoreCase' => true]);
- $expected = [
- ['Item' => ['name' => 'Baby']],
- ['Item' => ['name' => 'bar']],
- ['Item' => ['name' => 'bat']],
- ['Item' => ['name' => 'Baz']],
- ];
- $this->assertEquals($expected, $sorted);
- }
- /**
- * test regular sorting ignoring case.
- *
- * @return void
- */
- public function testSortRegularIgnoreCase()
- {
- $toSort = [
- ['Item' => ['name' => 'bar']],
- ['Item' => ['name' => 'Baby']],
- ['Item' => ['name' => 'Baz']],
- ['Item' => ['name' => 'bat']],
- ];
- $sorted = Hash::sort($toSort, '{n}.Item.name', 'asc', ['type' => 'regular', 'ignoreCase' => true]);
- $expected = [
- ['Item' => ['name' => 'Baby']],
- ['Item' => ['name' => 'bar']],
- ['Item' => ['name' => 'bat']],
- ['Item' => ['name' => 'Baz']],
- ];
- $this->assertEquals($expected, $sorted);
- }
- /**
- * Test sorting on a nested key that is sometimes undefined.
- *
- * @return void
- */
- public function testSortSparse()
- {
- $data = [
- [
- 'id' => 1,
- 'title' => 'element 1',
- 'extra' => 1,
- ],
- [
- 'id' => 2,
- 'title' => 'element 2',
- 'extra' => 2,
- ],
- [
- 'id' => 3,
- 'title' => 'element 3',
- ],
- [
- 'id' => 4,
- 'title' => 'element 4',
- 'extra' => 4,
- ]
- ];
- $result = Hash::sort($data, '{n}.extra', 'desc', 'natural');
- $expected = [
- [
- 'id' => 4,
- 'title' => 'element 4',
- 'extra' => 4,
- ],
- [
- 'id' => 2,
- 'title' => 'element 2',
- 'extra' => 2,
- ],
- [
- 'id' => 1,
- 'title' => 'element 1',
- 'extra' => 1,
- ],
- [
- 'id' => 3,
- 'title' => 'element 3',
- ],
- ];
- $this->assertSame($expected, $result);
- }
- /**
- * Test insert()
- *
- * @return void
- */
- public function testInsertSimple()
- {
- $a = [
- 'pages' => ['name' => 'page']
- ];
- $result = Hash::insert($a, 'files', ['name' => 'files']);
- $expected = [
- 'pages' => ['name' => 'page'],
- 'files' => ['name' => 'files']
- ];
- $this->assertEquals($expected, $result);
- $a = [
- 'pages' => ['name' => 'page']
- ];
- $result = Hash::insert($a, 'pages.name', []);
- $expected = [
- 'pages' => ['name' => []],
- ];
- $this->assertEquals($expected, $result);
- $a = [
- 'foo' => ['bar' => 'baz']
- ];
- $result = Hash::insert($a, 'some.0123.path', ['foo' => ['bar' => 'baz']]);
- $expected = ['foo' => ['bar' => 'baz']];
- $this->assertEquals($expected, Hash::get($result, 'some.0123.path'));
- }
- /**
- * Test inserting with multiple values.
- *
- * @return void
- */
- public function testInsertMulti()
- {
- $data = static::articleData();
- $result = Hash::insert($data, '{n}.Article.insert', 'value');
- $this->assertEquals('value', $result[0]['Article']['insert']);
- $this->assertEquals('value', $result[1]['Article']['insert']);
- $result = Hash::insert($data, '{n}.Comment.{n}.insert', 'value');
- $this->assertEquals('value', $result[0]['Comment'][0]['insert']);
- $this->assertEquals('value', $result[0]['Comment'][1]['insert']);
- $data = [
- 0 => ['Item' => ['id' => 1, 'title' => 'first']],
- 1 => ['Item' => ['id' => 2, 'title' => 'second']],
- 2 => ['Item' => ['id' => 3, 'title' => 'third']],
- 3 => ['Item' => ['id' => 4, 'title' => 'fourth']],
- 4 => ['Item' => ['id' => 5, 'title' => 'fifth']],
- ];
- $result = Hash::insert($data, '{n}.Item[id=/\b2|\b4/]', ['test' => 2]);
- $expected = [
- 0 => ['Item' => ['id' => 1, 'title' => 'first']],
- 1 => ['Item' => ['id' => 2, 'title' => 'second', 'test' => 2]],
- 2 => ['Item' => ['id' => 3, 'title' => 'third']],
- 3 => ['Item' => ['id' => 4, 'title' => 'fourth', 'test' => 2]],
- 4 => ['Item' => ['id' => 5, 'title' => 'fifth']],
- ];
- $this->assertEquals($expected, $result);
- $data[3]['testable'] = true;
- $result = Hash::insert($data, '{n}[testable].Item[id=/\b2|\b4/].test', 2);
- $expected = [
- 0 => ['Item' => ['id' => 1, 'title' => 'first']],
- 1 => ['Item' => ['id' => 2, 'title' => 'second']],
- 2 => ['Item' => ['id' => 3, 'title' => 'third']],
- 3 => ['Item' => ['id' => 4, 'title' => 'fourth', 'test' => 2], 'testable' => true],
- 4 => ['Item' => ['id' => 5, 'title' => 'fifth']],
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that insert() can insert data over a string value.
- *
- * @return void
- */
- public function testInsertOverwriteStringValue()
- {
- $data = [
- 'Some' => [
- 'string' => 'value'
- ]
- ];
- $result = Hash::insert($data, 'Some.string.value', ['values']);
- $expected = [
- 'Some' => [
- 'string' => [
- 'value' => ['values']
- ]
- ]
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test remove() method.
- *
- * @return void
- */
- public function testRemove()
- {
- $a = [
- 'pages' => ['name' => 'page'],
- 'files' => ['name' => 'files']
- ];
- $result = Hash::remove($a, 'files');
- $expected = [
- 'pages' => ['name' => 'page']
- ];
- $this->assertEquals($expected, $result);
- $a = [
- 'pages' => [
- 0 => ['name' => 'main'],
- 1 => [
- 'name' => 'about',
- 'vars' => ['title' => 'page title']
- ]
- ]
- ];
- $result = Hash::remove($a, 'pages.1.vars');
- $expected = [
- 'pages' => [
- 0 => ['name' => 'main'],
- 1 => ['name' => 'about']
- ]
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::remove($a, 'pages.2.vars');
- $expected = $a;
- $this->assertEquals($expected, $result);
- $a = [
- 0 => [
- 'name' => 'pages'
- ],
- 1 => [
- 'name' => 'files'
- ]
- ];
- $result = Hash::remove($a, '{n}[name=files]');
- $expected = [
- 0 => [
- 'name' => 'pages'
- ]
- ];
- $this->assertEquals($expected, $result);
- $array = [
- 0 => 'foo',
- 1 => [
- 0 => 'baz'
- ]
- ];
- $expected = $array;
- $result = Hash::remove($array, '{n}.part');
- $this->assertEquals($expected, $result);
- $result = Hash::remove($array, '{n}.{n}.part');
- $this->assertEquals($expected, $result);
- }
- /**
- * Test removing multiple values.
- *
- * @return void
- */
- public function testRemoveMulti()
- {
- $data = static::articleData();
- $result = Hash::remove($data, '{n}.Article.title');
- $this->assertFalse(isset($result[0]['Article']['title']));
- $this->assertFalse(isset($result[1]['Article']['title']));
- $result = Hash::remove($data, '{n}.Article.{s}');
- $this->assertFalse(isset($result[0]['Article']['id']));
- $this->assertFalse(isset($result[0]['Article']['user_id']));
- $this->assertFalse(isset($result[0]['Article']['title']));
- $this->assertFalse(isset($result[0]['Article']['body']));
- $data = [
- 0 => ['Item' => ['id' => 1, 'title' => 'first']],
- 1 => ['Item' => ['id' => 2, 'title' => 'second']],
- 2 => ['Item' => ['id' => 3, 'title' => 'third']],
- 3 => ['Item' => ['id' => 4, 'title' => 'fourth']],
- 4 => ['Item' => ['id' => 5, 'title' => 'fifth']],
- ];
- $result = Hash::remove($data, '{n}.Item[id=/\b2|\b4/]');
- $expected = [
- 0 => ['Item' => ['id' => 1, 'title' => 'first']],
- 2 => ['Item' => ['id' => 3, 'title' => 'third']],
- 4 => ['Item' => ['id' => 5, 'title' => 'fifth']],
- ];
- $this->assertEquals($expected, $result);
- $data[3]['testable'] = true;
- $result = Hash::remove($data, '{n}[testable].Item[id=/\b2|\b4/].title');
- $expected = [
- 0 => ['Item' => ['id' => 1, 'title' => 'first']],
- 1 => ['Item' => ['id' => 2, 'title' => 'second']],
- 2 => ['Item' => ['id' => 3, 'title' => 'third']],
- 3 => ['Item' => ['id' => 4], 'testable' => true],
- 4 => ['Item' => ['id' => 5, 'title' => 'fifth']],
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * testCheck method
- *
- * @return void
- */
- public function testCheck()
- {
- $set = [
- 'My Index 1' => ['First' => 'The first item']
- ];
- $this->assertTrue(Hash::check($set, 'My Index 1.First'));
- $this->assertTrue(Hash::check($set, 'My Index 1'));
- $set = [
- 'My Index 1' => [
- 'First' => [
- 'Second' => [
- 'Third' => [
- 'Fourth' => 'Heavy. Nesting.'
- ]
- ]
- ]
- ]
- ];
- $this->assertTrue(Hash::check($set, 'My Index 1.First.Second'));
- $this->assertTrue(Hash::check($set, 'My Index 1.First.Second.Third'));
- $this->assertTrue(Hash::check($set, 'My Index 1.First.Second.Third.Fourth'));
- $this->assertFalse(Hash::check($set, 'My Index 1.First.Seconds.Third.Fourth'));
- }
- /**
- * testCombine method
- *
- * @return void
- */
- public function testCombine()
- {
- $result = Hash::combine([], '{n}.User.id', '{n}.User.Data');
- $this->assertTrue(empty($result));
- $a = static::userData();
- $result = Hash::combine($a, '{n}.User.id');
- $expected = [2 => null, 14 => null, 25 => null];
- $this->assertEquals($expected, $result);
- $result = Hash::combine($a, '{n}.User.id', '{n}.User.non-existant');
- $expected = [2 => null, 14 => null, 25 => null];
- $this->assertEquals($expected, $result);
- $result = Hash::combine($a, '{n}.User.id', '{n}.User.Data');
- $expected = [
- 2 => ['user' => 'mariano.iglesias', 'name' => 'Mariano Iglesias'],
- 14 => ['user' => 'phpnut', 'name' => 'Larry E. Masters'],
- 25 => ['user' => 'gwoo', 'name' => 'The Gwoo']];
- $this->assertEquals($expected, $result);
- $result = Hash::combine($a, '{n}.User.id', '{n}.User.Data.name');
- $expected = [
- 2 => 'Mariano Iglesias',
- 14 => 'Larry E. Masters',
- 25 => 'The Gwoo'];
- $this->assertEquals($expected, $result);
- }
- /**
- * test combine() giving errors on key/value length mismatches.
- *
- * @expectedException \RuntimeException
- * @return void
- */
- public function testCombineErrorMissingValue()
- {
- $data = [
- ['User' => ['id' => 1, 'name' => 'mark']],
- ['User' => ['name' => 'jose']],
- ];
- Hash::combine($data, '{n}.User.id', '{n}.User.name');
- }
- /**
- * test combine() giving errors on key/value length mismatches.
- *
- * @expectedException \RuntimeException
- * @return void
- */
- public function testCombineErrorMissingKey()
- {
- $data = [
- ['User' => ['id' => 1, 'name' => 'mark']],
- ['User' => ['id' => 2]],
- ];
- Hash::combine($data, '{n}.User.id', '{n}.User.name');
- }
- /**
- * test combine() with a group path.
- *
- * @return void
- */
- public function testCombineWithGroupPath()
- {
- $a = static::userData();
- $result = Hash::combine($a, '{n}.User.id', '{n}.User.Data', '{n}.User.group_id');
- $expected = [
- 1 => [
- 2 => ['user' => 'mariano.iglesias', 'name' => 'Mariano Iglesias'],
- 25 => ['user' => 'gwoo', 'name' => 'The Gwoo']
- ],
- 2 => [
- 14 => ['user' => 'phpnut', 'name' => 'Larry E. Masters']
- ]
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::combine($a, '{n}.User.id', '{n}.User.Data.name', '{n}.User.group_id');
- $expected = [
- 1 => [
- 2 => 'Mariano Iglesias',
- 25 => 'The Gwoo'
- ],
- 2 => [
- 14 => 'Larry E. Masters'
- ]
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::combine($a, '{n}.User.id', '{n}.User.Data', '{n}.User.group_id');
- $expected = [
- 1 => [
- 2 => ['user' => 'mariano.iglesias', 'name' => 'Mariano Iglesias'],
- 25 => ['user' => 'gwoo', 'name' => 'The Gwoo']
- ],
- 2 => [
- 14 => ['user' => 'phpnut', 'name' => 'Larry E. Masters']
- ]
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::combine($a, '{n}.User.id', '{n}.User.Data.name', '{n}.User.group_id');
- $expected = [
- 1 => [
- 2 => 'Mariano Iglesias',
- 25 => 'The Gwoo'
- ],
- 2 => [
- 14 => 'Larry E. Masters'
- ]
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test combine with formatting rules.
- *
- * @return void
- */
- public function testCombineWithFormatting()
- {
- $a = static::userData();
- $result = Hash::combine(
- $a,
- '{n}.User.id',
- ['%1$s: %2$s', '{n}.User.Data.user', '{n}.User.Data.name'],
- '{n}.User.group_id'
- );
- $expected = [
- 1 => [
- 2 => 'mariano.iglesias: Mariano Iglesias',
- 25 => 'gwoo: The Gwoo'
- ],
- 2 => [
- 14 => 'phpnut: Larry E. Masters'
- ]
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::combine(
- $a,
- [
- '%s: %s',
- '{n}.User.Data.user',
- '{n}.User.Data.name'
- ],
- '{n}.User.id'
- );
- $expected = [
- 'mariano.iglesias: Mariano Iglesias' => 2,
- 'phpnut: Larry E. Masters' => 14,
- 'gwoo: The Gwoo' => 25
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::combine(
- $a,
- ['%1$s: %2$d', '{n}.User.Data.user', '{n}.User.id'],
- '{n}.User.Data.name'
- );
- $expected = [
- 'mariano.iglesias: 2' => 'Mariano Iglesias',
- 'phpnut: 14' => 'Larry E. Masters',
- 'gwoo: 25' => 'The Gwoo'
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::combine(
- $a,
- ['%2$d: %1$s', '{n}.User.Data.user', '{n}.User.id'],
- '{n}.User.Data.name'
- );
- $expected = [
- '2: mariano.iglesias' => 'Mariano Iglesias',
- '14: phpnut' => 'Larry E. Masters',
- '25: gwoo' => 'The Gwoo'
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * testFormat method
- *
- * @return void
- */
- public function testFormat()
- {
- $data = static::userData();
- $result = Hash::format(
- $data,
- ['{n}.User.Data.user', '{n}.User.id'],
- '%s, %s'
- );
- $expected = [
- 'mariano.iglesias, 2',
- 'phpnut, 14',
- 'gwoo, 25'
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::format(
- $data,
- ['{n}.User.Data.user', '{n}.User.id'],
- '%2$s, %1$s'
- );
- $expected = [
- '2, mariano.iglesias',
- '14, phpnut',
- '25, gwoo'
- ];
- $this->assertEquals($expected, $result);
- }
- /**
- * testFormattingNullValues method
- *
- * @return void
- */
- public function testFormatNullValues()
- {
- $data = [
- ['Person' => [
- 'first_name' => 'Nate', 'last_name' => 'Abele', 'city' => 'Boston', 'state' => 'MA', 'something' => '42'
- ]],
- ['Person' => [
- 'first_name' => 'Larry', 'last_name' => 'Masters', 'city' => 'Boondock', 'state' => 'TN', 'something' => null
- ]],
- ['Person' => [
- 'first_name' => 'Garrett', 'last_name' => 'Woodworth', 'city' => 'Venice Beach', 'state' => 'CA', 'something' => null
- ]]
- ];
- $result = Hash::format($data, ['{n}.Person.something'], '%s');
- $expected = ['42', '', ''];
- $this->assertEquals($expected, $result);
- $result = Hash::format($data, ['{n}.Person.city', '{n}.Person.something'], '%s, %s');
- $expected = ['Boston, 42', 'Boondock, ', 'Venice Beach, '];
- $this->assertEquals($expected, $result);
- }
- /**
- * Test map()
- *
- * @return void
- */
- public function testMap()
- {
- $data = static::articleData();
- $result = Hash::map($data, '{n}.Article.id', [$this, 'mapCallback']);
- $expected = [2, 4, 6, 8, 10];
- $this->assertEquals($expected, $result);
- }
- /**
- * testApply
- *
- * @return void
- */
- public function testApply()
- {
- $data = static::articleData();
- $result = Hash::apply($data, '{n}.Article.id', 'array_sum');
- $this->assertEquals(15, $result);
- }
- /**
- * Test reduce()
- *
- * @return void
- */
- public function testReduce()
- {
- $data = static::articleData();
- $result = Hash::reduce($data, '{n}.Article.id', [$this, 'reduceCallback']);
- $this->assertEquals(15, $result);
- }
- /**
- * testing method for map callbacks.
- *
- * @param mixed $value Value
- * @return mixed
- */
- public function mapCallback($value)
- {
- return $value * 2;
- }
- /**
- * testing method for reduce callbacks.
- *
- * @param mixed $one First param
- * @param mixed $two Second param
- * @return mixed
- */
- public function reduceCallback($one, $two)
- {
- return $one + $two;
- }
- /**
- * test Hash nest with a normal model result set. For kicks rely on Hash nest detecting the key names
- * automatically
- *
- * @return void
- */
- public function testNestModel()
- {
- $input = [
- [
- 'ModelName' => [
- 'id' => 1,
- 'parent_id' => null
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 2,
- 'parent_id' => 1
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 3,
- 'parent_id' => 1
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 4,
- 'parent_id' => 1
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 5,
- 'parent_id' => 1
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 6,
- 'parent_id' => null
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 7,
- 'parent_id' => 6
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 8,
- 'parent_id' => 6
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 9,
- 'parent_id' => 6
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 10,
- 'parent_id' => 6
- ]
- ]
- ];
- $expected = [
- [
- 'ModelName' => [
- 'id' => 1,
- 'parent_id' => null
- ],
- 'children' => [
- [
- 'ModelName' => [
- 'id' => 2,
- 'parent_id' => 1
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 3,
- 'parent_id' => 1
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 4,
- 'parent_id' => 1
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 5,
- 'parent_id' => 1
- ],
- 'children' => []
- ],
- ]
- ],
- [
- 'ModelName' => [
- 'id' => 6,
- 'parent_id' => null
- ],
- 'children' => [
- [
- 'ModelName' => [
- 'id' => 7,
- 'parent_id' => 6
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 8,
- 'parent_id' => 6
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 9,
- 'parent_id' => 6
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 10,
- 'parent_id' => 6
- ],
- 'children' => []
- ]
- ]
- ]
- ];
- $result = Hash::nest($input);
- $this->assertEquals($expected, $result);
- }
- /**
- * test Hash nest with a normal model result set, and a nominated root id
- *
- * @return void
- */
- public function testNestModelExplicitRoot()
- {
- $input = [
- [
- 'ModelName' => [
- 'id' => 1,
- 'parent_id' => null
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 2,
- 'parent_id' => 1
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 3,
- 'parent_id' => 1
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 4,
- 'parent_id' => 1
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 5,
- 'parent_id' => 1
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 6,
- 'parent_id' => null
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 7,
- 'parent_id' => 6
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 8,
- 'parent_id' => 6
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 9,
- 'parent_id' => 6
- ],
- ],
- [
- 'ModelName' => [
- 'id' => 10,
- 'parent_id' => 6
- ]
- ]
- ];
- $expected = [
- [
- 'ModelName' => [
- 'id' => 6,
- 'parent_id' => null
- ],
- 'children' => [
- [
- 'ModelName' => [
- 'id' => 7,
- 'parent_id' => 6
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 8,
- 'parent_id' => 6
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 9,
- 'parent_id' => 6
- ],
- 'children' => []
- ],
- [
- 'ModelName' => [
- 'id' => 10,
- 'parent_id' => 6
- ],
- 'children' => []
- ]
- ]
- ]
- ];
- $result = Hash::nest($input, ['root' => 6]);
- $this->assertEquals($expected, $result);
- }
- /**
- * test Hash nest with a 1d array - this method should be able to handle any type of array input
- *
- * @return void
- */
- public function testNest1Dimensional()
- {
- $input = [
- [
- 'id' => 1,
- 'parent_id' => null
- ],
- [
- 'id' => 2,
- 'parent_id' => 1
- ],
- [
- 'id' => 3,
- 'parent_id' => 1
- ],
- [
- 'id' => 4,
- 'parent_id' => 1
- ],
- [
- 'id' => 5,
- 'parent_id' => 1
- ],
- [
- 'id' => 6,
- 'parent_id' => null
- ],
- [
- 'id' => 7,
- 'parent_id' => 6
- ],
- [
- 'id' => 8,
- 'parent_id' => 6
- ],
- [
- 'id' => 9,
- 'parent_id' => 6
- ],
- [
- 'id' => 10,
- 'parent_id' => 6
- ]
- ];
- $expected = [
- [
- 'id' => 1,
- 'parent_id' => null,
- 'children' => [
- [
- 'id' => 2,
- 'parent_id' => 1,
- 'children' => []
- ],
- [
- 'id' => 3,
- 'parent_id' => 1,
- 'children' => []
- ],
- [
- 'id' => 4,
- 'parent_id' => 1,
- 'children' => []
- ],
- [
- 'id' => 5,
- 'parent_id' => 1,
- 'children' => []
- ],
- ]
- ],
- [
- 'id' => 6,
- 'parent_id' => null,
- 'children' => [
- [
- 'id' => 7,
- 'parent_id' => 6,
- 'children' => []
- ],
- [
- 'id' => 8,
- 'parent_id' => 6,
- 'children' => []
- ],
- [
- 'id' => 9,
- 'parent_id' => 6,
- 'children' => []
- ],
- [
- 'id' => 10,
- 'parent_id' => 6,
- 'children' => []
- ]
- ]
- ]
- ];
- $result = Hash::nest($input, ['idPath' => '{n}.id', 'parentPath' => '{n}.parent_id']);
- $this->assertEquals($expected, $result);
- }
- /**
- * test Hash 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 = [
- [
- 'id' => 1,
- ],
- [
- 'id' => 2,
- ],
- [
- 'id' => 3,
- ],
- [
- 'id' => 4,
- ],
- [
- 'id' => 5,
- ],
- [
- 'id' => 6,
- ],
- [
- 'id' => 7,
- ],
- [
- 'id' => 8,
- ],
- [
- 'id' => 9,
- ],
- [
- 'id' => 10,
- ]
- ];
- $result = Hash::nest($input, ['idPath' => '{n}.id', 'parentPath' => '{n}.parent_id']);
- foreach ($result as &$row) {
- if (empty($row['children'])) {
- unset($row['children']);
- }
- }
- $this->assertEquals($input, $result);
- }
- /**
- * Tests that nest() throws an InvalidArgumentException when providing an invalid input.
- *
- * @expectedException \InvalidArgumentException
- * @return void
- */
- public function testNestInvalid()
- {
- $input = [
- [
- 'ParentCategory' => [
- 'id' => '1',
- 'name' => 'Lorem ipsum dolor sit amet',
- 'parent_id' => '1'
- ]
- ]
- ];
- Hash::nest($input);
- }
- /**
- * testMergeDiff method
- *
- * @return void
- */
- public function testMergeDiff()
- {
- $first = [
- 'ModelOne' => [
- 'id' => 1001,
- 'field_one' => 'a1.m1.f1',
- 'field_two' => 'a1.m1.f2'
- ]
- ];
- $second = [
- 'ModelTwo' => [
- 'id' => 1002,
- 'field_one' => 'a2.m2.f1',
- 'field_two' => 'a2.m2.f2'
- ]
- ];
- $result = Hash::mergeDiff($first, $second);
- $this->assertEquals($result, $first + $second);
- $result = Hash::mergeDiff($first, []);
- $this->assertEquals($result, $first);
- $result = Hash::mergeDiff([], $first);
- $this->assertEquals($result, $first);
- $third = [
- 'ModelOne' => [
- 'id' => 1003,
- 'field_one' => 'a3.m1.f1',
- 'field_two' => 'a3.m1.f2',
- 'field_three' => 'a3.m1.f3'
- ]
- ];
- $result = Hash::mergeDiff($first, $third);
- $expected = [
- 'ModelOne' => [
- 'id' => 1001,
- 'field_one' => 'a1.m1.f1',
- 'field_two' => 'a1.m1.f2',
- 'field_three' => 'a3.m1.f3'
- ]
- ];
- $this->assertEquals($expected, $result);
- $first = [
- 0 => ['ModelOne' => ['id' => 1001, 'field_one' => 's1.0.m1.f1', 'field_two' => 's1.0.m1.f2']],
- 1 => ['ModelTwo' => ['id' => 1002, 'field_one' => 's1.1.m2.f2', 'field_two' => 's1.1.m2.f2']]
- ];
- $second = [
- 0 => ['ModelOne' => ['id' => 1001, 'field_one' => 's2.0.m1.f1', 'field_two' => 's2.0.m1.f2']],
- 1 => ['ModelTwo' => ['id' => 1002, 'field_one' => 's2.1.m2.f2', 'field_two' => 's2.1.m2.f2']]
- ];
- $result = Hash::mergeDiff($first, $second);
- $this->assertEquals($result, $first);
- $third = [
- 0 => [
- 'ModelThree' => [
- 'id' => 1003,
- 'field_one' => 's3.0.m3.f1',
- 'field_two' => 's3.0.m3.f2'
- ]
- ]
- ];
- $result = Hash::mergeDiff($first, $third);
- $expected = [
- 0 => [
- 'ModelOne' => [
- 'id' => 1001,
- 'field_one' => 's1.0.m1.f1',
- 'field_two' => 's1.0.m1.f2'
- ],
- 'ModelThree' => [
- 'id' => 1003,
- 'field_one' => 's3.0.m3.f1',
- 'field_two' => 's3.0.m3.f2'
- ]
- ],
- 1 => [
- 'ModelTwo' => [
- 'id' => 1002,
- 'field_one' => 's1.1.m2.f2',
- 'field_two' => 's1.1.m2.f2'
- ]
- ]
- ];
- $this->assertEquals($expected, $result);
- $result = Hash::mergeDiff($first, []);
- $this->assertEquals($result, $first);
- $result = Hash::mergeDiff($first, $second);
- $this->assertEquals($result, $first + $second);
- }
- /**
- * Tests Hash::expand
- *
- * @return void
- */
- public function testExpand()
- {
- $data = ['My', 'Array', 'To', 'Flatten'];
- $flat = Hash::flatten($data);
- $result = Hash::expand($flat);
- $this->assertEquals($data, $result);
- $data = [
- '0.Post.id' => '1', '0.Post.author_id' => '1', '0.Post.title' => 'First Post', '0.Author.id' => '1',
- '0.Author.user' => 'nate', '0.Author.password' => 'foo', '1.Post.id' => '2', '1.Post.author_id' => '3',
- '1.Post.title' => 'Second Post', '1.Post.body' => 'Second Post Body', '1.Author.id' => '3',
- '1.Author.user' => 'larry', '1.Author.password' => null
- ];
- $result = Hash::expand($data);
- $expected = [
- [
- 'Post' => ['id' => '1', 'author_id' => '1', 'title' => 'First Post'],
- 'Author' => ['id' => '1', 'user' => 'nate', 'password' => 'foo'],
- ],
- [
- 'Post' => ['id' => '2', 'author_id' => '3', 'title' => 'Second Post', 'body' => 'Second Post Body'],
- 'Author' => ['id' => '3', 'user' => 'larry', 'password' => null],
- ]
- ];
- $this->assertEquals($expected, $result);
- $data = [
- '0/Post/id' => 1,
- '0/Post/name' => 'test post'
- ];
- $result = Hash::expand($data, '/');
- $expected = [
- [
- 'Post' => [
- 'id' => 1,
- 'name' => 'test post'
- ]
- ]
- ];
- $this->assertEquals($expected, $result);
- $data = ['a.b.100.a' => null, 'a.b.200.a' => null];
- $expected = [
- 'a' => [
- 'b' => [
- 100 => ['a' => null],
- 200 => ['a' => null]
- ]
- ]
- ];
- $result = Hash::expand($data);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that flattening a large complex set doesn't loop forever.
- *
- * @return void
- */
- public function testFlattenInfiniteLoop()
- {
- $data = [
- 'Order.ASI' => '0',
- 'Order.Accounting' => '0',
- 'Order.Admin' => '0',
- 'Order.Art' => '0',
- 'Order.ArtChecker' => '0',
- 'Order.Canned' => '0',
- 'Order.Customer_Tags' => '',
- 'Order.Embroidery' => '0',
- 'Order.Item.0.Product.style_number' => 'a11222',
- 'Order.Item.0.Product.slug' => 'a11222',
- 'Order.Item.0.Product._id' => '4ff8b8d3d7bbe8ad30000000',
- 'Order.Item.0.Product.Color.slug' => 'kelly_green',
- 'Order.Item.0.Product.ColorSizes.0.Color.color' => 'Sport Grey',
- 'Order.Item.0.Product.ColorSizes.0.Color.slug' => 'sport_grey',
- 'Order.Item.0.Product.ColorSizes.1.Color.color' => 'Kelly Green',
- 'Order.Item.0.Product.ColorSizes.1.Color.slug' => 'kelly_green',
- 'Order.Item.0.Product.ColorSizes.2.Color.color' => 'Orange',
- 'Order.Item.0.Product.ColorSizes.2.Color.slug' => 'orange',
- 'Order.Item.0.Product.ColorSizes.3.Color.color' => 'Yellow Haze',
- 'Order.Item.0.Product.ColorSizes.3.Color.slug' => 'yellow_haze',
- 'Order.Item.0.Product.brand' => 'OUTER BANKS',
- 'Order.Item.0.Product.style' => 'T-shirt',
- 'Order.Item.0.Product.description' => 'uhiuhuih oin ooi ioo ioio',
- 'Order.Item.0.Product.sizes.0.Size.qty' => '',
- 'Order.Item.0.Product.sizes.0.Size.size' => '0-3mo',
- 'Order.Item.0.Product.sizes.0.Size.id' => '38',
- 'Order.Item.0.Product.sizes.1.Size.qty' => '',
- 'Order.Item.0.Product.sizes.1.Size.size' => '3-6mo',
- 'Order.Item.0.Product.sizes.1.Size.id' => '39',
- 'Order.Item.0.Product.sizes.2.Size.qty' => '78',
- 'Order.Item.0.Product.sizes.2.Size.size' => '6-9mo',
- 'Order.Item.0.Product.sizes.2.Size.id' => '40',
- 'Order.Item.0.Product.sizes.3.Size.qty' => '',
- 'Order.Item.0.Product.sizes.3.Size.size' => '6-12mo',
- 'Order.Item.0.Product.sizes.3.Size.id' => '41',
- 'Order.Item.0.Product.sizes.4.Size.qty' => '',
- 'Order.Item.0.Product.sizes.4.Size.size' => '12-18mo',
- 'Order.Item.0.Product.sizes.4.Size.id' => '42',
- 'Order.Item.0.Art.imprint_locations.0.id' => 2,
- 'Order.Item.0.Art.imprint_locations.0.name' => 'Left Chest',
- 'Order.Item.0.Art.imprint_locations.0.imprint_type.id' => 7,
- 'Order.Item.0.Art.imprint_locations.0.imprint_type.type' => 'Embroidery',
- 'Order.Item.0.Art.imprint_locations.0.art' => '',
- 'Order.Item.0.Art.imprint_locations.0.num_colors' => 3,
- 'Order.Item.0.Art.imprint_locations.0.description' => 'Wooo! This is Embroidery!!',
- 'Order.Item.0.Art.imprint_locations.0.lines.0' => 'Platen',
- 'Order.Item.0.Art.imprint_locations.0.lines.1' => 'Logo',
- 'Order.Item.0.Art.imprint_locations.0.height' => 4,
- 'Order.Item.0.Art.imprint_locations.0.width' => 5,
- 'Order.Item.0.Art.imprint_locations.0.stitch_density' => 'Light',
- 'Order.Item.0.Art.imprint_locations.0.metallic_thread' => true,
- 'Order.Item.0.Art.imprint_locations.1.id' => 4,
- 'Order.Item.0.Art.imprint_locations.1.name' => 'Full Back',
- 'Order.Item.0.Art.imprint_locations.1.imprint_type.id' => 6,
- 'Order.Item.0.Art.imprint_locations.1.imprint_type.type' => 'Screenprinting',
- 'Order.Item.0.Art.imprint_locations.1.art' => '',
- 'Order.Item.0.Art.imprint_locations.1.num_colors' => 3,
- 'Order.Item.0.Art.imprint_locations.1.description' => 'Wooo! This is Screenprinting!!',
- 'Order.Item.0.Art.imprint_locations.1.lines.0' => 'Platen',
- 'Order.Item.0.Art.imprint_locations.1.lines.1' => 'Logo',
- 'Order.Item.0.Art.imprint_locations.2.id' => 26,
- 'Order.Item.0.Art.imprint_locations.2.name' => 'HS - JSY Name Below',
- 'Order.Item.0.Art.imprint_locations.2.imprint_type.id' => 9,
- 'Order.Item.0.Art.imprint_locations.2.imprint_type.type' => 'Names',
- 'Order.Item.0.Art.imprint_locations.2.description' => 'Wooo! This is Names!!',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.0.active' => 1,
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.0.name' => 'Benjamin Talavera',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.0.color' => 'Red',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.0.height' => '3',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.0.layout' => 'Arched',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.0.style' => 'Classic',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.1.active' => 0,
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.1.name' => 'Rishi Narayan',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.1.color' => 'Cardinal',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.1.height' => '4',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.1.layout' => 'Straight',
- 'Order.Item.0.Art.imprint_locations.2.sizes.S.1.style' => 'Team US',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.0.active' => 1,
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.0.name' => 'Brandon Plasters',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.0.color' => 'Red',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.0.height' => '3',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.0.layout' => 'Arched',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.0.style' => 'Classic',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.1.active' => 0,
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.1.name' => 'Andrew Reed',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.1.color' => 'Cardinal',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.1.height' => '4',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.1.layout' => 'Straight',
- 'Order.Item.0.Art.imprint_locations.2.sizes.M.1.style' => 'Team US',
- 'Order.Job.0._id' => 'job-1',
- 'Order.Job.0.type' => 'screenprinting',
- 'Order.Job.0.postPress' => 'job-2',
- 'Order.Job.1._id' => 'job-2',
- 'Order.Job.1.type' => 'embroidery',
- 'Order.Postpress' => '0',
- 'Order.PriceAdjustment.0._id' => 'price-adjustment-1',
- 'Order.PriceAdjustment.0.adjustment' => '-20',
- 'Order.PriceAdjustment.0.adjustment_type' => 'percent',
- 'Order.PriceAdjustment.0.type' => 'grand_total',
- 'Order.PriceAdjustment.1.adjustment' => '20',
- 'Order.PriceAdjustment.1.adjustment_type' => 'flat',
- 'Order.PriceAdjustment.1.min-items' => '10',
- 'Order.PriceAdjustment.1.type' => 'min-items',
- 'Order.PriceAdjustment.1._id' => 'another-test-adjustment',
- 'Order.Purchasing' => '0',
- 'Order.QualityControl' => '0',
- 'Order.Receiving' => '0',
- 'Order.ScreenPrinting' => '0',
- 'Order.Stage.art_approval' => 0,
- 'Order.Stage.draft' => 1,
- 'Order.Stage.quote' => 1,
- 'Order.Stage.order' => 1,
- 'Order.StoreLiason' => '0',
- 'Order.Tag_UI_Email' => '',
- 'Order.Tags' => '',
- 'Order._id' => 'test-2',
- 'Order.add_print_location' => '',
- 'Order.created' => '2011-Dec-29 05:40:18',
- 'Order.force_admin' => '0',
- 'Order.modified' => '2012-Jul-25 01:24:49',
- 'Order.name' => 'towering power',
- 'Order.order_id' => '135961',
- 'Order.slug' => 'test-2',
- 'Order.title' => 'test job 2',
- 'Order.type' => 'ttt'
- ];
- $expanded = Hash::expand($data);
- $flattened = Hash::flatten($expanded);
- $this->assertEquals($data, $flattened);
- }
- }
|