| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098 |
- <?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\TestSuite\TestCase;
- use NoRewindIterator;
- /**
- * 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, $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));
- }
- /**
- * 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, $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
- *
- * @return void
- */
- public function testReduce()
- {
- $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 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 = [
- 2 => ['a' => ['b' => ['c' => 10]]],
- 1 => ['a' => ['b' => ['c' => 6]]],
- 0 => ['a' => ['b' => ['c' => 4]]],
- ];
- $this->assertEquals($expected, iterator_to_array($map));
- }
- /**
- * 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 json enconding
- *
- * @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 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 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 direcations 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));
- }
- }
|