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

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

commit 66b2d91856c0b19cb16dc620cba8d77c4462a726
Author: iliya <iliya...@gmail.com>
AuthorDate: Wed Oct 13 13:22:01 2021 +0300

    CAMEL-17073: Invalid simple expression cache behavior
---
 .../language/simple/SimpleCacheExpressionTest.java | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git 
a/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleCacheExpressionTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleCacheExpressionTest.java
new file mode 100644
index 0000000..898aab9
--- /dev/null
+++ 
b/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleCacheExpressionTest.java
@@ -0,0 +1,39 @@
+/*
+ * 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.language.simple;
+
+import org.apache.camel.LanguageTestSupport;
+import org.junit.jupiter.api.Test;
+
+/**
+ *
+ */
+public class SimpleCacheExpressionTest  extends LanguageTestSupport {
+
+    @Override
+    protected String getLanguageName() {
+        return "simple";
+    }
+
+    @Test
+    public void testCachingExpression() throws Exception {
+        exchange.getIn().setHeader("foo", 123);
+
+        assertExpression(exchange, "header.foo", "header.foo");
+        assertExpression(exchange, "${header.foo}", 123);
+    }
+}

Reply via email to