You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/10/18 14:43:46 UTC

[camel] branch main updated: CAMEL-20000: camel-flatpack DataSetList iterator iterates only once. Thanks to Zeljko Tesic for test case.

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 6a098df5bb1 CAMEL-20000: camel-flatpack DataSetList iterator iterates only once. Thanks to Zeljko Tesic for test case.
6a098df5bb1 is described below

commit 6a098df5bb12d7395faa3bbda13653648eed3782
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Oct 18 16:43:34 2023 +0200

    CAMEL-20000: camel-flatpack DataSetList iterator iterates only once. Thanks to Zeljko Tesic for test case.
---
 .../camel/component/flatpack/DataSetList.java      |  2 +
 .../flatpack/FlatpackDataSetListIteratorTest.java  | 69 ++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/components/camel-flatpack/src/main/java/org/apache/camel/component/flatpack/DataSetList.java b/components/camel-flatpack/src/main/java/org/apache/camel/component/flatpack/DataSetList.java
index b78d484f946..ec9b632b17a 100644
--- a/components/camel-flatpack/src/main/java/org/apache/camel/component/flatpack/DataSetList.java
+++ b/components/camel-flatpack/src/main/java/org/apache/camel/component/flatpack/DataSetList.java
@@ -63,6 +63,8 @@ public class DataSetList extends AbstractList<Map<String, Object>> implements Da
 
     @Override
     public Iterator<Map<String, Object>> iterator() {
+        dataSet.goTop();
+
         return new Iterator<Map<String, Object>>() {
             Optional<Record> nextData = Optional.empty();
 
diff --git a/components/camel-flatpack/src/test/java/org/apache/camel/component/flatpack/FlatpackDataSetListIteratorTest.java b/components/camel-flatpack/src/test/java/org/apache/camel/component/flatpack/FlatpackDataSetListIteratorTest.java
new file mode 100644
index 00000000000..1327216bbbd
--- /dev/null
+++ b/components/camel-flatpack/src/test/java/org/apache/camel/component/flatpack/FlatpackDataSetListIteratorTest.java
@@ -0,0 +1,69 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.flatpack;
+
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+import org.apache.camel.EndpointInject;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.dataformat.flatpack.FlatpackDataFormat;
+import org.apache.camel.test.junit5.CamelTestSupport;
+import org.junit.jupiter.api.Test;
+
+public class FlatpackDataSetListIteratorTest extends CamelTestSupport {
+
+    private static final String DIRECT_URI = "direct:flatpach-test";
+
+    @EndpointInject("mock:each-item")
+    private MockEndpoint eachItemEndpoint;
+
+    @Test
+    void sendTESTwithErrors() throws Exception {
+        String header = "A,B,C";
+        String record1 = "1,2,3";
+        String record2 = "7,8,9";
+        Object body = Stream.of(header, record1, record2).collect(Collectors.joining("\r\n"));
+
+        eachItemEndpoint.expectedMessageCount(2);
+
+        template.sendBody(DIRECT_URI, body);
+
+        eachItemEndpoint.assertIsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        FlatpackDataFormat format = new FlatpackDataFormat();
+        format.setDelimiter(',');
+        format.setTextQualifier('"');
+
+        return new RouteBuilder() {
+            @Override
+            public void configure() {
+                from(DIRECT_URI)
+                    .unmarshal(format)
+                    .log("Processing ${body}")
+                    .split().body()
+                        .to("mock:each-item")
+                    .end();
+            }
+        };
+    }
+
+}