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

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

commit 35f7b3ee16d62deb203625cbbfed7b081e21eeeb
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue May 29 11:54:33 2018 +0200

    CAMEL-12538 - Add another test for LoadCache too
---
 ...adCacheProducerMultiOperationSameCacheTest.java | 60 ++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git 
a/components/camel-caffeine/src/test/java/org/apache/camel/component/caffeine/loadcache/CaffeineLoadCacheProducerMultiOperationSameCacheTest.java
 
b/components/camel-caffeine/src/test/java/org/apache/camel/component/caffeine/loadcache/CaffeineLoadCacheProducerMultiOperationSameCacheTest.java
new file mode 100644
index 0000000..7fb52d3
--- /dev/null
+++ 
b/components/camel-caffeine/src/test/java/org/apache/camel/component/caffeine/loadcache/CaffeineLoadCacheProducerMultiOperationSameCacheTest.java
@@ -0,0 +1,60 @@
+/**
+ * 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.caffeine.loadcache;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.caffeine.CaffeineConstants;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.Test;
+
+public class CaffeineLoadCacheProducerMultiOperationSameCacheTest extends 
CaffeineLoadCacheTestSupport {
+
+    @Test
+    public void testSameCachePutAndGet() throws Exception {
+        final Map<String, String> map = new HashMap<>();
+        map.put("1", "1");
+
+        fluentTemplate().withBody("1").to("direct://start").send();
+
+        MockEndpoint mock1 = getMockEndpoint("mock:result");
+        mock1.expectedMinimumMessageCount(1);
+        mock1.expectedHeaderReceived(CaffeineConstants.ACTION_HAS_RESULT, 
true);
+        mock1.expectedHeaderReceived(CaffeineConstants.ACTION_SUCCEEDED, true);
+        assertEquals("1", mock1.getExchanges().get(0).getIn().getBody());
+
+        assertMockEndpointsSatisfied();
+    }
+
+
+    // ****************************
+    // Route
+    // ****************************
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            public void configure() {
+                
from("direct://start").toF("caffeine-loadcache://%s?cache=#cache&action=PUT&key=1",
 "test")
+                    
.toF("caffeine-loadcache://%s?cache=#cache&key=1&action=GET", 
"test").to("log:org.apache.camel.component.caffeine?level=INFO&showAll=true&multiline=true").log("Test!
 ${body}")
+                    .to("mock:result");
+            }
+        };
+    }
+}

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to