This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
The following commit(s) were added to refs/heads/main by this push:
new b81d8c4b4 fix(#707): register the simple-no-file language in the
camel-core-languages bundle (#708)
b81d8c4b4 is described below
commit b81d8c4b4fd430a078489d88cd8a3bf9a875e7dc
Author: Robin Vishwakarma <[email protected]>
AuthorDate: Sun Sep 6 19:27:26 2026 +0300
fix(#707): register the simple-no-file language in the camel-core-languages
bundle (#708)
* Added simple-no-file support
* fix(#707): reduce the fix to the service entry and add a regression test
The class the service entry points at is already shipped, unchanged, in the
shaded camel-core-languages bundle, and Activator.BaseResolver loads it by
name from that file -- the @Language annotation is never read at runtime.
The
local copy of SimpleNoFileLanguage, the camel-api and camel-support
dependencies it needed to compile, and the Export-Package narrowing those
dependencies forced are therefore all unnecessary:
- The local copy shadowed the upstream class in the shaded jar, so a future
Camel change to SimpleNoFileLanguage would have been silently overridden
with no build failure.
- camel-api/camel-support were compile scope and, since the root pom sets
createDependencyReducedPom=false, would have leaked into the published pom
of the bundle and onto the classpath of every consumer.
- Restoring the conventional org.apache.camel* export with those
dependencies
present makes bnd inline all of camel-api and camel-support into the
bundle
(412 KB -> 1.9 MB) and duplicate-export packages that core/camel-api and
core/camel-support already provide.
Replace the shade IncludeResourceTransformer with a <resource> entry: the
module's <resources> block overrides Maven's default src/main/resources,
which
is why the file did not reach the bundle on its own. The transformer would
also have hard-failed the build with "duplicate entry" if Apache Camel ever
ships its own simple-no-file service file, whereas shade dedupes jar entries
silently.
Add the ASF licence header the file was missing; apache-rat rejected it,
which
breaks the release profile. java.util.Properties, used to parse the file,
ignores the # comments.
The resulting bundle is identical to the one built from main except for the
added service entry, with an unchanged Export-Package.
Add a Pax Exam regression test in tests/features/camel-core covering a
pollEnrich with a dynamic file endpoint, the scenario reported in the issue.
---------
Co-authored-by: JB Onofré <[email protected]>
---
core/camel-core-languages/pom.xml | 6 ++
.../org/apache/camel/language/simple-no-file | 24 ++++++++
.../camel/test/CamelPollEnrichRouteSupplier.java | 71 ++++++++++++++++++++++
.../apache/karaf/camel/itest/CamelCoreITest.java | 24 ++++++++
4 files changed, 125 insertions(+)
diff --git a/core/camel-core-languages/pom.xml
b/core/camel-core-languages/pom.xml
index 52de2dc72..4de3c9df4 100644
--- a/core/camel-core-languages/pom.xml
+++ b/core/camel-core-languages/pom.xml
@@ -61,6 +61,12 @@
<directory>../../src/main/resources</directory>
<filtering>false</filtering>
</resource>
+ <!-- Declaring the module's own resources explicitly: the entry
above replaces
+ Maven's default resource directory, which would otherwise be
inherited. -->
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>false</filtering>
+ </resource>
</resources>
<plugins>
<plugin>
diff --git
a/core/camel-core-languages/src/main/resources/META-INF/services/org/apache/camel/language/simple-no-file
b/core/camel-core-languages/src/main/resources/META-INF/services/org/apache/camel/language/simple-no-file
new file mode 100644
index 000000000..faf3f1aed
--- /dev/null
+++
b/core/camel-core-languages/src/main/resources/META-INF/services/org/apache/camel/language/simple-no-file
@@ -0,0 +1,24 @@
+#
+# 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.
+#
+# Camel-karaf specific: Apache Camel intentionally ships no service file for
this
+# language, because DefaultLanguageResolver resolves the name through a
hardcoded
+# branch instead. OsgiLanguageResolver has no such branch and looks the
language up
+# in the OSGi service registry, so without this entry "simple-no-file" cannot
be
+# resolved in Karaf and poll/pollEnrich with a simple expression fails with
+# NoSuchLanguageException. Keep this file across Camel upgrades. See issue
#707.
+#
+class=org.apache.camel.language.simple.SimpleNoFileLanguage
diff --git
a/tests/features/camel-core/src/main/java/org/apache/karaf/camel/test/CamelPollEnrichRouteSupplier.java
b/tests/features/camel-core/src/main/java/org/apache/karaf/camel/test/CamelPollEnrichRouteSupplier.java
new file mode 100644
index 000000000..e092e3f10
--- /dev/null
+++
b/tests/features/camel-core/src/main/java/org/apache/karaf/camel/test/CamelPollEnrichRouteSupplier.java
@@ -0,0 +1,71 @@
+/*
+ * 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.karaf.camel.test;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.model.RouteDefinition;
+import
org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteSupplier;
+import org.apache.karaf.camel.itests.CamelRouteSupplier;
+import org.osgi.service.component.annotations.Component;
+
+/**
+ * Covers the resolution of the internal {@code simple-no-file} language in
OSGi.
+ * <p>
+ * When a {@code pollEnrich} is given a {@code simple} expression, {@code
PollEnrichReifier} rewrites it to the
+ * {@code simple-no-file} language, so starting this route makes the Camel
context resolve that name. Apache Camel
+ * ships no service file for it — {@code DefaultLanguageResolver} resolves it
through a hardcoded branch — whereas
+ * camel-karaf's {@code OsgiLanguageResolver} goes through the OSGi service
registry. Without the service file in
+ * the camel-core-languages bundle, this route fails to start with a {@code
NoSuchLanguageException}.
+ *
+ * @see <a href="https://github.com/apache/camel-karaf/issues/707">issue
#707</a>
+ */
+@Component(
+ name = "karaf-camel-poll-enrich-test",
+ immediate = true,
+ service = CamelRouteSupplier.class
+)
+public class CamelPollEnrichRouteSupplier extends
AbstractCamelSingleFeatureResultMockBasedRouteSupplier {
+
+ private static final String FILE_NAME_VARIABLE = "sourceFileName";
+ private static final String SOURCE_FILE_NAME = "poll-enrich-source.txt";
+ private static final long POLL_TIMEOUT_MS = 10000L;
+
+ public String getBaseDir() {
+ return
"%s/poll-enrich".formatted(System.getProperty("project.target"));
+ }
+
+ @Override
+ protected boolean consumerEnabled() {
+ // Everything happens in the producer route: it seeds the file, then
polls it back.
+ return false;
+ }
+
+ @Override
+ protected void configureProducer(RouteBuilder builder, RouteDefinition
producerRoute) {
+ String directory = getBaseDir();
+ producerRoute
+ .setVariable(FILE_NAME_VARIABLE,
builder.constant(SOURCE_FILE_NAME))
+ .setBody(builder.constant("OK"))
+ .toF("file:%s?fileName=${variable.%s}", directory,
FILE_NAME_VARIABLE)
+ // Clear the body so that only a successful enrichment can
restore it.
+ .setBody(builder.constant(""))
+ .pollEnrich()
+
.simple("file:%s?fileName=${variable.%s}&initialDelay=0&delay=100"
+ .formatted(directory, FILE_NAME_VARIABLE))
+ .timeout(POLL_TIMEOUT_MS)
+ .toF("mock:%s", getResultMockName());
+ }
+}
diff --git
a/tests/features/camel-core/src/test/java/org/apache/karaf/camel/itest/CamelCoreITest.java
b/tests/features/camel-core/src/test/java/org/apache/karaf/camel/itest/CamelCoreITest.java
index ae16cf8ab..8c25683af 100644
---
a/tests/features/camel-core/src/test/java/org/apache/karaf/camel/itest/CamelCoreITest.java
+++
b/tests/features/camel-core/src/test/java/org/apache/karaf/camel/itest/CamelCoreITest.java
@@ -14,6 +14,7 @@
package org.apache.karaf.camel.itest;
import java.util.List;
+import java.util.concurrent.TimeUnit;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.karaf.camel.itests.AbstractCamelRouteWithBundleITest;
@@ -63,6 +64,11 @@ public class CamelCoreITest extends
AbstractCamelRouteWithBundleITest {
new CamelBeanITest(this).testRoutes();
}
+ @Test
+ public void testCamelPollEnrich() throws Exception {
+ new CamelPollEnrichITest(this).testRoutes();
+ }
+
public static class CamelFileITest extends
AbstractCamelSingleFeatureResultFileBasedRoute {
public CamelFileITest(CamelContextProvider provider, String baseDir) {
@@ -110,4 +116,22 @@ public class CamelCoreITest extends
AbstractCamelRouteWithBundleITest {
mock.expectedBodiesReceived("OK");
}
}
+
+ /**
+ * Asserts that a {@code pollEnrich} driven by a {@code simple} expression
starts and enriches, which requires the
+ * internal {@code simple-no-file} language to be resolvable in OSGi. See
issue #707.
+ */
+ public static class CamelPollEnrichITest extends
AbstractCamelSingleFeatureResultMockBasedRoute {
+
+ public CamelPollEnrichITest(CamelContextProvider provider) {
+ super(provider);
+ }
+
+ @Override
+ public void configureMock(MockEndpoint mock) {
+ // The route seeds a file and polls it back, so allow more
headroom than the 10s default.
+ mock.setResultWaitTime(TimeUnit.SECONDS.toMillis(30));
+ mock.expectedBodiesReceived("OK");
+ }
+ }
}
\ No newline at end of file