| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595 |
- <?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 Cake\TestSuite\TestCase;
- use Cake\Utility\Hash;
- /**
- * Class HashTest
- *
- */
- class HashTest extends TestCase {
- /**
- * Data provider
- *
- * @return array
- */
- public static function articleData() {
- return array(
- array(
- 'Article' => array(
- 'id' => '1',
- 'user_id' => '1',
- 'title' => 'First Article',
- 'body' => 'First Article Body'
- ),
- 'User' => array(
- 'id' => '1',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ),
- 'Comment' => array(
- array(
- 'id' => '1',
- 'article_id' => '1',
- 'user_id' => '2',
- 'comment' => 'First Comment for First Article',
- ),
- array(
- 'id' => '2',
- 'article_id' => '1',
- 'user_id' => '4',
- 'comment' => 'Second Comment for First Article',
- ),
- ),
- 'Tag' => array(
- array(
- 'id' => '1',
- 'tag' => 'tag1',
- ),
- array(
- 'id' => '2',
- 'tag' => 'tag2',
- )
- ),
- 'Deep' => array(
- 'Nesting' => array(
- 'test' => array(
- 1 => 'foo',
- 2 => array(
- 'and' => array('more' => 'stuff')
- )
- )
- )
- )
- ),
- array(
- 'Article' => array(
- 'id' => '2',
- 'user_id' => '1',
- 'title' => 'Second Article',
- 'body' => 'Second Article Body',
- 'published' => 'Y',
- ),
- 'User' => array(
- 'id' => '2',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ),
- 'Comment' => array(),
- 'Tag' => array()
- ),
- array(
- 'Article' => array(
- 'id' => '3',
- 'user_id' => '1',
- 'title' => 'Third Article',
- 'body' => 'Third Article Body',
- ),
- 'User' => array(
- 'id' => '3',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ),
- 'Comment' => array(),
- 'Tag' => array()
- ),
- array(
- 'Article' => array(
- 'id' => '4',
- 'user_id' => '1',
- 'title' => 'Fourth Article',
- 'body' => 'Fourth Article Body',
- ),
- 'User' => array(
- 'id' => '4',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ),
- 'Comment' => array(),
- 'Tag' => array()
- ),
- array(
- 'Article' => array(
- 'id' => '5',
- 'user_id' => '1',
- 'title' => 'Fifth Article',
- 'body' => 'Fifth Article Body',
- ),
- 'User' => array(
- 'id' => '5',
- 'user' => 'mariano',
- 'password' => '5f4dcc3b5aa765d61d8327deb882cf99',
- ),
- 'Comment' => array(),
- 'Tag' => array()
- )
- );
- }
- /**
- * Data provider
- *
- * @return array
- */
- public static function userData() {
- return 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'
- )
- )
- )
- );
- }
- /**
- * Test get()
- *
- * @return void
- */
- public function testGet() {
- $data = array('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(array(), '1.Article.title');
- $this->assertNull($result);
- $result = Hash::get($data, '');
- $this->assertNull($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 = array('empty');
- $this->assertEquals($default, Hash::get($data, '5.Article.title', $default));
- $this->assertEquals($default, Hash::get(array(), '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, array('1', 'Article'));
- $this->assertEquals($data[1]['Article'], $result);
- }
- /**
- * Test get() with an invalid path
- *
- * @expectedException \InvalidArgumentException
- * @return void
- */
- public function testGetInvalidPath() {
- Hash::get(array('one' => 'two'), true);
- }
- /**
- * Test dimensions.
- *
- * @return void
- */
- public function testDimensions() {
- $result = Hash::dimensions(array());
- $this->assertEquals($result, 0);
- $data = array('one', '2', 'three');
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 1);
- $data = array('1' => '1.1', '2', '3');
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 1);
- $data = array('1' => array('1.1' => '1.1.1'), '2', '3' => array('3.1' => '3.1.1'));
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 2);
- $data = array('1' => '1.1', '2', '3' => array('3.1' => '3.1.1'));
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 1);
- $data = array('1' => array('1.1' => '1.1.1'), '2', '3' => array('3.1' => array('3.1.1' => '3.1.1.1')));
- $result = Hash::dimensions($data);
- $this->assertEquals($result, 2);
- }
- /**
- * Test maxDimensions
- *
- * @return void
- */
- public function testMaxDimensions() {
- $data = array('1' => '1.1', '2', '3' => array('3.1' => '3.1.1'));
- $result = Hash::maxDimensions($data);
- $this->assertEquals($result, 2);
- $data = array('1' => array('1.1' => '1.1.1'), '2', '3' => array('3.1' => array('3.1.1' => '3.1.1.1')));
- $result = Hash::maxDimensions($data);
- $this->assertEquals($result, 3);
- $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 = Hash::maxDimensions($data);
- $this->assertEquals($result, 4);
- $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 = Hash::maxDimensions($data);
- $this->assertEquals($result, 5);
- $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 = Hash::maxDimensions($data);
- $this->assertEquals($result, 5);
- $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 = Hash::maxDimensions($data);
- $this->assertEquals($result, 5);
- }
- /**
- * Tests Hash::flatten
- *
- * @return void
- */
- public function testFlatten() {
- $data = array('Larry', 'Curly', 'Moe');
- $result = Hash::flatten($data);
- $this->assertEquals($result, $data);
- $data[9] = 'Shemp';
- $result = Hash::flatten($data);
- $this->assertEquals($result, $data);
- $data = array(
- array(
- 'Post' => array('id' => '1', 'author_id' => '1', 'title' => 'First Post'),
- 'Author' => array('id' => '1', 'user' => 'nate', 'password' => 'foo'),
- ),
- array(
- 'Post' => array('id' => '2', 'author_id' => '3', 'title' => 'Second Post', 'body' => 'Second Post Body'),
- 'Author' => array('id' => '3', 'user' => 'larry', 'password' => null),
- )
- );
- $result = Hash::flatten($data);
- $expected = array(
- '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 = array(
- array(
- 'Post' => array('id' => '1', 'author_id' => null, 'title' => 'First Post'),
- 'Author' => array(),
- )
- );
- $result = Hash::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);
- $data = array(
- array('Post' => array('id' => 1)),
- array('Post' => array('id' => 2)),
- );
- $result = Hash::flatten($data, '/');
- $expected = array(
- '0/Post/id' => '1',
- '1/Post/id' => '2',
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test diff();
- *
- * @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 = Hash::diff($a, array());
- $expected = $a;
- $this->assertEquals($expected, $result);
- $result = Hash::diff(array(), $b);
- $expected = $b;
- $this->assertEquals($expected, $result);
- $result = Hash::diff($a, $b);
- $expected = array(
- 2 => array('name' => 'contact')
- );
- $this->assertEquals($expected, $result);
- $b = array(
- 0 => array('name' => 'me'),
- 1 => array('name' => 'about')
- );
- $result = Hash::diff($a, $b);
- $expected = array(
- 0 => array('name' => 'main')
- );
- $this->assertEquals($expected, $result);
- $a = array();
- $b = array('name' => 'bob', 'address' => 'home');
- $result = Hash::diff($a, $b);
- $this->assertEquals($result, $b);
- $a = array('name' => 'bob', 'address' => 'home');
- $b = array();
- $result = Hash::diff($a, $b);
- $this->assertEquals($result, $a);
- $a = array('key' => true, 'another' => false, 'name' => 'me');
- $b = array('key' => 1, 'another' => 0);
- $expected = array('name' => 'me');
- $result = Hash::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 = Hash::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 = Hash::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 = Hash::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 = Hash::diff($a, $b);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test merge()
- *
- * @return void
- */
- public function testMerge() {
- $result = Hash::merge(array('foo'), array('bar'));
- $this->assertEquals($result, array('foo', 'bar'));
- $result = Hash::merge(array('foo'), array('user' => 'bob', 'no-bar'), 'bar');
- $this->assertEquals($result, array('foo', 'user' => 'bob', 'no-bar', 'bar'));
- $a = array('foo', 'foo2');
- $b = array('bar', 'bar2');
- $expected = array('foo', 'foo2', 'bar', 'bar2');
- $this->assertEquals($expected, Hash::merge($a, $b));
- $a = array('foo' => 'bar', 'bar' => 'foo');
- $b = array('foo' => 'no-bar', 'bar' => 'no-foo');
- $expected = array('foo' => 'no-bar', 'bar' => 'no-foo');
- $this->assertEquals($expected, Hash::merge($a, $b));
- $a = array('users' => array('bob', 'jim'));
- $b = array('users' => array('lisa', 'tina'));
- $expected = array('users' => array('bob', 'jim', 'lisa', 'tina'));
- $this->assertEquals($expected, Hash::merge($a, $b));
- $a = array('users' => array('jim', 'bob'));
- $b = array('users' => 'none');
- $expected = array('users' => 'none');
- $this->assertEquals($expected, Hash::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');
- $expected = array(
- 'users' => array('lisa' => array('id' => 5, 'pw' => 'new-pass', 'age' => 23)),
- 'cakephp',
- 'ice-cream'
- );
- $result = Hash::merge($a, $b);
- $this->assertEquals($expected, $result);
- $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, Hash::merge($a, $b, $c));
- $this->assertEquals($expected, Hash::merge($a, $b, array(), $c));
- $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, Hash::merge($a, $b));
- }
- /**
- * test normalizing arrays
- *
- * @return void
- */
- public function testNormalize() {
- $result = Hash::normalize(array('one', 'two', 'three'));
- $expected = array('one' => null, 'two' => null, 'three' => null);
- $this->assertEquals($expected, $result);
- $result = Hash::normalize(array('one', 'two', 'three'), false);
- $expected = array('one', 'two', 'three');
- $this->assertEquals($expected, $result);
- $result = Hash::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 = Hash::normalize(array('one' => 1, 'two' => 2, 'three' => 3, 'four'));
- $expected = array('one' => 1, 'two' => 2, 'three' => 3, 'four' => null);
- $this->assertEquals($expected, $result);
- $result = Hash::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);
- }
- /**
- * testContains method
- *
- * @return void
- */
- public function testContains() {
- $data = array('apple', 'bee', 'cyclops');
- $this->assertTrue(Hash::contains($data, array('apple')));
- $this->assertFalse(Hash::contains($data, array('data')));
- $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(Hash::contains($a, $a));
- $this->assertFalse(Hash::contains($a, $b));
- $this->assertTrue(Hash::contains($b, $a));
- $a = array(
- array('User' => array('id' => 1)),
- array('User' => array('id' => 2)),
- );
- $b = array(
- array('User' => array('id' => 1)),
- array('User' => array('id' => 2)),
- array('User' => array('id' => 3))
- );
- $this->assertTrue(Hash::contains($b, $a));
- $this->assertFalse(Hash::contains($a, $b));
- $a = array(0 => 'test', 'string' => null);
- $this->assertTrue(Hash::contains($a, array('string' => null)));
- $a = array(0 => 'test', 'string' => null);
- $this->assertTrue(Hash::contains($a, array('test')));
- }
- /**
- * testFilter method
- *
- * @return void
- */
- public function testFilter() {
- $result = Hash::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);
- $result = Hash::filter(array(1, array(false)));
- $expected = array(1);
- $this->assertEquals($expected, $result);
- $result = Hash::filter(array(1, array(false, false)));
- $expected = array(1);
- $this->assertEquals($expected, $result);
- $result = Hash::filter(array(1, array('empty', false)));
- $expected = array(1, array('empty'));
- $this->assertEquals($expected, $result);
- $result = Hash::filter(array(1, array('2', false, array(3, null))));
- $expected = array(1, array('2', 2 => array(3)));
- $this->assertEquals($expected, $result);
- $this->assertSame(array(), Hash::filter(array()));
- }
- /**
- * testNumericArrayCheck method
- *
- * @return void
- */
- public function testNumeric() {
- $data = array('one');
- $this->assertTrue(Hash::numeric(array_keys($data)));
- $data = array(1 => 'one');
- $this->assertFalse(Hash::numeric($data));
- $data = array('one');
- $this->assertFalse(Hash::numeric($data));
- $data = array('one' => 'two');
- $this->assertFalse(Hash::numeric($data));
- $data = array('one' => 1);
- $this->assertTrue(Hash::numeric($data));
- $data = array(0);
- $this->assertTrue(Hash::numeric($data));
- $data = array('one', 'two', 'three', 'four', 'five');
- $this->assertTrue(Hash::numeric(array_keys($data)));
- $data = array(1 => 'one', 2 => 'two', 3 => 'three', 4 => 'four', 5 => 'five');
- $this->assertTrue(Hash::numeric(array_keys($data)));
- $data = array('1' => 'one', 2 => 'two', 3 => 'three', 4 => 'four', 5 => 'five');
- $this->assertTrue(Hash::numeric(array_keys($data)));
- $data = array('one', 2 => 'two', 3 => 'three', 4 => 'four', 'a' => 'five');
- $this->assertFalse(Hash::numeric(array_keys($data)));
- $data = array(2.4, 1, 0, -1, -2);
- $this->assertTrue(Hash::numeric($data));
- }
- /**
- * Test simple paths.
- *
- * @return void
- */
- public function testExtractBasic() {
- $data = static::articleData();
- $result = Hash::extract($data, '');
- $this->assertEquals($data, $result);
- $result = Hash::extract($data, '0.Article.title');
- $this->assertEquals(array('First Article'), $result);
- $result = Hash::extract($data, '1.Article.title');
- $this->assertEquals(array('Second Article'), $result);
- $result = Hash::extract(array(false), '{n}.Something.another_thing');
- $this->assertEquals(array(), $result);
- }
- /**
- * Test the {n} selector
- *
- * @return void
- */
- public function testExtractNumericKey() {
- $data = static::articleData();
- $result = Hash::extract($data, '{n}.Article.title');
- $expected = array(
- 'First Article', 'Second Article',
- 'Third Article', 'Fourth Article',
- 'Fifth Article'
- );
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '0.Comment.{n}.user_id');
- $expected = array(
- '2', '4'
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the {n} selector with inconsistent arrays
- *
- * @return void
- */
- public function testExtractNumericMixedKeys() {
- $data = array(
- 'User' => array(
- 0 => array(
- 'id' => 4,
- 'name' => 'Neo'
- ),
- 1 => array(
- 'id' => 5,
- 'name' => 'Morpheus'
- ),
- 'stringKey' => array(
- 'name' => 'Fail'
- )
- )
- );
- $result = Hash::extract($data, 'User.{n}.name');
- $expected = array('Neo', 'Morpheus');
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the {n} selector with non-zero based arrays
- *
- * @return void
- */
- public function testExtractNumericNonZero() {
- $data = 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',
- )
- )
- );
- $result = Hash::extract($data, '{n}.User.name');
- $expected = array('John', 'Bob', 'Tony');
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the {s} selector.
- *
- * @return void
- */
- public function testExtractStringKey() {
- $data = static::articleData();
- $result = Hash::extract($data, '{n}.{s}.user');
- $expected = array(
- 'mariano',
- 'mariano',
- 'mariano',
- 'mariano',
- 'mariano'
- );
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '{n}.{s}.Nesting.test.1');
- $this->assertEquals(array('foo'), $result);
- }
- /**
- * Test the attribute presense selector.
- *
- * @return void
- */
- public function testExtractAttributePresence() {
- $data = static::articleData();
- $result = Hash::extract($data, '{n}.Article[published]');
- $expected = array($data[1]['Article']);
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '{n}.Article[id][published]');
- $expected = array($data[1]['Article']);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test = and != operators.
- *
- * @return void
- */
- public function testExtractAttributeEquality() {
- $data = static::articleData();
- $result = Hash::extract($data, '{n}.Article[id=3]');
- $expected = array($data[2]['Article']);
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '{n}.Article[id = 3]');
- $expected = array($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() {
- $users = array(
- array(
- 'id' => 2,
- 'username' => 'johndoe',
- 'active' => true
- ),
- array(
- 'id' => 5,
- 'username' => 'kevin',
- 'active' => true
- ),
- array(
- 'id' => 9,
- 'username' => 'samantha',
- 'active' => false
- ),
- );
- $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() {
- $data = array(
- 'Entity' => array(
- 'id' => 1,
- 'data1' => 'value',
- )
- );
- $result = Hash::extract($data, 'Entity[id=1].data1');
- $this->assertEquals(array('value'), $result);
- $data = array('Entity' => false );
- $result = Hash::extract($data, 'Entity[id=1].data1');
- $this->assertEquals(array(), $result);
- }
- /**
- * Test comparison operators.
- *
- * @return void
- */
- public function testExtractAttributeComparison() {
- $data = static::articleData();
- $result = Hash::extract($data, '{n}.Comment.{n}[user_id > 2]');
- $expected = array($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 = array($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 = array($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 = array($data[0]['Comment'][0]);
- $this->assertEquals($expected, $result);
- $this->assertEquals(2, $expected[0]['user_id']);
- }
- /**
- * Test multiple attributes with conditions.
- *
- * @return void
- */
- public function testExtractAttributeMultiple() {
- $data = static::articleData();
- $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 = array($data[0]['Comment'][1]);
- $this->assertEquals($expected, $result);
- $this->assertEquals(4, $expected[0]['user_id']);
- }
- /**
- * Test attribute pattern matching.
- *
- * @return void
- */
- public function testExtractAttributePattern() {
- $data = static::articleData();
- $result = Hash::extract($data, '{n}.Article[title=/^First/]');
- $expected = array($data[0]['Article']);
- $this->assertEquals($expected, $result);
- $result = Hash::extract($data, '{n}.Article[title=/^Fir[a-z]+/]');
- $expected = array($data[0]['Article']);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that extract() + matching can hit null things.
- *
- * @return void
- */
- public function testExtractMatchesNull() {
- $data = array(
- 'Country' => array(
- array('name' => 'Canada'),
- array('name' => 'Australia'),
- array('name' => null),
- )
- );
- $result = Hash::extract($data, 'Country.{n}[name=/Canada|^$/]');
- $expected = array(
- array(
- 'name' => 'Canada',
- ),
- array(
- 'name' => null,
- ),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that uneven keys are handled correctly.
- *
- * @return void
- */
- public function testExtractUnevenKeys() {
- $data = array(
- 'Level1' => array(
- 'Level2' => array('test1', 'test2'),
- 'Level2bis' => array('test3', 'test4')
- )
- );
- $this->assertEquals(
- array('test1', 'test2'),
- Hash::extract($data, 'Level1.Level2')
- );
- $this->assertEquals(
- array('test3', 'test4'),
- Hash::extract($data, 'Level1.Level2bis')
- );
- $data = array(
- 'Level1' => array(
- 'Level2bis' => array(
- array('test3', 'test4'),
- array('test5', 'test6')
- )
- )
- );
- $expected = array(
- array('test3', 'test4'),
- array('test5', 'test6')
- );
- $this->assertEquals($expected, Hash::extract($data, 'Level1.Level2bis'));
- $data['Level1']['Level2'] = array('test1', 'test2');
- $this->assertEquals($expected, Hash::extract($data, 'Level1.Level2bis'));
- }
- /**
- * testSort method
- *
- * @return void
- */
- public function testSort() {
- $result = Hash::sort(array(), '{n}.name');
- $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 = Hash::sort($a, '{n}.Friend.{n}.name');
- $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 = Hash::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 = Hash::sort($a, '{n}.Person.name', '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 = Hash::sort($a, '{n}.Person.name', 'ASC', 'STRING');
- $this->assertSame($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 = Hash::sort($names, '{n}.employees.0.name', 'asc');
- $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->assertSame($expected, $result);
- $a = array(
- 'SU' => array(
- 'total_fulfillable' => 2
- ),
- 'AA' => array(
- 'total_fulfillable' => 1
- ),
- 'LX' => array(
- 'total_fulfillable' => 0
- ),
- 'BL' => array(
- 'total_fulfillable' => 3
- ),
- );
- $expected = array(
- 'LX' => array(
- 'total_fulfillable' => 0
- ),
- 'AA' => array(
- 'total_fulfillable' => 1
- ),
- 'SU' => array(
- 'total_fulfillable' => 2
- ),
- 'BL' => array(
- '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 = array(
- array('Item' => array('price' => '155,000')),
- array('Item' => array('price' => '139,000')),
- array('Item' => array('price' => '275,622')),
- array('Item' => array('price' => '230,888')),
- array('Item' => array('price' => '66,000')),
- );
- $result = Hash::sort($items, '{n}.Item.price', 'asc', 'numeric');
- $expected = array(
- array('Item' => array('price' => '66,000')),
- array('Item' => array('price' => '139,000')),
- array('Item' => array('price' => '155,000')),
- array('Item' => array('price' => '230,888')),
- array('Item' => array('price' => '275,622')),
- );
- $this->assertEquals($expected, $result);
- $result = Hash::sort($items, '{n}.Item.price', 'desc', 'numeric');
- $expected = array(
- array('Item' => array('price' => '275,622')),
- array('Item' => array('price' => '230,888')),
- array('Item' => array('price' => '155,000')),
- array('Item' => array('price' => '139,000')),
- array('Item' => array('price' => '66,000')),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test natural sorting.
- *
- * @return void
- */
- public function testSortNatural() {
- $items = array(
- array('Item' => array('image' => 'img1.jpg')),
- array('Item' => array('image' => 'img99.jpg')),
- array('Item' => array('image' => 'img12.jpg')),
- array('Item' => array('image' => 'img10.jpg')),
- array('Item' => array('image' => 'img2.jpg')),
- );
- $result = Hash::sort($items, '{n}.Item.image', 'desc', 'natural');
- $expected = array(
- array('Item' => array('image' => 'img99.jpg')),
- array('Item' => array('image' => 'img12.jpg')),
- array('Item' => array('image' => 'img10.jpg')),
- array('Item' => array('image' => 'img2.jpg')),
- array('Item' => array('image' => 'img1.jpg')),
- );
- $this->assertEquals($expected, $result);
- $result = Hash::sort($items, '{n}.Item.image', 'asc', 'natural');
- $expected = array(
- array('Item' => array('image' => 'img1.jpg')),
- array('Item' => array('image' => 'img2.jpg')),
- array('Item' => array('image' => 'img10.jpg')),
- array('Item' => array('image' => 'img12.jpg')),
- array('Item' => array('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 = 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')),
- );
- $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 = 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 = 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 = 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 = Hash::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);
- $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 = Hash::sort($menus, '{s}.weight', 'ASC');
- $this->assertEquals($expected, $result);
- }
- /**
- * Test insert()
- *
- * @return void
- */
- public function testInsertSimple() {
- $a = array(
- 'pages' => array('name' => 'page')
- );
- $result = Hash::insert($a, 'files', array('name' => 'files'));
- $expected = array(
- 'pages' => array('name' => 'page'),
- 'files' => array('name' => 'files')
- );
- $this->assertEquals($expected, $result);
- $a = array(
- 'pages' => array('name' => 'page')
- );
- $result = Hash::insert($a, 'pages.name', array());
- $expected = array(
- 'pages' => array('name' => array()),
- );
- $this->assertEquals($expected, $result);
- $a = array(
- 'foo' => array('bar' => 'baz')
- );
- $result = Hash::insert($a, 'some.0123.path', array('foo' => array('bar' => 'baz')));
- $expected = array('foo' => array('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 = array(
- 0 => array('Item' => array('id' => 1, 'title' => 'first')),
- 1 => array('Item' => array('id' => 2, 'title' => 'second')),
- 2 => array('Item' => array('id' => 3, 'title' => 'third')),
- 3 => array('Item' => array('id' => 4, 'title' => 'fourth')),
- 4 => array('Item' => array('id' => 5, 'title' => 'fifth')),
- );
- $result = Hash::insert($data, '{n}.Item[id=/\b2|\b4/]', array('test' => 2));
- $expected = array(
- 0 => array('Item' => array('id' => 1, 'title' => 'first')),
- 1 => array('Item' => array('id' => 2, 'title' => 'second', 'test' => 2)),
- 2 => array('Item' => array('id' => 3, 'title' => 'third')),
- 3 => array('Item' => array('id' => 4, 'title' => 'fourth', 'test' => 2)),
- 4 => array('Item' => array('id' => 5, 'title' => 'fifth')),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that insert() can insert data over a string value.
- *
- * @return void
- */
- public function testInsertOverwriteStringValue() {
- $data = array(
- 'Some' => array(
- 'string' => 'value'
- )
- );
- $result = Hash::insert($data, 'Some.string.value', array('values'));
- $expected = array(
- 'Some' => array(
- 'string' => array(
- 'value' => array('values')
- )
- )
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test remove() method.
- *
- * @return void
- */
- public function testRemove() {
- $a = array(
- 'pages' => array('name' => 'page'),
- 'files' => array('name' => 'files')
- );
- $result = Hash::remove($a, 'files');
- $expected = array(
- 'pages' => array('name' => 'page')
- );
- $this->assertEquals($expected, $result);
- $a = array(
- 'pages' => array(
- 0 => array('name' => 'main'),
- 1 => array(
- 'name' => 'about',
- 'vars' => array('title' => 'page title')
- )
- )
- );
- $result = Hash::remove($a, 'pages.1.vars');
- $expected = array(
- 'pages' => array(
- 0 => array('name' => 'main'),
- 1 => array('name' => 'about')
- )
- );
- $this->assertEquals($expected, $result);
- $result = Hash::remove($a, 'pages.2.vars');
- $expected = $a;
- $this->assertEquals($expected, $result);
- $a = array(
- 0 => array(
- 'name' => 'pages'
- ),
- 1 => array(
- 'name' => 'files'
- )
- );
- $result = Hash::remove($a, '{n}[name=files]');
- $expected = array(
- 0 => array(
- 'name' => 'pages'
- )
- );
- $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 = array(
- 0 => array('Item' => array('id' => 1, 'title' => 'first')),
- 1 => array('Item' => array('id' => 2, 'title' => 'second')),
- 2 => array('Item' => array('id' => 3, 'title' => 'third')),
- 3 => array('Item' => array('id' => 4, 'title' => 'fourth')),
- 4 => array('Item' => array('id' => 5, 'title' => 'fifth')),
- );
- $result = Hash::remove($data, '{n}.Item[id=/\b2|\b4/]');
- $expected = array(
- 0 => array('Item' => array('id' => 1, 'title' => 'first')),
- 2 => array('Item' => array('id' => 3, 'title' => 'third')),
- 4 => array('Item' => array('id' => 5, 'title' => 'fifth')),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * testCheck method
- *
- * @return void
- */
- public function testCheck() {
- $set = array(
- 'My Index 1' => array('First' => 'The first item')
- );
- $this->assertTrue(Hash::check($set, 'My Index 1.First'));
- $this->assertTrue(Hash::check($set, 'My Index 1'));
- $set = array(
- 'My Index 1' => array(
- 'First' => array(
- 'Second' => array(
- 'Third' => array(
- '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(array(), '{n}.User.id', '{n}.User.Data');
- $this->assertTrue(empty($result));
- $a = static::userData();
- $result = Hash::combine($a, '{n}.User.id');
- $expected = array(2 => null, 14 => null, 25 => null);
- $this->assertEquals($expected, $result);
- $result = Hash::combine($a, '{n}.User.id', '{n}.User.non-existant');
- $expected = array(2 => null, 14 => null, 25 => null);
- $this->assertEquals($expected, $result);
- $result = Hash::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 = Hash::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);
- }
- /**
- * test combine() giving errors on key/value length mismatches.
- *
- * @expectedException RuntimeException
- * @return void
- */
- public function testCombineErrorMissingValue() {
- $data = array(
- array('User' => array('id' => 1, 'name' => 'mark')),
- array('User' => array('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 = array(
- array('User' => array('id' => 1, 'name' => 'mark')),
- array('User' => array('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 = 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 = Hash::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 = Hash::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 = Hash::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);
- }
- /**
- * Test combine with formatting rules.
- *
- * @return void
- */
- public function testCombineWithFormatting() {
- $a = static::userData();
- $result = Hash::combine(
- $a,
- '{n}.User.id',
- array('%1$s: %2$s', '{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 = Hash::combine(
- $a,
- array(
- '%s: %s',
- '{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 = Hash::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 = Hash::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);
- }
- /**
- * testFormat method
- *
- * @return void
- */
- public function testFormat() {
- $data = static::userData();
- $result = Hash::format(
- $data,
- array('{n}.User.Data.user', '{n}.User.id'),
- '%s, %s'
- );
- $expected = array(
- 'mariano.iglesias, 2',
- 'phpnut, 14',
- 'gwoo, 25'
- );
- $this->assertEquals($expected, $result);
- $result = Hash::format(
- $data,
- array('{n}.User.Data.user', '{n}.User.id'),
- '%2$s, %1$s'
- );
- $expected = array(
- '2, mariano.iglesias',
- '14, phpnut',
- '25, gwoo'
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * testFormattingNullValues method
- *
- * @return void
- */
- public function testFormatNullValues() {
- $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 = Hash::format($data, array('{n}.Person.something'), '%s');
- $expected = array('42', '', '');
- $this->assertEquals($expected, $result);
- $result = Hash::format($data, array('{n}.Person.city', '{n}.Person.something'), '%s, %s');
- $expected = array('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', array($this, 'mapCallback'));
- $expected = array(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', array($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 = 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 = 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 = 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 = Hash::nest($input, array('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 = 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 = Hash::nest($input, array('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 = 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 = Hash::nest($input, array('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 = array(
- array(
- 'ParentCategory' => array(
- 'id' => '1',
- 'name' => 'Lorem ipsum dolor sit amet',
- 'parent_id' => '1'
- )
- )
- );
- Hash::nest($input);
- }
- /**
- * testMergeDiff method
- *
- * @return void
- */
- public function testMergeDiff() {
- $first = array(
- 'ModelOne' => array(
- 'id' => 1001,
- 'field_one' => 'a1.m1.f1',
- 'field_two' => 'a1.m1.f2'
- )
- );
- $second = array(
- 'ModelTwo' => array(
- '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, array());
- $this->assertEquals($result, $first);
- $result = Hash::mergeDiff(array(), $first);
- $this->assertEquals($result, $first);
- $third = array(
- 'ModelOne' => array(
- 'id' => 1003,
- 'field_one' => 'a3.m1.f1',
- 'field_two' => 'a3.m1.f2',
- 'field_three' => 'a3.m1.f3'
- )
- );
- $result = Hash::mergeDiff($first, $third);
- $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);
- $first = 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'))
- );
- $second = 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 = Hash::mergeDiff($first, $second);
- $this->assertEquals($result, $first);
- $third = array(
- 0 => array(
- 'ModelThree' => array(
- 'id' => 1003,
- 'field_one' => 's3.0.m3.f1',
- 'field_two' => 's3.0.m3.f2'
- )
- )
- );
- $result = Hash::mergeDiff($first, $third);
- $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 = Hash::mergeDiff($first, array());
- $this->assertEquals($result, $first);
- $result = Hash::mergeDiff($first, $second);
- $this->assertEquals($result, $first + $second);
- }
- /**
- * Tests Hash::expand
- *
- * @return void
- */
- public function testExpand() {
- $data = array('My', 'Array', 'To', 'Flatten');
- $flat = Hash::flatten($data);
- $result = Hash::expand($flat);
- $this->assertEquals($data, $result);
- $data = array(
- '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 = array(
- array(
- 'Post' => array('id' => '1', 'author_id' => '1', 'title' => 'First Post'),
- 'Author' => array('id' => '1', 'user' => 'nate', 'password' => 'foo'),
- ),
- array(
- 'Post' => array('id' => '2', 'author_id' => '3', 'title' => 'Second Post', 'body' => 'Second Post Body'),
- 'Author' => array('id' => '3', 'user' => 'larry', 'password' => null),
- )
- );
- $this->assertEquals($expected, $result);
- $data = array(
- '0/Post/id' => 1,
- '0/Post/name' => 'test post'
- );
- $result = Hash::expand($data, '/');
- $expected = array(
- array(
- 'Post' => array(
- 'id' => 1,
- 'name' => 'test post'
- )
- )
- );
- $this->assertEquals($expected, $result);
- $data = array('a.b.100.a' => null, 'a.b.200.a' => null);
- $expected = array(
- 'a' => array(
- 'b' => array(
- 100 => array('a' => null),
- 200 => array('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 = array(
- '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);
- }
- }
|