| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576 |
- <?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 3.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Collection;
- use ArrayIterator;
- use ArrayObject;
- use Cake\Collection\Collection;
- use Cake\Collection\CollectionInterface;
- use Cake\Collection\CollectionTrait;
- use Cake\TestSuite\TestCase;
- use NoRewindIterator;
- class TestCollection extends \IteratorIterator implements CollectionInterface
- {
- use CollectionTrait;
- public function __construct($items)
- {
- if (is_array($items)) {
- $items = new \ArrayIterator($items);
- }
- if (!($items instanceof \Traversable)) {
- $msg = 'Only an array or \Traversable is allowed for Collection';
- throw new \InvalidArgumentException($msg);
- }
- parent::__construct($items);
- }
- }
- /**
- * CollectionTest
- *
- */
- class CollectionTest extends TestCase
- {
- /**
- * Tests that it is possible to convert an array into a collection
- *
- * @return void
- */
- public function testArrayIsWrapped()
- {
- $items = [1, 2, 3];
- $collection = new Collection($items);
- $this->assertEquals($items, iterator_to_array($collection));
- }
- /**
- * Tests that it is possible to convert an iterator into a collection
- *
- * @return void
- */
- public function testIteratorIsWrapped()
- {
- $items = new \ArrayObject([1, 2, 3]);
- $collection = new Collection($items);
- $this->assertEquals(iterator_to_array($items), iterator_to_array($collection));
- }
- /**
- * Test running a method over all elements in the collection
- *
- * @return void
- */
- public function testEeach()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->at(0))
- ->method('__invoke')
- ->with(1, 'a');
- $callable->expects($this->at(1))
- ->method('__invoke')
- ->with(2, 'b');
- $callable->expects($this->at(2))
- ->method('__invoke')
- ->with(3, 'c');
- $collection->each($callable);
- }
- /**
- * Test filter() with no callback.
- *
- * @return void
- */
- public function testFilterNoCallback()
- {
- $items = [1, 2, 0, 3, false, 4, null, 5, ''];
- $collection = new Collection($items);
- $result = $collection->filter()->toArray();
- $expected = [1, 2, 3, 4, 5];
- $this->assertEquals($expected, array_values($result));
- }
- /**
- * Tests that it is possible to chain filter() as it returns a collection object
- *
- * @return void
- */
- public function testFilterChaining()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->once())
- ->method('__invoke')
- ->with(3, 'c');
- $filtered = $collection->filter(function ($value, $key, $iterator) {
- return $value > 2;
- });
- $this->assertInstanceOf('Cake\Collection\Collection', $filtered);
- $filtered->each($callable);
- }
- /**
- * Tests reject
- *
- * @return void
- */
- public function testReject()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $result = $collection->reject(function ($v, $k, $items) use ($collection) {
- $this->assertSame($collection->getInnerIterator(), $items);
- return $v > 2;
- });
- $this->assertEquals(['a' => 1, 'b' => 2], iterator_to_array($result));
- $this->assertInstanceOf('Cake\Collection\Collection', $result);
- }
- /**
- * Tests every when the callback returns true for all elements
- *
- * @return void
- */
- public function testEveryReturnTrue()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->at(0))
- ->method('__invoke')
- ->with(1, 'a')
- ->will($this->returnValue(true));
- $callable->expects($this->at(1))
- ->method('__invoke')
- ->with(2, 'b')
- ->will($this->returnValue(true));
- $callable->expects($this->at(2))
- ->method('__invoke')
- ->with(3, 'c')
- ->will($this->returnValue(true));
- $this->assertTrue($collection->every($callable));
- }
- /**
- * Tests every when the callback returns false for one of the elements
- *
- * @return void
- */
- public function testEveryReturnFalse()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->at(0))
- ->method('__invoke')
- ->with(1, 'a')
- ->will($this->returnValue(true));
- $callable->expects($this->at(1))
- ->method('__invoke')
- ->with(2, 'b')
- ->will($this->returnValue(false));
- $callable->expects($this->exactly(2))->method('__invoke');
- $this->assertFalse($collection->every($callable));
- $items = [];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->never())
- ->method('__invoke');
- $this->assertFalse($collection->every($callable));
- }
- /**
- * Tests some() when one of the calls return true
- *
- * @return void
- */
- public function testSomeReturnTrue()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->at(0))
- ->method('__invoke')
- ->with(1, 'a')
- ->will($this->returnValue(false));
- $callable->expects($this->at(1))
- ->method('__invoke')
- ->with(2, 'b')
- ->will($this->returnValue(true));
- $callable->expects($this->exactly(2))->method('__invoke');
- $this->assertTrue($collection->some($callable));
- }
- /**
- * Tests some() when none of the calls return true
- *
- * @return void
- */
- public function testSomeReturnFalse()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->at(0))
- ->method('__invoke')
- ->with(1, 'a')
- ->will($this->returnValue(false));
- $callable->expects($this->at(1))
- ->method('__invoke')
- ->with(2, 'b')
- ->will($this->returnValue(false));
- $callable->expects($this->at(2))
- ->method('__invoke')
- ->with(3, 'c')
- ->will($this->returnValue(false));
- $this->assertFalse($collection->some($callable));
- }
- /**
- * Tests contains
- *
- * @return void
- */
- public function testContains()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $this->assertTrue($collection->contains(2));
- $this->assertTrue($collection->contains(1));
- $this->assertFalse($collection->contains(10));
- $this->assertFalse($collection->contains('2'));
- }
- /**
- * Tests map
- *
- * @return void
- */
- public function testMap()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $map = $collection->map(function ($v, $k, $it) use ($collection) {
- $this->assertSame($collection->getInnerIterator(), $it);
- return $v * $v;
- });
- $this->assertInstanceOf('Cake\Collection\Iterator\ReplaceIterator', $map);
- $this->assertEquals(['a' => 1, 'b' => 4, 'c' => 9], iterator_to_array($map));
- }
- /**
- * Tests reduce with initial value
- *
- * @return void
- */
- public function testReduceWithInitialValue()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->at(0))
- ->method('__invoke')
- ->with(10, 1, 'a')
- ->will($this->returnValue(11));
- $callable->expects($this->at(1))
- ->method('__invoke')
- ->with(11, 2, 'b')
- ->will($this->returnValue(13));
- $callable->expects($this->at(2))
- ->method('__invoke')
- ->with(13, 3, 'c')
- ->will($this->returnValue(16));
- $this->assertEquals(16, $collection->reduce($callable, 10));
- }
- /**
- * Tests reduce without initial value
- *
- * @return void
- */
- public function testReduceWithoutInitialValue()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3, 'd' => 4];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->at(0))
- ->method('__invoke')
- ->with(1, 2, 'b')
- ->will($this->returnValue(3));
- $callable->expects($this->at(1))
- ->method('__invoke')
- ->with(3, 3, 'c')
- ->will($this->returnValue(6));
- $callable->expects($this->at(2))
- ->method('__invoke')
- ->with(6, 4, 'd')
- ->will($this->returnValue(10));
- $this->assertEquals(10, $collection->reduce($callable));
- }
- /**
- * Tests extract
- *
- * @return void
- */
- public function testExtract()
- {
- $items = [['a' => ['b' => ['c' => 1]]], 2];
- $collection = new Collection($items);
- $map = $collection->extract('a.b.c');
- $this->assertInstanceOf('Cake\Collection\Iterator\ExtractIterator', $map);
- $this->assertEquals([1, null], iterator_to_array($map));
- }
- /**
- * Tests sort
- *
- * @return void
- */
- public function testSortString()
- {
- $items = [
- ['a' => ['b' => ['c' => 4]]],
- ['a' => ['b' => ['c' => 10]]],
- ['a' => ['b' => ['c' => 6]]]
- ];
- $collection = new Collection($items);
- $map = $collection->sortBy('a.b.c');
- $this->assertInstanceOf('Cake\Collection\Collection', $map);
- $expected = [
- ['a' => ['b' => ['c' => 10]]],
- ['a' => ['b' => ['c' => 6]]],
- ['a' => ['b' => ['c' => 4]]],
- ];
- $this->assertEquals($expected, $map->toList());
- }
- /**
- * Tests max
- *
- * @return void
- */
- public function testMax()
- {
- $items = [
- ['a' => ['b' => ['c' => 4]]],
- ['a' => ['b' => ['c' => 10]]],
- ['a' => ['b' => ['c' => 6]]]
- ];
- $collection = new Collection($items);
- $this->assertEquals(['a' => ['b' => ['c' => 10]]], $collection->max('a.b.c'));
- $callback = function ($e) {
- return $e['a']['b']['c'] * - 1;
- };
- $this->assertEquals(['a' => ['b' => ['c' => 4]]], $collection->max($callback));
- }
- /**
- * Tests min
- *
- * @return void
- */
- public function testMin()
- {
- $items = [
- ['a' => ['b' => ['c' => 4]]],
- ['a' => ['b' => ['c' => 10]]],
- ['a' => ['b' => ['c' => 6]]]
- ];
- $collection = new Collection($items);
- $this->assertEquals(['a' => ['b' => ['c' => 4]]], $collection->min('a.b.c'));
- }
- /**
- * Tests groupBy
- *
- * @return void
- */
- public function testGroupBy()
- {
- $items = [
- ['id' => 1, 'name' => 'foo', 'parent_id' => 10],
- ['id' => 2, 'name' => 'bar', 'parent_id' => 11],
- ['id' => 3, 'name' => 'baz', 'parent_id' => 10],
- ];
- $collection = new Collection($items);
- $grouped = $collection->groupBy('parent_id');
- $expected = [
- 10 => [
- ['id' => 1, 'name' => 'foo', 'parent_id' => 10],
- ['id' => 3, 'name' => 'baz', 'parent_id' => 10],
- ],
- 11 => [
- ['id' => 2, 'name' => 'bar', 'parent_id' => 11],
- ]
- ];
- $this->assertEquals($expected, iterator_to_array($grouped));
- $this->assertInstanceOf('Cake\Collection\Collection', $grouped);
- $grouped = $collection->groupBy(function ($element) {
- return $element['parent_id'];
- });
- $this->assertEquals($expected, iterator_to_array($grouped));
- }
- /**
- * Tests grouping by a deep key
- *
- * @return void
- */
- public function testGroupByDeepKey()
- {
- $items = [
- ['id' => 1, 'name' => 'foo', 'thing' => ['parent_id' => 10]],
- ['id' => 2, 'name' => 'bar', 'thing' => ['parent_id' => 11]],
- ['id' => 3, 'name' => 'baz', 'thing' => ['parent_id' => 10]],
- ];
- $collection = new Collection($items);
- $grouped = $collection->groupBy('thing.parent_id');
- $expected = [
- 10 => [
- ['id' => 1, 'name' => 'foo', 'thing' => ['parent_id' => 10]],
- ['id' => 3, 'name' => 'baz', 'thing' => ['parent_id' => 10]],
- ],
- 11 => [
- ['id' => 2, 'name' => 'bar', 'thing' => ['parent_id' => 11]],
- ]
- ];
- $this->assertEquals($expected, iterator_to_array($grouped));
- }
- /**
- * Tests indexBy
- *
- * @return void
- */
- public function testIndexBy()
- {
- $items = [
- ['id' => 1, 'name' => 'foo', 'parent_id' => 10],
- ['id' => 2, 'name' => 'bar', 'parent_id' => 11],
- ['id' => 3, 'name' => 'baz', 'parent_id' => 10],
- ];
- $collection = new Collection($items);
- $grouped = $collection->indexBy('id');
- $expected = [
- 1 => ['id' => 1, 'name' => 'foo', 'parent_id' => 10],
- 3 => ['id' => 3, 'name' => 'baz', 'parent_id' => 10],
- 2 => ['id' => 2, 'name' => 'bar', 'parent_id' => 11],
- ];
- $this->assertEquals($expected, iterator_to_array($grouped));
- $this->assertInstanceOf('Cake\Collection\Collection', $grouped);
- $grouped = $collection->indexBy(function ($element) {
- return $element['id'];
- });
- $this->assertEquals($expected, iterator_to_array($grouped));
- }
- /**
- * Tests indexBy with a deep property
- *
- * @return void
- */
- public function testIndexByDeep()
- {
- $items = [
- ['id' => 1, 'name' => 'foo', 'thing' => ['parent_id' => 10]],
- ['id' => 2, 'name' => 'bar', 'thing' => ['parent_id' => 11]],
- ['id' => 3, 'name' => 'baz', 'thing' => ['parent_id' => 10]],
- ];
- $collection = new Collection($items);
- $grouped = $collection->indexBy('thing.parent_id');
- $expected = [
- 10 => ['id' => 3, 'name' => 'baz', 'thing' => ['parent_id' => 10]],
- 11 => ['id' => 2, 'name' => 'bar', 'thing' => ['parent_id' => 11]],
- ];
- $this->assertEquals($expected, iterator_to_array($grouped));
- }
- /**
- * Tests countBy
- *
- * @return void
- */
- public function testCountBy()
- {
- $items = [
- ['id' => 1, 'name' => 'foo', 'parent_id' => 10],
- ['id' => 2, 'name' => 'bar', 'parent_id' => 11],
- ['id' => 3, 'name' => 'baz', 'parent_id' => 10],
- ];
- $collection = new Collection($items);
- $grouped = $collection->countBy('parent_id');
- $expected = [
- 10 => 2,
- 11 => 1
- ];
- $this->assertEquals($expected, iterator_to_array($grouped));
- $this->assertInstanceOf('Cake\Collection\Collection', $grouped);
- $grouped = $collection->countBy(function ($element) {
- return $element['parent_id'];
- });
- $this->assertEquals($expected, iterator_to_array($grouped));
- }
- /**
- * Tests shuffle
- *
- * @return void
- */
- public function testShuffle()
- {
- $data = [1, 2, 3, 4];
- $collection = (new Collection($data))->shuffle();
- $this->assertEquals(count($data), count(iterator_to_array($collection)));
- foreach ($collection as $value) {
- $this->assertContains($value, $data);
- }
- }
- /**
- * Tests sample
- *
- * @return void
- */
- public function testSample()
- {
- $data = [1, 2, 3, 4];
- $collection = (new Collection($data))->sample(2);
- $this->assertEquals(2, count(iterator_to_array($collection)));
- foreach ($collection as $value) {
- $this->assertContains($value, $data);
- }
- }
- /**
- * Test toArray method
- *
- * @return void
- */
- public function testToArray()
- {
- $data = [1, 2, 3, 4];
- $collection = new Collection($data);
- $this->assertEquals($data, $collection->toArray());
- }
- /**
- * Test toList method
- *
- * @return void
- */
- public function testToList()
- {
- $data = [100 => 1, 300 => 2, 500 => 3, 1 => 4];
- $collection = new Collection($data);
- $this->assertEquals(array_values($data), $collection->toList());
- }
- /**
- * Test json encoding
- *
- * @return void
- */
- public function testToJson()
- {
- $data = [1, 2, 3, 4];
- $collection = new Collection($data);
- $this->assertEquals(json_encode($data), json_encode($collection));
- }
- /**
- * Tests that only arrays and Traversables are allowed in the constructor
- *
- * @expectedException \InvalidArgumentException
- * @expectedExceptionMessage Only an array or \Traversable is allowed for Collection
- * @return void
- */
- public function testInvalidConstructorArgument()
- {
- new Collection('Derp');
- }
- /**
- * Tests that issuing a count will throw an exception
- *
- * @expectedException \LogicException
- * @return void
- */
- public function testCollectionCount()
- {
- $data = [1, 2, 3, 4];
- $collection = new Collection($data);
- $collection->count();
- }
- /**
- * Tests take method
- *
- * @return void
- */
- public function testTake()
- {
- $data = [1, 2, 3, 4];
- $collection = new Collection($data);
- $taken = $collection->take(2);
- $this->assertEquals([1, 2], $taken->toArray());
- $taken = $collection->take(3);
- $this->assertEquals([1, 2, 3], $taken->toArray());
- $taken = $collection->take(500);
- $this->assertEquals([1, 2, 3, 4], $taken->toArray());
- $taken = $collection->take(1);
- $this->assertEquals([1], $taken->toArray());
- $taken = $collection->take();
- $this->assertEquals([1], $taken->toArray());
- $taken = $collection->take(2, 2);
- $this->assertEquals([2 => 3, 3 => 4], $taken->toArray());
- }
- /**
- * Tests match
- *
- * @return void
- */
- public function testMatch()
- {
- $items = [
- ['id' => 1, 'name' => 'foo', 'thing' => ['parent_id' => 10]],
- ['id' => 2, 'name' => 'bar', 'thing' => ['parent_id' => 11]],
- ['id' => 3, 'name' => 'baz', 'thing' => ['parent_id' => 10]],
- ];
- $collection = new Collection($items);
- $matched = $collection->match(['thing.parent_id' => 10, 'name' => 'baz']);
- $this->assertEquals([2 => $items[2]], $matched->toArray());
- $matched = $collection->match(['thing.parent_id' => 10]);
- $this->assertEquals(
- [0 => $items[0], 2 => $items[2]],
- $matched->toArray()
- );
- $matched = $collection->match(['thing.parent_id' => 500]);
- $this->assertEquals([], $matched->toArray());
- $matched = $collection->match(['parent_id' => 10, 'name' => 'baz']);
- $this->assertEquals([], $matched->toArray());
- }
- /**
- * Tests firstMatch
- *
- * @return void
- */
- public function testFirstMatch()
- {
- $items = [
- ['id' => 1, 'name' => 'foo', 'thing' => ['parent_id' => 10]],
- ['id' => 2, 'name' => 'bar', 'thing' => ['parent_id' => 11]],
- ['id' => 3, 'name' => 'baz', 'thing' => ['parent_id' => 10]],
- ];
- $collection = new Collection($items);
- $matched = $collection->firstMatch(['thing.parent_id' => 10]);
- $this->assertEquals(
- ['id' => 1, 'name' => 'foo', 'thing' => ['parent_id' => 10]],
- $matched
- );
- $matched = $collection->firstMatch(['thing.parent_id' => 10, 'name' => 'baz']);
- $this->assertEquals(
- ['id' => 3, 'name' => 'baz', 'thing' => ['parent_id' => 10]],
- $matched
- );
- }
- /**
- * Tests the append method
- *
- * @return void
- */
- public function testAppend()
- {
- $collection = new Collection([1, 2, 3]);
- $combined = $collection->append([4, 5, 6]);
- $this->assertEquals([1, 2, 3, 4, 5, 6], $combined->toArray(false));
- $collection = new Collection(['a' => 1, 'b' => 2]);
- $combined = $collection->append(['c' => 3, 'a' => 4]);
- $this->assertEquals(['a' => 4, 'b' => 2, 'c' => 3], $combined->toArray());
- }
- /**
- * Tests the append method with iterator
- */
- public function testAppendIterator()
- {
- $collection = new Collection([1, 2, 3]);
- $iterator = new ArrayIterator([4, 5, 6]);
- $combined = $collection->append($iterator);
- $this->assertEquals([1, 2, 3, 4, 5, 6], $combined->toList());
- }
- public function testAppendNotCollectionInstance()
- {
- $collection = new TestCollection([1, 2, 3]);
- $combined = $collection->append([4, 5, 6]);
- $this->assertEquals([1, 2, 3, 4, 5, 6], $combined->toList());
- }
- /**
- * Tests that by calling compile internal iteration operations are not done
- * more than once
- *
- * @return void
- */
- public function testCompile()
- {
- $items = ['a' => 1, 'b' => 2, 'c' => 3];
- $collection = new Collection($items);
- $callable = $this->getMock('stdClass', ['__invoke']);
- $callable->expects($this->at(0))
- ->method('__invoke')
- ->with(1, 'a')
- ->will($this->returnValue(4));
- $callable->expects($this->at(1))
- ->method('__invoke')
- ->with(2, 'b')
- ->will($this->returnValue(5));
- $callable->expects($this->at(2))
- ->method('__invoke')
- ->with(3, 'c')
- ->will($this->returnValue(6));
- $compiled = $collection->map($callable)->compile();
- $this->assertEquals(['a' => 4, 'b' => 5, 'c' => 6], $compiled->toArray());
- $this->assertEquals(['a' => 4, 'b' => 5, 'c' => 6], $compiled->toArray());
- }
- /**
- * Tests converting a non rewindable iterator into a rewindable one using
- * the buffered method.
- *
- * @return void
- */
- public function testBuffered()
- {
- $items = new NoRewindIterator(new ArrayIterator(['a' => 4, 'b' => 5, 'c' => 6]));
- $buffered = (new Collection($items))->buffered();
- $this->assertEquals(['a' => 4, 'b' => 5, 'c' => 6], $buffered->toArray());
- $this->assertEquals(['a' => 4, 'b' => 5, 'c' => 6], $buffered->toArray());
- }
- /**
- * Tests the combine method
- *
- * @return void
- */
- public function testCombine()
- {
- $items = [
- ['id' => 1, 'name' => 'foo', 'parent' => 'a'],
- ['id' => 2, 'name' => 'bar', 'parent' => 'b'],
- ['id' => 3, 'name' => 'baz', 'parent' => 'a']
- ];
- $collection = (new Collection($items))->combine('id', 'name');
- $expected = [1 => 'foo', 2 => 'bar', 3 => 'baz'];
- $this->assertEquals($expected, $collection->toArray());
- $expected = ['foo' => 1, 'bar' => 2, 'baz' => 3];
- $collection = (new Collection($items))->combine('name', 'id');
- $this->assertEquals($expected, $collection->toArray());
- $collection = (new Collection($items))->combine('id', 'name', 'parent');
- $expected = ['a' => [1 => 'foo', 3 => 'baz'], 'b' => [2 => 'bar']];
- $this->assertEquals($expected, $collection->toArray());
- $expected = [
- '0-1' => ['foo-0-1' => '0-1-foo'],
- '1-2' => ['bar-1-2' => '1-2-bar'],
- '2-3' => ['baz-2-3' => '2-3-baz']
- ];
- $collection = (new Collection($items))->combine(
- function ($value, $key) {
- return $value['name'] . '-' . $key;
- },
- function ($value, $key) {
- return $key . '-' . $value['name'];
- },
- function ($value, $key) {
- return $key . '-' . $value['id'];
- }
- );
- $this->assertEquals($expected, $collection->toArray());
- $collection = (new Collection($items))->combine('id', 'crazy');
- $this->assertEquals([1 => null, 2 => null, 3 => null], $collection->toArray());
- }
- /**
- * Tests the nest method with only one level
- *
- * @return void
- */
- public function testNest()
- {
- $items = [
- ['id' => 1, 'parent_id' => null],
- ['id' => 2, 'parent_id' => 1],
- ['id' => 3, 'parent_id' => 1],
- ['id' => 4, 'parent_id' => 1],
- ['id' => 5, 'parent_id' => 6],
- ['id' => 6, 'parent_id' => null],
- ['id' => 7, 'parent_id' => 1],
- ['id' => 8, 'parent_id' => 6],
- ['id' => 9, 'parent_id' => 6],
- ['id' => 10, 'parent_id' => 6]
- ];
- $collection = (new Collection($items))->nest('id', 'parent_id');
- $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' => 7, 'parent_id' => 1, 'children' => []]
- ]
- ],
- [
- 'id' => 6,
- 'parent_id' => null,
- 'children' => [
- ['id' => 5, 'parent_id' => 6, 'children' => []],
- ['id' => 8, 'parent_id' => 6, 'children' => []],
- ['id' => 9, 'parent_id' => 6, 'children' => []],
- ['id' => 10, 'parent_id' => 6, 'children' => []]
- ]
- ]
- ];
- $this->assertEquals($expected, $collection->toArray());
- }
- /**
- * Tests the nest method with more than one level
- *
- * @return void
- */
- public function testNestMultiLevel()
- {
- $items = [
- ['id' => 1, 'parent_id' => null],
- ['id' => 2, 'parent_id' => 1],
- ['id' => 3, 'parent_id' => 2],
- ['id' => 4, 'parent_id' => 2],
- ['id' => 5, 'parent_id' => 3],
- ['id' => 6, 'parent_id' => null],
- ['id' => 7, 'parent_id' => 3],
- ['id' => 8, 'parent_id' => 4],
- ['id' => 9, 'parent_id' => 6],
- ['id' => 10, 'parent_id' => 6]
- ];
- $collection = (new Collection($items))->nest('id', 'parent_id');
- $expected = [
- [
- 'id' => 1,
- 'parent_id' => null,
- 'children' => [
- [
- 'id' => 2,
- 'parent_id' => 1,
- 'children' => [
- [
- 'id' => 3,
- 'parent_id' => 2,
- 'children' => [
- ['id' => 5, 'parent_id' => 3, 'children' => []],
- ['id' => 7, 'parent_id' => 3, 'children' => []]
- ]
- ],
- [
- 'id' => 4,
- 'parent_id' => 2,
- 'children' => [
- ['id' => 8, 'parent_id' => 4, 'children' => []]
- ]
- ]
- ]
- ]
- ]
- ],
- [
- 'id' => 6,
- 'parent_id' => null,
- 'children' => [
- ['id' => 9, 'parent_id' => 6, 'children' => []],
- ['id' => 10, 'parent_id' => 6, 'children' => []]
- ]
- ]
- ];
- $this->assertEquals($expected, $collection->toArray());
- }
- /**
- * Tests the nest method with more than one level
- *
- * @return void
- */
- public function testNestObjects()
- {
- $items = [
- new ArrayObject(['id' => 1, 'parent_id' => null]),
- new ArrayObject(['id' => 2, 'parent_id' => 1]),
- new ArrayObject(['id' => 3, 'parent_id' => 2]),
- new ArrayObject(['id' => 4, 'parent_id' => 2]),
- new ArrayObject(['id' => 5, 'parent_id' => 3]),
- new ArrayObject(['id' => 6, 'parent_id' => null]),
- new ArrayObject(['id' => 7, 'parent_id' => 3]),
- new ArrayObject(['id' => 8, 'parent_id' => 4]),
- new ArrayObject(['id' => 9, 'parent_id' => 6]),
- new ArrayObject(['id' => 10, 'parent_id' => 6])
- ];
- $collection = (new Collection($items))->nest('id', 'parent_id');
- $expected = [
- new ArrayObject([
- 'id' => 1,
- 'parent_id' => null,
- 'children' => [
- new ArrayObject([
- 'id' => 2,
- 'parent_id' => 1,
- 'children' => [
- new ArrayObject([
- 'id' => 3,
- 'parent_id' => 2,
- 'children' => [
- new ArrayObject(['id' => 5, 'parent_id' => 3, 'children' => []]),
- new ArrayObject(['id' => 7, 'parent_id' => 3, 'children' => []])
- ]
- ]),
- new ArrayObject([
- 'id' => 4,
- 'parent_id' => 2,
- 'children' => [
- new ArrayObject(['id' => 8, 'parent_id' => 4, 'children' => []])
- ]
- ])
- ]
- ])
- ]
- ]),
- new ArrayObject([
- 'id' => 6,
- 'parent_id' => null,
- 'children' => [
- new ArrayObject(['id' => 9, 'parent_id' => 6, 'children' => []]),
- new ArrayObject(['id' => 10, 'parent_id' => 6, 'children' => []])
- ]
- ])
- ];
- $this->assertEquals($expected, $collection->toArray());
- }
- /**
- * Tests insert
- *
- * @return void
- */
- public function testInsert()
- {
- $items = [['a' => 1], ['b' => 2]];
- $collection = new Collection($items);
- $iterator = $collection->insert('c', [3, 4]);
- $this->assertInstanceOf('Cake\Collection\Iterator\InsertIterator', $iterator);
- $this->assertEquals(
- [['a' => 1, 'c' => 3], ['b' => 2, 'c' => 4]],
- iterator_to_array($iterator)
- );
- }
- /**
- * Provider for testing each of the directions for listNested
- *
- * @return void
- */
- public function nestedListProvider()
- {
- return [
- ['desc', [1, 2, 3, 5, 7, 4, 8, 6, 9, 10]],
- ['asc', [5, 7, 3, 8, 4, 2, 1, 9, 10, 6]],
- ['leaves', [5, 7, 8, 9, 10]]
- ];
- }
- /**
- * Tests the listNested method with the default 'children' nesting key
- *
- * @dataProvider nestedListProvider
- * @return void
- */
- public function testListNested($dir, $expected)
- {
- $items = [
- ['id' => 1, 'parent_id' => null],
- ['id' => 2, 'parent_id' => 1],
- ['id' => 3, 'parent_id' => 2],
- ['id' => 4, 'parent_id' => 2],
- ['id' => 5, 'parent_id' => 3],
- ['id' => 6, 'parent_id' => null],
- ['id' => 7, 'parent_id' => 3],
- ['id' => 8, 'parent_id' => 4],
- ['id' => 9, 'parent_id' => 6],
- ['id' => 10, 'parent_id' => 6]
- ];
- $collection = (new Collection($items))->nest('id', 'parent_id')->listNested($dir);
- $this->assertEquals($expected, $collection->extract('id')->toArray(false));
- }
- /**
- * Tests using listNested with a different nesting key
- *
- * @return void
- */
- public function testListNestedCustomKey()
- {
- $items = [
- ['id' => 1, 'stuff' => [['id' => 2, 'stuff' => [['id' => 3]]]]],
- ['id' => 4, 'stuff' => [['id' => 5]]]
- ];
- $collection = (new Collection($items))->listNested('desc', 'stuff');
- $this->assertEquals(range(1, 5), $collection->extract('id')->toArray(false));
- }
- /**
- * Tests flattening the collection using a custom callable function
- *
- * @return void
- */
- public function testListNestedWithCallable()
- {
- $items = [
- ['id' => 1, 'stuff' => [['id' => 2, 'stuff' => [['id' => 3]]]]],
- ['id' => 4, 'stuff' => [['id' => 5]]]
- ];
- $collection = (new Collection($items))->listNested('desc', function ($item) {
- return isset($item['stuff']) ? $item['stuff'] : [];
- });
- $this->assertEquals(range(1, 5), $collection->extract('id')->toArray(false));
- }
- /**
- * Tests the sumOf method
- *
- * @return void
- */
- public function testSumOf()
- {
- $items = [
- ['invoice' => ['total' => 100]],
- ['invoice' => ['total' => 200]]
- ];
- $this->assertEquals(300, (new Collection($items))->sumOf('invoice.total'));
- $sum = (new Collection($items))->sumOf(function ($v) {
- return $v['invoice']['total'] * 2;
- });
- $this->assertEquals(600, $sum);
- }
- /**
- * Tests the stopWhen method with a callable
- *
- * @return void
- */
- public function testStopWhenCallable()
- {
- $items = [10, 20, 40, 10, 5];
- $collection = (new Collection($items))->stopWhen(function ($v) {
- return $v > 20;
- });
- $this->assertEquals([10, 20], $collection->toArray());
- }
- /**
- * Tests the stopWhen method with a matching array
- *
- * @return void
- */
- public function testStopWhenWithArray()
- {
- $items = [
- ['foo' => 'bar'],
- ['foo' => 'baz'],
- ['foo' => 'foo']
- ];
- $collection = (new Collection($items))->stopWhen(['foo' => 'baz']);
- $this->assertEquals([['foo' => 'bar']], $collection->toArray());
- }
- /**
- * Tests the unfold method
- *
- * @return void
- */
- public function testUnfold()
- {
- $items = [
- [1, 2, 3, 4],
- [5, 6],
- [7, 8]
- ];
- $collection = (new Collection($items))->unfold();
- $this->assertEquals(range(1, 8), $collection->toArray(false));
- $items = [
- [1, 2],
- new Collection([3, 4])
- ];
- $collection = (new Collection($items))->unfold();
- $this->assertEquals(range(1, 4), $collection->toArray(false));
- }
- /**
- * Tests the unfold method with empty levels
- *
- * @return void
- */
- public function testUnfoldEmptyLevels()
- {
- $items = [[], [1, 2], []];
- $collection = (new Collection($items))->unfold();
- $this->assertEquals(range(1, 2), $collection->toArray(false));
- $items = [];
- $collection = (new Collection($items))->unfold();
- $this->assertEmpty($collection->toArray(false));
- }
- /**
- * Tests the unfold when passing a callable
- *
- * @return void
- */
- public function testUnfoldWithCallable()
- {
- $items = [1, 2, 3];
- $collection = (new Collection($items))->unfold(function ($item) {
- return range($item, $item * 2);
- });
- $expected = [1, 2, 2, 3, 4, 3, 4, 5, 6];
- $this->assertEquals($expected, $collection->toArray(false));
- }
- /**
- * Tests the through() method
- *
- * @return void
- */
- public function testThrough()
- {
- $items = [1, 2, 3];
- $collection = (new Collection($items))->through(function ($collection) {
- return $collection->append($collection->toList());
- });
- $this->assertEquals([1, 2, 3, 1, 2, 3], $collection->toList());
- }
- /**
- * Tests the through method when it returns an array
- *
- * @return void
- */
- public function testThroughReturnArray()
- {
- $items = [1, 2, 3];
- $collection = (new Collection($items))->through(function ($collection) {
- $list = $collection->toList();
- return array_merge($list, $list);
- });
- $this->assertEquals([1, 2, 3, 1, 2, 3], $collection->toList());
- }
- /**
- * Tests that the sortBy method does not die when something that is not a
- * collection is passed
- *
- * @return void
- */
- public function testComplexSortBy()
- {
- $results = collection([3, 7])
- ->unfold(function ($value) {
- return [
- ['sorting' => $value * 2],
- ['sorting' => $value * 2]
- ];
- })
- ->sortBy('sorting')
- ->extract('sorting')
- ->toList();
- $this->assertEquals([14, 14, 6, 6], $results);
- }
- /**
- * Tests __debugInfo() or debug() usage
- *
- * @return void
- */
- public function testDebug()
- {
- $items = [1, 2, 3];
- $collection = new Collection($items);
- $result = $collection->__debugInfo();
- $expected = [
- 'count' => 3,
- ];
- $this->assertSame($expected, $result);
- // Calling it again will rewind
- $result = $collection->__debugInfo();
- $expected = [
- 'count' => 3,
- ];
- $this->assertSame($expected, $result);
- // Make sure it also works with non rewindable iterators
- $iterator = new NoRewindIterator(new ArrayIterator($items));
- $collection = new Collection($iterator);
- $result = $collection->__debugInfo();
- $expected = [
- 'count' => 3,
- ];
- $this->assertSame($expected, $result);
- // Calling it again will in this case not rewind
- $result = $collection->__debugInfo();
- $expected = [
- 'count' => 0,
- ];
- $this->assertSame($expected, $result);
- }
- /**
- * Tests the isEmpty() method
- *
- * @return void
- */
- public function testIsEmpty()
- {
- $collection = new Collection([1, 2, 3]);
- $this->assertFalse($collection->isEmpty());
- $collection = $collection->map(function () {
- return null;
- });
- $this->assertFalse($collection->isEmpty());
- $collection = $collection->filter();
- $this->assertTrue($collection->isEmpty());
- }
- /**
- * Tests the isEmpty() method does not consume data
- * from buffered iterators.
- *
- * @return void
- */
- public function testIsEmptyDoesNotConsume()
- {
- $array = new \ArrayIterator([1, 2, 3]);
- $inner = new \Cake\Collection\Iterator\BufferedIterator($array);
- $collection = new Collection($inner);
- $this->assertFalse($collection->isEmpty());
- $this->assertCount(3, $collection->toArray());
- }
- /**
- * Tests the zip() method
- *
- * @return void
- */
- public function testZip()
- {
- $collection = new Collection([1, 2]);
- $zipped = $collection->zip([3, 4]);
- $this->assertEquals([[1, 3], [2, 4]], $zipped->toList());
- $collection = new Collection([1, 2]);
- $zipped = $collection->zip([3]);
- $this->assertEquals([[1, 3]], $zipped->toList());
- $collection = new Collection([1, 2]);
- $zipped = $collection->zip([3, 4], [5, 6], [7, 8], [9, 10, 11]);
- $this->assertEquals([
- [1, 3, 5, 7, 9],
- [2, 4, 6, 8, 10]
- ], $zipped->toList());
- }
- /**
- * Tests the zipWith() method
- *
- * @return void
- */
- public function testZipWith()
- {
- $collection = new Collection([1, 2]);
- $zipped = $collection->zipWith([3, 4], function ($a, $b) {
- return $a * $b;
- });
- $this->assertEquals([3, 8], $zipped->toList());
- $zipped = $collection->zipWith([3, 4], [5, 6, 7], function () {
- return array_sum(func_get_args());
- });
- $this->assertEquals([9, 12], $zipped->toList());
- }
- /**
- * Tests the skip() method
- *
- * @return void
- */
- public function testSkip()
- {
- $collection = new Collection([1, 2, 3, 4, 5]);
- $this->assertEquals([3, 4, 5], $collection->skip(2)->toList());
- $this->assertEquals([5], $collection->skip(4)->toList());
- }
- /**
- * Tests the last() method
- *
- * @return void
- */
- public function testLast()
- {
- $collection = new Collection([1, 2, 3]);
- $this->assertEquals(3, $collection->last());
- $collection = $collection->map(function ($e) {
- return $e * 2;
- });
- $this->assertEquals(6, $collection->last());
- }
- /**
- * Tests the last() method when on an empty collection
- *
- * @return void
- */
- public function testLAstWithEmptyCollection()
- {
- $collection = new Collection([]);
- $this->assertNull($collection->last());
- }
- /**
- * Tests sumOf with no parameters
- *
- * @return void
- */
- public function testSumOfWithIdentity()
- {
- $collection = new Collection([1, 2, 3]);
- $this->assertEquals(6, $collection->sumOf());
- $collection = new Collection(['a' => 1, 'b' => 4, 'c' => 6]);
- $this->assertEquals(11, $collection->sumOf());
- }
- /**
- * Tests using extract with the {*} notation
- *
- * @return void
- */
- public function testUnfoldedExtract()
- {
- $items = [
- ['comments' => [['id' => 1], ['id' => 2]]],
- ['comments' => [['id' => 3], ['id' => 4]]],
- ['comments' => [['id' => 7], ['nope' => 8]]],
- ];
- $extracted = (new Collection($items))->extract('comments.{*}.id');
- $this->assertEquals([1, 2, 3, 4, 7, null], $extracted->toArray());
- $items = [
- [
- 'comments' => [
- [
- 'voters' => [['id' => 1], ['id' => 2]]
- ]
- ]
- ],
- [
- 'comments' => [
- [
- 'voters' => [['id' => 3], ['id' => 4]]
- ]
- ]
- ],
- [
- 'comments' => [
- [
- 'voters' => [['id' => 5], ['nope' => 'fail'], ['id' => 6]]
- ]
- ]
- ],
- [
- 'comments' => [
- [
- 'not_voters' => [['id' => 5]]
- ]
- ]
- ],
- ['not_comments' => []]
- ];
- $extracted = (new Collection($items))->extract('comments.{*}.voters.{*}.id');
- $expected = [1, 2, 3, 4, 5, null, 6];
- $this->assertEquals($expected, $extracted->toArray());
- $this->assertEquals($expected, $extracted->toList());
- }
- /**
- * Tests serializing a simple collection
- *
- * @return void
- */
- public function testSerializeSimpleCollection()
- {
- $collection = new Collection([1, 2, 3]);
- $selialized = serialize($collection);
- $unserialized = unserialize($selialized);
- $this->assertEquals($collection->toList(), $unserialized->toList());
- $this->assertEquals($collection->toArray(), $unserialized->toArray());
- }
- /**
- * Tests serialization when using append
- *
- * @return void
- */
- public function testSerializeWithAppendIterators()
- {
- $collection = new Collection([1, 2, 3]);
- $collection = $collection->append(['a' => 4, 'b' => 5, 'c' => 6]);
- $selialized = serialize($collection);
- $unserialized = unserialize($selialized);
- $this->assertEquals($collection->toList(), $unserialized->toList());
- $this->assertEquals($collection->toArray(), $unserialized->toArray());
- }
- /**
- * Tests serialization when using nested iterators
- *
- * @return void
- */
- public function testSerializeWithNestedIterators()
- {
- $collection = new Collection([1, 2, 3]);
- $collection = $collection->map(function ($e) {
- return $e * 3;
- });
- $collection = $collection->groupBy(function ($e) {
- return $e % 2;
- });
- $selialized = serialize($collection);
- $unserialized = unserialize($selialized);
- $this->assertEquals($collection->toList(), $unserialized->toList());
- $this->assertEquals($collection->toArray(), $unserialized->toArray());
- }
- /**
- * Tests serializing a zip() call
- *
- * @return void
- */
- public function testSerializeWithZipIterator()
- {
- $collection = new Collection([4, 5]);
- $collection = $collection->zip([1, 2]);
- $selialized = serialize($collection);
- $unserialized = unserialize($selialized);
- $this->assertEquals($collection->toList(), $unserialized->toList());
- }
- /**
- * Tests the chunk method with exact chunks
- *
- * @return void
- */
- public function testChunk()
- {
- $collection = new Collection(range(1, 10));
- $chunked = $collection->chunk(2)->toList();
- $expected = [[1, 2], [3, 4], [5, 6], [7, 8], [9, 10]];
- $this->assertEquals($expected, $chunked);
- }
- /**
- * Tests the chunk method with overflowing chunk size
- *
- * @return void
- */
- public function testChunkOverflow()
- {
- $collection = new Collection(range(1, 11));
- $chunked = $collection->chunk(2)->toList();
- $expected = [[1, 2], [3, 4], [5, 6], [7, 8], [9, 10], [11]];
- $this->assertEquals($expected, $chunked);
- }
- /**
- * Tests the chunk method with non-scalar items
- *
- * @return void
- */
- public function testChunkNested()
- {
- $collection = new Collection([1, 2, 3, [4, 5], 6, [7, [8, 9], 10], 11]);
- $chunked = $collection->chunk(2)->toList();
- $expected = [[1, 2], [3, [4, 5]], [6, [7, [8, 9], 10]], [11]];
- $this->assertEquals($expected, $chunked);
- }
- }
|