You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2019/08/11 13:41:39 UTC

[camel] 03/03: CAMEL-13786: Integration test for JMS 2.0 deliveryDelay

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

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

commit 4c2f7fb0131d636b8a2182aeda6f3359a8a7a2f8
Author: Jan Bednář <ma...@janbednar.eu>
AuthorDate: Sun Aug 11 13:16:18 2019 +0200

    CAMEL-13786: Integration test for JMS 2.0 deliveryDelay
---
 .../camel/itest/jms2/Jms2DeliveryDelayTest.java    | 72 ++++++++++++++++++++++
 1 file changed, 72 insertions(+)

diff --git a/tests/camel-itest-jms2/src/test/java/org/apache/camel/itest/jms2/Jms2DeliveryDelayTest.java b/tests/camel-itest-jms2/src/test/java/org/apache/camel/itest/jms2/Jms2DeliveryDelayTest.java
new file mode 100644
index 0000000..0436b24
--- /dev/null
+++ b/tests/camel-itest-jms2/src/test/java/org/apache/camel/itest/jms2/Jms2DeliveryDelayTest.java
@@ -0,0 +1,72 @@
+/*
+ * 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.itest.jms2;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.Assert;
+import org.junit.Test;
+
+public class Jms2DeliveryDelayTest extends BaseJms2TestSupport {
+
+    @Test
+    public void testInOnlyWithDelay() throws Exception {
+        MockEndpoint mock = getMockEndpoint("mock:result");
+        mock.expectedBodiesReceived("Hello World");
+
+        long start = System.currentTimeMillis();
+        template.sendBody("jms:topic:foo?deliveryDelay=1000", "Hello World");
+        assertMockEndpointsSatisfied();
+        Assert.assertTrue("Should take at least 1000 millis", System.currentTimeMillis() - start >= 1000);
+    }
+
+    @Test
+    public void testInOnlyWithoutDelay() throws Exception {
+        MockEndpoint mock = getMockEndpoint("mock:result");
+        mock.expectedBodiesReceived("Hello World");
+
+        long start = System.currentTimeMillis();
+        template.sendBody("jms:topic:foo", "Hello World");
+        assertMockEndpointsSatisfied();
+        Assert.assertTrue("Should take less than 1000 millis", System.currentTimeMillis() - start < 1000);
+    }
+
+    @Test
+    public void testInOutWithDelay() throws Exception {
+        long start = System.currentTimeMillis();
+        template.requestBody("jms:topic:foo?deliveryDelay=1000", "Hello World");
+        Assert.assertTrue("Should take at least 1000 millis", System.currentTimeMillis() - start >= 1000);
+    }
+
+    @Test
+    public void testInOutWithoutDelay() throws Exception {
+        long start = System.currentTimeMillis();
+        template.requestBody("jms:topic:foo", "Hello World");
+        Assert.assertTrue("Should take less than 1000 millis", System.currentTimeMillis() - start < 1000);
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("jms:topic:foo")
+                    .to("mock:result");
+            }
+        };
+    }
+}