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 ab2422c Camel-caffeine idempotent repository: Added a little test with split and duplicates ab2422c is described below commit ab2422c0ae657d0d9259d98162894663900c102e Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Jan 26 08:06:04 2021 +0100 Camel-caffeine idempotent repository: Added a little test with split and duplicates --- .../CaffeineIdempotentRepositoryWithSplitTest.java | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/components/camel-caffeine/src/test/java/org/apache/camel/component/caffeine/processor/idempotent/CaffeineIdempotentRepositoryWithSplitTest.java b/components/camel-caffeine/src/test/java/org/apache/camel/component/caffeine/processor/idempotent/CaffeineIdempotentRepositoryWithSplitTest.java new file mode 100644 index 0000000..5e0b934 --- /dev/null +++ b/components/camel-caffeine/src/test/java/org/apache/camel/component/caffeine/processor/idempotent/CaffeineIdempotentRepositoryWithSplitTest.java @@ -0,0 +1,70 @@ +/* + * 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.processor.idempotent; + +import java.util.UUID; + +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Test; + +public class CaffeineIdempotentRepositoryWithSplitTest extends CamelTestSupport { + + private CaffeineIdempotentRepository repo; + + @Override + protected void doPreSetup() throws Exception { + super.doPreSetup(); + + repo = new CaffeineIdempotentRepository("test"); + } + + @Test + public void idempotentTest() throws Exception { + final int numberUniqueMessages = 100; + MockEndpoint resultEndpoint = getMockEndpoint("mock:result"); + resultEndpoint.expectedMessageCount(numberUniqueMessages); + + for (int i = 0; i < numberUniqueMessages; i++) { + template().sendBody("direct:idempotentRoute", String.valueOf(i)); + if (i > 0) { + template().sendBody("direct:idempotentRoute", String.valueOf(i - 1)); + } + } + resultEndpoint.assertIsSatisfied(); + } + + @Override + protected RoutesBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:idempotentRoute") + .idempotentConsumer(body(), + repo) + .to("mock:result") + .end(); + } + }; + } + + protected static String generateRandomString() { + return UUID.randomUUID().toString(); + } +}