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

davsclaus pushed a commit to branch camel-4.8.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 0216a74b23a28ba6661dcb01f5d210402b4f4fe9
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Wed Jun 18 22:16:07 2025 +0200

    Add variable example
---
 .../camel/jsonpath/JsonPathVariableTest.java       | 48 ++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git 
a/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathVariableTest.java
 
b/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathVariableTest.java
new file mode 100644
index 00000000000..aaa1fcf51d8
--- /dev/null
+++ 
b/components/camel-jsonpath/src/test/java/org/apache/camel/jsonpath/JsonPathVariableTest.java
@@ -0,0 +1,48 @@
+/*
+ * 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.component.mock.MockEndpoint;
+import org.apache.camel.test.junit5.CamelTestSupport;
+import org.junit.jupiter.api.Test;
+
+public class JsonPathVariableTest extends CamelTestSupport {
+
+    @Override
+    protected RouteBuilder createRouteBuilder() {
+        return new RouteBuilder() {
+            @Override
+            public void configure() {
+                from("direct:start")
+                        .setVariable("cars", constant("[\"Ford\", \"BMW\", 
\"Fiat\"]"))
+                        
.setBody(simple("${jsonpath(variable:cars,$.length())}"))
+                        .to("mock:result");
+            }
+        };
+    }
+
+    @Test
+    public void testVariable() throws Exception {
+        getMockEndpoint("mock:result").expectedBodiesReceived(3);
+
+        template.sendBody("direct:start", "{}");
+
+        MockEndpoint.assertIsSatisfied(context);
+    }
+
+}

Reply via email to