You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/01/17 11:37:54 UTC

[camel] branch main updated (28d88e5 -> c77a079)

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

acosentino pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 28d88e5  CAMEL-17501: FailedToCreateRouteException should cut the route toString before sanitizing in case the uri is very long.
     new a5805b0  CAMEL-17485 - Camel-JSLT: Currently it could only load resources from classpath
     new c77a079  CAMEL-17485 - Camel-JSLT: Currently it could only load resources from classpath

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/java/org/apache/camel/component/jslt/JsltEndpoint.java   | 3 ++-
 .../component/jslt/{JsltBasicTest.java => JsltFileSourceTest.java}    | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)
 copy components/camel-jslt/src/test/java/org/apache/camel/component/jslt/{JsltBasicTest.java => JsltFileSourceTest.java} (95%)

[camel] 01/02: CAMEL-17485 - Camel-JSLT: Currently it could only load resources from classpath

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit a5805b0ff6b80014ca2521cbe0cb0e9ff28fa663
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jan 17 12:35:55 2022 +0100

    CAMEL-17485 - Camel-JSLT: Currently it could only load resources from classpath
---
 .../src/main/java/org/apache/camel/component/jslt/JsltEndpoint.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/camel-jslt/src/main/java/org/apache/camel/component/jslt/JsltEndpoint.java b/components/camel-jslt/src/main/java/org/apache/camel/component/jslt/JsltEndpoint.java
index 61f1b03..1c16e01 100644
--- a/components/camel-jslt/src/main/java/org/apache/camel/component/jslt/JsltEndpoint.java
+++ b/components/camel-jslt/src/main/java/org/apache/camel/component/jslt/JsltEndpoint.java
@@ -43,6 +43,7 @@ import org.apache.camel.component.ResourceEndpoint;
 import org.apache.camel.spi.UriEndpoint;
 import org.apache.camel.spi.UriParam;
 import org.apache.camel.support.ExchangeHelper;
+import org.apache.camel.support.ResourceHelper;
 import org.apache.camel.util.IOHelper;
 import org.apache.camel.util.ObjectHelper;
 
@@ -101,7 +102,7 @@ public class JsltEndpoint extends ResourceEndpoint {
                 if (jsltStringFromHeader != null) {
                     parser = new Parser(new StringReader(jsltStringFromHeader)).withSource("<inline>");
                 } else {
-                    stream = getCamelContext().getClassResolver().loadResourceAsStream(getResourceUri());
+                    stream = ResourceHelper.resolveMandatoryResourceAsInputStream(getCamelContext(), getResourceUri());
                     if (stream == null) {
                         throw new JsltException("Cannot load resource '" + getResourceUri() + "': not found");
                     }

[camel] 02/02: CAMEL-17485 - Camel-JSLT: Currently it could only load resources from classpath

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c77a079239d514f3ac2e74feba79c64a72cdba81
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jan 17 12:36:08 2022 +0100

    CAMEL-17485 - Camel-JSLT: Currently it could only load resources from classpath
---
 .../camel/component/jslt/JsltFileSourceTest.java   | 109 +++++++++++++++++++++
 1 file changed, 109 insertions(+)

diff --git a/components/camel-jslt/src/test/java/org/apache/camel/component/jslt/JsltFileSourceTest.java b/components/camel-jslt/src/test/java/org/apache/camel/component/jslt/JsltFileSourceTest.java
new file mode 100644
index 0000000..9a67145
--- /dev/null
+++ b/components/camel-jslt/src/test/java/org/apache/camel/component/jslt/JsltFileSourceTest.java
@@ -0,0 +1,109 @@
+/*
+ * 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.jslt;
+
+import java.util.Collections;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.support.ResourceHelper;
+import org.apache.camel.test.junit5.CamelTestSupport;
+import org.apache.camel.util.IOHelper;
+import org.junit.jupiter.api.Test;
+
+/**
+ * Unit test based on the JSLT demo playground default values.
+ */
+public class JsltFileSourceTest extends CamelTestSupport {
+
+    @Test
+    public void testJsltAsInputStream() throws Exception {
+        getMockEndpoint("mock:result").expectedMinimumMessageCount(1);
+        getMockEndpoint("mock:result").expectedBodiesReceived(
+                IOHelper.loadText(
+                        ResourceHelper.resolveMandatoryResourceAsInputStream(
+                                context, "org/apache/camel/component/jslt/demoPlayground/output.json"))
+                        .trim() // Remove the last newline added by IOHelper.loadText()
+        );
+
+        sendBody("direct://start",
+                ResourceHelper.resolveMandatoryResourceAsInputStream(
+                        context, "org/apache/camel/component/jslt/demoPlayground/input.json"));
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Test
+    public void testInvalidBody() throws Exception {
+        getMockEndpoint("mock:result").expectedMessageCount(0);
+
+        //type integer is not allowed
+        sendBody("direct://start", 4);
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Test
+    public void testJsltAsText() throws Exception {
+        getMockEndpoint("mock:result").expectedMinimumMessageCount(1);
+        getMockEndpoint("mock:result").expectedBodiesReceived(
+                IOHelper.loadText(
+                        ResourceHelper.resolveMandatoryResourceAsInputStream(
+                                context, "org/apache/camel/component/jslt/demoPlayground/output.json"))
+                        .trim() // Remove the last newline added by IOHelper.loadText()
+        );
+
+        sendBody("direct://start",
+                IOHelper.loadText(ResourceHelper.resolveMandatoryResourceAsInputStream(
+                        context, "org/apache/camel/component/jslt/demoPlayground/input.json")));
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Test
+    public void testJsltAsInputStreamPrettyPrint() throws Exception {
+        getMockEndpoint("mock:result").expectedMinimumMessageCount(1);
+        getMockEndpoint("mock:result").expectedBodiesReceived(
+                IOHelper.loadText(
+                        ResourceHelper.resolveMandatoryResourceAsInputStream(
+                                context, "org/apache/camel/component/jslt/demoPlayground/outputPrettyPrint.json"))
+                        .trim() // Remove the last newline added by IOHelper.loadText()
+        );
+
+        sendBody("direct://startPrettyPrint",
+                ResourceHelper.resolveMandatoryResourceAsInputStream(
+                        context, "org/apache/camel/component/jslt/demoPlayground/input.json"),
+                Collections.singletonMap(JsltConstants.HEADER_JSLT_RESOURCE_URI,
+                        "org/apache/camel/component/jslt/demoPlayground/transformation.json"));
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            public void configure() {
+                from("direct://start")
+                        .to("jslt:file:src/test/resources/org/apache/camel/component/jslt/demoPlayground/transformation.json")
+                        .to("mock:result");
+
+                from("direct://startPrettyPrint")
+                        .to("jslt:dummy?prettyPrint=true&allowTemplateFromHeader=true")
+                        .to("mock:result");
+            }
+        };
+    }
+}