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 2021/11/04 05:58:56 UTC

[camel] branch main updated: CAMEL-17162: Added unit test. Thanks to Jeremy Ross for the test.

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 0f7e54d  CAMEL-17162: Added unit test. Thanks to Jeremy Ross for the test.
0f7e54d is described below

commit 0f7e54de7f80bc68803dcfda82326e4da9e0d3bc
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Nov 4 06:57:16 2021 +0100

    CAMEL-17162: Added unit test. Thanks to Jeremy Ross for the test.
---
 .../SchedulerMulticastParallelGreedyTest.java      | 53 ++++++++++++++++++++++
 1 file changed, 53 insertions(+)

diff --git a/core/camel-core/src/test/java/org/apache/camel/component/scheduler/SchedulerMulticastParallelGreedyTest.java b/core/camel-core/src/test/java/org/apache/camel/component/scheduler/SchedulerMulticastParallelGreedyTest.java
new file mode 100644
index 0000000..e874f4c
--- /dev/null
+++ b/core/camel-core/src/test/java/org/apache/camel/component/scheduler/SchedulerMulticastParallelGreedyTest.java
@@ -0,0 +1,53 @@
+/*
+ * 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.scheduler;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.Exchange;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.jupiter.api.Test;
+
+public class SchedulerMulticastParallelGreedyTest extends ContextTestSupport {
+
+    @Test
+    public void testGreedy() throws Exception {
+        MockEndpoint mock = getMockEndpoint("mock:parentComplete");
+        mock.expectedMessageCount(1);
+
+        // give it time to see if too many messages are sent if greedy kicks-in
+        Thread.sleep(50);
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("scheduler:testBug?initialDelay=1&useFixedDelay=true&delay=20000&greedy=true&synchronous=true")
+                    .multicast().parallelProcessing()
+                        .log("test")
+                    .end()
+                    // this should result in the scheduler waiting its delay period before sending another exchange
+                    .setProperty(Exchange.SCHEDULER_POLLED_MESSAGES, constant(false))
+                    .to("mock:parentComplete");
+            }
+        };
+    }
+}