This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 145a20e Added unit test based on user forum issue 145a20e is described below commit 145a20e10bfce9b5d51303f628c308d3c4aea169 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Jun 8 08:30:28 2021 +0200 Added unit test based on user forum issue --- .../jsonpath/JsonPathExchangePropertyTest.java | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathExchangePropertyTest.java b/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathExchangePropertyTest.java new file mode 100644 index 0000000..82fbbac --- /dev/null +++ b/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathExchangePropertyTest.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 java.io.File; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; + +public class JsonPathExchangePropertyTest extends CamelTestSupport { + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:start") + .setProperty("foo").jsonpath("$.store.bicycle.color", String.class) + .log("${exchangeProperty.foo}") + .to("mock:color"); + } + }; + } + + @Test + public void testExchangeProperty() throws Exception { + getMockEndpoint("mock:color").expectedMessageCount(1); + + template.sendBody("direct:start", new File("src/test/resources/books.json")); + + assertMockEndpointsSatisfied(); + + Object foo = getMockEndpoint("mock:color").getReceivedExchanges().get(0).getProperty("foo"); + Assertions.assertTrue(foo instanceof String); + Assertions.assertEquals("red", foo); + } + +}