Skip to content
Snippets Groups Projects
Commit 688e576f authored by Ivan Doroshenko's avatar Ivan Doroshenko
Browse files

Issue #3068584 by Matroskeen, jhchnc, gapple, azussman: item_selector failing...

Issue #3068584 by Matroskeen, jhchnc, gapple, azussman: item_selector failing to grab a inner level JSON array
parent 5b488d04
No related branches found
No related tags found
1 merge request!65Issue #3068584 by jhchnc, gapple, azussman: item_selector failing to grab a inner level JSON array.
......@@ -3,11 +3,27 @@
"data": [
{
"id": 1,
"title": "1 item"
"title": "1 item",
"items": [
{
"id": 1,
"title": "1.1 item"
},
{
"id": 2,
"title": "1.2 item"
}
]
},
{
"id": 2,
"title": "2 item"
"title": "2 item",
"items": [
{
"id": 3,
"title": "2.1 item"
}
]
}
],
"data_empty": [],
......
......@@ -213,6 +213,38 @@ final class JsonTest extends KernelTestBase {
],
],
],
'item_selector 2nd level' => [
'item_selector' => '/data/0/items',
'fields' => $fields,
'expected' => [
[
'id' => '1',
'title' => '1.1 item',
],
[
'id' => '2',
'title' => '1.2 item',
],
],
],
'item_selector 2nd level, depth selector' => [
'item_selector' => 3,
'fields' => $fields,
'expected' => [
[
'id' => '1',
'title' => '1.1 item',
],
[
'id' => '2',
'title' => '1.2 item',
],
[
'id' => '3',
'title' => '2.1 item',
],
],
],
];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment