From 688e576f51f9a961a56023315824f18ee6da5aff Mon Sep 17 00:00:00 2001
From: Matroskeen <matroskeen@3426249.no-reply.drupal.org>
Date: Fri, 3 Jun 2022 17:12:10 +0000
Subject: [PATCH] Issue #3068584 by Matroskeen, jhchnc, gapple, azussman:
 item_selector failing to grab a inner level JSON array

---
 tests/data/item_selector.json                 | 20 ++++++++++--
 .../migrate_plus/data_parser/JsonTest.php     | 32 +++++++++++++++++++
 2 files changed, 50 insertions(+), 2 deletions(-)

diff --git a/tests/data/item_selector.json b/tests/data/item_selector.json
index 8985fb35..bc01b995 100644
--- a/tests/data/item_selector.json
+++ b/tests/data/item_selector.json
@@ -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": [],
diff --git a/tests/src/Kernel/Plugin/migrate_plus/data_parser/JsonTest.php b/tests/src/Kernel/Plugin/migrate_plus/data_parser/JsonTest.php
index 2be7f156..e3f10d67 100644
--- a/tests/src/Kernel/Plugin/migrate_plus/data_parser/JsonTest.php
+++ b/tests/src/Kernel/Plugin/migrate_plus/data_parser/JsonTest.php
@@ -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',
+          ],
+        ],
+      ],
     ];
   }
 
-- 
GitLab