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 24b83a6f5a6f CAMEL-23863: Fix invalid YAML in rest-api jbang example 
and add example-loading test (#24340)
24b83a6f5a6f is described below

commit 24b83a6f5a6f1a6e2b31138aada3f20ab9933478
Author: Adriano Machado <[email protected]>
AuthorDate: Wed Jul 1 00:56:15 2026 -0400

    CAMEL-23863: Fix invalid YAML in rest-api jbang example and add 
example-loading test (#24340)
    
    * CAMEL-23863: Fix invalid YAML in rest-api jbang example and add 
example-loading test
    
    The bundled rest-api example placed a `steps:` key under `rest:` with no 
`to:`
    targets. That is not valid REST DSL: verbs (get/post/put/delete) must be 
direct
    children of `rest`, each carrying a `to:` target. As a result `camel run
    --example=rest-api` failed during route-model construction with "Error
    constructing YAML node id: rest".
    
    Correct the verbs to be direct children of `rest`, routing GET /api/hello 
and
    GET /api/hello/{name} to direct:hello / direct:hello-name (the two routes 
the
    example already defines).
    
    Add ExampleRoutesLoadTest, a parameterized test that loads every bundled 
example
    under camel-jbang-core through the routes loader, guarding all examples 
against
    this class of regression. A camel.example.Greeter test fixture mirrors the
    runtime-compiled bean so the routes/beans.yaml example can be parsed.
    
    Co-Authored-By: Claude Opus 4.8 <[email protected]>
    
    * CAMEL-23863: Strengthen ExampleRoutesLoadTest assertions and example 
discovery
    
    Address review feedback on the example-loading test:
    
    - Replace the `beans:` substring heuristic with a model-aware check that
      also counts REST definitions, route templates and registered beans, so
      a tolerated-but-empty example fails and a REST/template-only example
      does not spuriously fail.
    - Resolve the examples from the classpath instead of a CWD-relative path,
      so the test runs identically under Surefire and IDEs; use a relativized
      display name for each parameterized case.
    - Correct the javadoc: example beans are instantiated during pre-parse
      (only endpoint wiring is deferred to context start), and document the
      Greeter fixture sync requirement.
    
    Co-Authored-By: Claude Opus 4.8 <[email protected]>
    
    ---------
    
    Co-authored-by: Claude Opus 4.8 <[email protected]>
---
 .../examples/rest-api/rest-api.camel.yaml          |  12 ++-
 .../src/test/java/camel/example/Greeter.java       |  45 ++++++++
 .../jbang/core/common/ExampleRoutesLoadTest.java   | 114 +++++++++++++++++++++
 3 files changed, 166 insertions(+), 5 deletions(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/main/resources/examples/rest-api/rest-api.camel.yaml
 
b/dsl/camel-jbang/camel-jbang-core/src/main/resources/examples/rest-api/rest-api.camel.yaml
index d070e8549727..65232bd3ca63 100644
--- 
a/dsl/camel-jbang/camel-jbang-core/src/main/resources/examples/rest-api/rest-api.camel.yaml
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/main/resources/examples/rest-api/rest-api.camel.yaml
@@ -1,10 +1,12 @@
 - rest:
     path: /api
-    steps:
-      - get:
-          path: /hello
-      - get:
-          path: "/hello/{name}"
+    get:
+      - path: /hello
+        to:
+          uri: direct:hello
+      - path: "/hello/{name}"
+        to:
+          uri: direct:hello-name
 - route:
     id: hello
     from:
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/test/java/camel/example/Greeter.java 
b/dsl/camel-jbang/camel-jbang-core/src/test/java/camel/example/Greeter.java
new file mode 100644
index 000000000000..ae48efcb5fd7
--- /dev/null
+++ b/dsl/camel-jbang/camel-jbang-core/src/test/java/camel/example/Greeter.java
@@ -0,0 +1,45 @@
+/*
+ * 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 camel.example;
+
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+
+/**
+ * Test fixture mirroring {@code 
src/main/resources/examples/routes/Greeter.java}, which the CLI compiles at 
runtime. A
+ * compiled copy is needed on the test classpath so that {@code 
examples/routes/beans.yaml} can instantiate its
+ * {@code greeter} bean while {@link 
org.apache.camel.dsl.jbang.core.common.ExampleRoutesLoadTest} pre-parses it.
+ *
+ * Keep this in sync with the example source. Only the type and its {@code 
message} property are load-bearing for the
+ * test: a missing property fails bean binding loudly, whereas the {@link 
#process} behavior is never exercised (the
+ * test does not start the context), so behavioral drift would go unnoticed.
+ */
+public class Greeter implements Processor {
+
+    private String message;
+
+    public void setMessage(String message) {
+        this.message = message;
+    }
+
+    @Override
+    public void process(Exchange exchange) throws Exception {
+        String body = exchange.getIn().getBody(String.class);
+        exchange.getIn().setBody(message + " " + body);
+    }
+
+}
diff --git 
a/dsl/camel-jbang/camel-jbang-core/src/test/java/org/apache/camel/dsl/jbang/core/common/ExampleRoutesLoadTest.java
 
b/dsl/camel-jbang/camel-jbang-core/src/test/java/org/apache/camel/dsl/jbang/core/common/ExampleRoutesLoadTest.java
new file mode 100644
index 000000000000..abaa20f65836
--- /dev/null
+++ 
b/dsl/camel-jbang/camel-jbang-core/src/test/java/org/apache/camel/dsl/jbang/core/common/ExampleRoutesLoadTest.java
@@ -0,0 +1,114 @@
+/*
+ * 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.dsl.jbang.core.common;
+
+import java.io.InputStream;
+import java.net.URL;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.util.Properties;
+import java.util.stream.Stream;
+
+import org.apache.camel.impl.DefaultCamelContext;
+import org.apache.camel.model.Model;
+import org.apache.camel.spi.Resource;
+import org.apache.camel.support.PluginHelper;
+import org.apache.camel.support.ResourceHelper;
+import org.junit.jupiter.api.Named;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.MethodSource;
+
+import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+/**
+ * Verifies that every bundled example route resource loads and parses through 
the Camel routes loader without error.
+ *
+ * The example files ship as run-ready resources for {@code camel run 
--example=...}. A malformed file (for instance a
+ * misplaced YAML key that the DSL cannot construct) is only discovered when 
the loader builds the route model, so this
+ * test loads each one through the same loader the CLI uses. The context is 
intentionally not started, but note this is
+ * still a parse-time test: example beans are instantiated while the loader 
pre-parses (which is why the {@code Greeter}
+ * fixture and the example's {@code application.properties} are required), 
whereas endpoints and their producers and
+ * consumers are only created at start. Not starting therefore avoids opening 
external endpoints (JMS, Kafka, SQL, ...)
+ * but also means endpoint wiring is not exercised.
+ */
+class ExampleRoutesLoadTest {
+
+    static Stream<Arguments> exampleRouteFiles() throws Exception {
+        // resolve the examples from the classpath (target/classes/examples) 
so the test does not depend on the working
+        // directory being the module base, which differs between Maven 
Surefire and IDE run configurations
+        URL examplesUrl = 
ExampleRoutesLoadTest.class.getClassLoader().getResource("examples");
+        assertNotNull(examplesUrl, "examples resources not found on the test 
classpath");
+        Path examplesDir = Path.of(examplesUrl.toURI());
+
+        try (Stream<Path> files = Files.walk(examplesDir)) {
+            return files.filter(Files::isRegularFile)
+                    .filter(p -> {
+                        String name = p.getFileName().toString();
+                        return name.endsWith(".yaml") || name.endsWith(".yml");
+                    })
+                    .sorted()
+                    // use the path relative to the examples root as a stable, 
readable test display name
+                    .map(p -> 
Arguments.of(Named.of(examplesDir.relativize(p).toString(), p)))
+                    .toList()
+                    .stream();
+        }
+    }
+
+    @ParameterizedTest(name = "{0}")
+    @MethodSource("exampleRouteFiles")
+    void shouldLoadAndParseExample(Path file) throws Exception {
+        try (DefaultCamelContext context = new DefaultCamelContext()) {
+            // make the example's own application.properties available so that 
property placeholders bound eagerly while
+            // the loader pre-parses (e.g. bean properties in beans.yaml) can 
be resolved; this reproduces the effect of
+            // the CLI loading the example properties, through 
setInitialProperties rather than the CLI's
+            // properties-location mechanism
+            loadExampleProperties(context, file);
+
+            Resource resource = ResourceHelper.resolveResource(context, 
"file:" + file);
+
+            assertDoesNotThrow(() -> 
PluginHelper.getRoutesLoader(context).loadRoutes(resource),
+                    "Failed to load and parse example: " + file);
+
+            // a parsed example must contribute something the loader 
understood: a route, a REST definition, a route
+            // template or a bean. An otherwise-empty model means the loader 
silently accepted content it did not
+            // understand, so inspect the parsed model rather than the raw 
text (which would pass on a tolerated-but-
+            // empty file that merely contains a recognised keyword)
+            Model model = 
context.getCamelContextExtension().getContextPlugin(Model.class);
+            int modelElements = model.getRouteDefinitions().size()
+                                + model.getRestDefinitions().size()
+                                + model.getRouteTemplateDefinitions().size()
+                                + model.getCustomBeans().size();
+            assertTrue(modelElements > 0,
+                    "Example parsed to an empty model (no routes, rests, 
templates or beans): " + file);
+        }
+    }
+
+    private static void loadExampleProperties(DefaultCamelContext context, 
Path file) throws Exception {
+        Path properties = file.resolveSibling("application.properties");
+        if (!Files.exists(properties)) {
+            return;
+        }
+        Properties props = new Properties();
+        try (InputStream is = Files.newInputStream(properties)) {
+            props.load(is);
+        }
+        context.getPropertiesComponent().setInitialProperties(props);
+    }
+}

Reply via email to