|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace OpenSoutheners\ExtendedLaravel\Tests\Support; |
| 4 | + |
| 5 | +use Illuminate\Support\Collection; |
| 6 | +use OpenSoutheners\ExtendedLaravel\Tests\Fixtures\Models\Post; |
| 7 | +use OpenSoutheners\ExtendedLaravel\Tests\Fixtures\Models\User; |
| 8 | +use OpenSoutheners\ExtendedLaravel\Tests\TestCase; |
| 9 | + |
| 10 | +class CollectionTest extends TestCase |
| 11 | +{ |
| 12 | + public function test_collection_of_models_to_csv() |
| 13 | + { |
| 14 | + $postOne = new Post(['title' => 'Hello world', 'content' => 'Lorem ipsum dolor']); |
| 15 | + $postTwo = new Post(['title' => 'Hola mundo', 'content' => 'Lorem ipsum']); |
| 16 | + |
| 17 | + $posts = Collection::make([$postOne, $postTwo]); |
| 18 | + |
| 19 | + $this->assertEquals( |
| 20 | + "title,content\nHello world,Lorem ipsum dolor\nHola mundo,Lorem ipsum", |
| 21 | + $posts->toCsv() |
| 22 | + ); |
| 23 | + } |
| 24 | + |
| 25 | + public function test_collection_of_arrays_to_csv() |
| 26 | + { |
| 27 | + $collection = Collection::make([ |
| 28 | + ['hello' => 'world', 'foo' => 'bar'], |
| 29 | + ['hello' => 'test', 'foo' => 'yes'], |
| 30 | + ['another' => 'world', 'content' => 'Lorem ipsum dolor'], |
| 31 | + ]); |
| 32 | + |
| 33 | + $this->assertEquals( |
| 34 | + "hello,foo,another,content\nworld,bar,,\ntest,yes,,\n,,world,Lorem ipsum dolor", |
| 35 | + $collection->toCsv() |
| 36 | + ); |
| 37 | + } |
| 38 | + |
| 39 | + public function test_collection_of_users_to_string_using_template_join() |
| 40 | + { |
| 41 | + $userOne = new User([ 'name' => 'Ruben Robles', 'email' => '[email protected]']); |
| 42 | + $userTwo = new User([ 'name' => 'Taylor Otwell', 'email' => '[email protected]']); |
| 43 | + |
| 44 | + $users = Collection::make([$userOne, $userTwo]); |
| 45 | + |
| 46 | + $this->assertEquals( |
| 47 | + "Ruben Robles ([email protected]), Taylor Otwell ([email protected])", |
| 48 | + $users->templateJoin(':name (:email)', ', ') |
| 49 | + ); |
| 50 | + } |
| 51 | +} |
0 commit comments