Skip to content

Commit c17b41f

Browse files
committed
upgraded to league/fractal 0.19
1 parent 0841833 commit c17b41f

File tree

3 files changed

+92
-2
lines changed

3 files changed

+92
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"require": {
1313
"php": "^5.6|^7.0",
1414
"illuminate/support": "^5.0 || ^6.0",
15-
"league/fractal" :"0.18.*",
15+
"league/fractal" :"0.19.*",
1616
"doctrine/dbal": "^2.5"
1717
},
1818
"require-dev": {

tests/Stubs/UserTransformerStub.php

+38-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class UserTransformerStub extends TransformerAbstract
99
*
1010
* @var array
1111
*/
12-
protected $availableIncludes = ['orders'];
12+
protected $availableIncludes = ['orders', 'order_histories'];
1313

1414
/**
1515
* List of resources to automatically include.
@@ -52,4 +52,41 @@ public function includeOrders()
5252

5353
return $this->collection($orders, new OrderTransformerStub());
5454
}
55+
56+
public function includeOrderHistories($user, \League\Fractal\ParamBag $params)
57+
{
58+
$orders = new \Illuminate\Support\Collection([
59+
[
60+
'id' => 1,
61+
'item' => 'item 1',
62+
'qty' => 100,
63+
],
64+
[
65+
'id' => 2,
66+
'item' => 'item 2',
67+
'qty' => 200,
68+
],
69+
[
70+
'id' => 3,
71+
'item' => 'item 3',
72+
'qty' => 300,
73+
],
74+
[
75+
'id' => 4,
76+
'item' => 'item 4',
77+
'qty' => 400,
78+
],
79+
[
80+
'id' => 5,
81+
'item' => 'item 5',
82+
'qty' => 500,
83+
]
84+
]);
85+
86+
list($limit, $offset) = $params->get('limit');
87+
88+
$orders = $orders->slice($offset)->take($limit);
89+
90+
return $this->collection($orders, new OrderTransformerStub());
91+
}
5592
}

tests/TranformationTest.php

+53
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
use Illuminate\Support\Arr;
4+
35
/**
46
* Class TranformationTest.
57
*/
@@ -99,4 +101,55 @@ public function test_with_meta_data()
99101
],
100102
], $data);
101103
}
104+
105+
public function test_sub_relation_with_getting_only_one_record_from_sub_relation()
106+
{
107+
$service = $this->getService();
108+
109+
$data = $service->includes('order_histories:limit(1|0)')->collection($this->getTestUserData(),
110+
new UserTransformerStub())->getArray();
111+
112+
113+
$this->assertEquals(1, count(Arr::get($data, 'data.0.order_histories.data')));
114+
$this->assertEquals([
115+
'data' => [
116+
[
117+
'id' => 1,
118+
'name' => 'Foo',
119+
'order_histories' => [
120+
'data' => [
121+
[
122+
'id' => 1,
123+
'item' => 'item 1',
124+
'qty' => 100,
125+
]
126+
],
127+
],
128+
],
129+
[
130+
'id' => 2,
131+
'name' => 'Bar',
132+
'order_histories' => [
133+
'data' => [
134+
[
135+
'id' => 1,
136+
'item' => 'item 1',
137+
'qty' => 100,
138+
]
139+
],
140+
],
141+
],
142+
],
143+
], $data);
144+
}
145+
146+
public function test_sub_relation_with_getting_only_n_record_from_sub_relation()
147+
{
148+
$service = $this->getService();
149+
150+
$data = $service->includes('order_histories:limit(3|0)')->collection($this->getTestUserData(),
151+
new UserTransformerStub())->getArray();
152+
153+
$this->assertEquals(3, count(Arr::get($data, 'data.0.order_histories.data')));
154+
}
102155
}

0 commit comments

Comments
 (0)