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


The following commit(s) were added to refs/heads/master by this push:
     new d1ee44b  Camel-Infinispan: Added more testcontainers tests for 
Infinispan producer
d1ee44b is described below

commit d1ee44b6eb6e338a8efa06823e81dcb7a933c9d5
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue Oct 6 14:53:20 2020 +0200

    Camel-Infinispan: Added more testcontainers tests for Infinispan producer
---
 ...ispanTestContainersPutIfAbsentProducerTest.java | 93 ++++++++++++++++++++++
 1 file changed, 93 insertions(+)

diff --git 
a/components/camel-infinispan/src/test/java/org/apache/camel/component/infinispan/testcontainers/InfinispanTestContainersPutIfAbsentProducerTest.java
 
b/components/camel-infinispan/src/test/java/org/apache/camel/component/infinispan/testcontainers/InfinispanTestContainersPutIfAbsentProducerTest.java
new file mode 100644
index 0000000..72a3205
--- /dev/null
+++ 
b/components/camel-infinispan/src/test/java/org/apache/camel/component/infinispan/testcontainers/InfinispanTestContainersPutIfAbsentProducerTest.java
@@ -0,0 +1,93 @@
+/*
+ * 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.infinispan.testcontainers;
+
+import org.apache.camel.EndpointInject;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.infinispan.InfinispanConstants;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.infinispan.client.hotrod.RemoteCacheManager;
+import org.junit.Before;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class InfinispanTestContainersPutIfAbsentProducerTest extends 
InfinispanTestContainerSupport {
+
+    private static final String COMMAND_VALUE = "commandValue";
+    private static final String COMMAND_KEY = "commandKey1";
+    private RemoteCacheManager remoteCacheManager;
+
+    @EndpointInject("mock:result")
+    private MockEndpoint result;
+
+    @Before
+    public void doPreSetup() {
+        remoteCacheManager = createAndGetDefaultCache();
+    }
+
+    @Test
+    public void testUriCommandOption() throws Exception {
+        template.send("direct:put", new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+                exchange.getIn().setHeader(InfinispanConstants.KEY, 
COMMAND_KEY);
+                exchange.getIn().setHeader(InfinispanConstants.VALUE, 
COMMAND_VALUE);
+            }
+        });
+
+        template.send("direct:putIfAbsent", new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+                exchange.getIn().setHeader(InfinispanConstants.KEY, 
COMMAND_KEY);
+                exchange.getIn().setHeader(InfinispanConstants.VALUE, 
"CommandValue2");
+            }
+        });
+
+        template.send("direct:get", new Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+                exchange.getIn().setHeader(InfinispanConstants.KEY, 
COMMAND_KEY);
+            }
+        });
+
+        assertMockEndpointsSatisfied();
+        assertEquals(1, result.getExchanges().size());
+        assertEquals(COMMAND_VALUE, 
result.getExchanges().get(0).getMessage().getBody(String.class));
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() {
+                from("direct:put")
+                        .to("infinispan:mycache?hosts=" + getInfispanUrl()
+                            + 
"&operation=PUT&username=admin&password=password&secure=true&saslMechanism=RAW(DIGEST-MD5)&securityRealm=default&securityServerName=infinispan");
+                from("direct:putIfAbsent")
+                        .to("infinispan:mycache?hosts=" + getInfispanUrl()
+                            + 
"&operation=PUTIFABSENT&username=admin&password=password&secure=true&saslMechanism=RAW(DIGEST-MD5)&securityRealm=default&securityServerName=infinispan");
+                from("direct:get")
+                        .to("infinispan:mycache?hosts=" + getInfispanUrl()
+                            + 
"&operation=GET&username=admin&password=password&secure=true&saslMechanism=RAW(DIGEST-MD5)&securityRealm=default&securityServerName=infinispan")
+                        .to("mock:result");
+            }
+        };
+    }
+}

Reply via email to