This is an automated email from the ASF dual-hosted git repository. davsclaus 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 b031a15 CAMEL-16242: Added unit test b031a15 is described below commit b031a15d28999dd9262135230c6db68c6cf08755 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Mar 6 18:50:35 2021 +0100 CAMEL-16242: Added unit test --- .../JsonPathTransformONielEscapedTest.java | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathTransformONielEscapedTest.java b/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathTransformONielEscapedTest.java new file mode 100644 index 0000000..4069420 --- /dev/null +++ b/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathTransformONielEscapedTest.java @@ -0,0 +1,54 @@ +/* + * 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.jsonpath; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Test; + +import java.io.File; +import java.util.List; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class JsonPathTransformONielEscapedTest extends CamelTestSupport { + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:start") + .transform().jsonpath("$.store.book[?(@.author == 'John O\\'Niel')].title") + .to("mock:authors"); + } + }; + } + + @Test + public void testAuthors() throws Exception { + getMockEndpoint("mock:authors").expectedMessageCount(1); + + template.sendBody("direct:start", new File("src/test/resources/books.json")); + + assertMockEndpointsSatisfied(); + + List<?> titles = getMockEndpoint("mock:authors").getReceivedExchanges().get(0).getIn().getBody(List.class); + assertEquals("Camel in Space", titles.get(0)); + } + +}