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 502c38b0929 CAMEL-21724: Added unit test
502c38b0929 is described below
commit 502c38b09297d8c080b19f5c0384fa14ac20f671
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Feb 10 07:40:49 2025 +0100
CAMEL-21724: Added unit test
---
.../SftpKeyFileConsumePrivateKeyArrayIT.java | 63 ++++++++++++++++++++++
1 file changed, 63 insertions(+)
diff --git
a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/integration/SftpKeyFileConsumePrivateKeyArrayIT.java
b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/integration/SftpKeyFileConsumePrivateKeyArrayIT.java
new file mode 100644
index 00000000000..1c5b0f28413
--- /dev/null
+++
b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/integration/SftpKeyFileConsumePrivateKeyArrayIT.java
@@ -0,0 +1,63 @@
+/*
+ * 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.file.remote.sftp.integration;
+
+import java.nio.file.Files;
+import java.nio.file.Path;
+
+import org.apache.camel.Exchange;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.EnabledIf;
+
+@EnabledIf(value =
"org.apache.camel.test.infra.ftp.services.embedded.SftpUtil#hasRequiredAlgorithms('src/test/resources/hostkey.pem')")
+public class SftpKeyFileConsumePrivateKeyArrayIT extends SftpServerTestSupport
{
+
+ @Test
+ public void testSftpSimpleConsume() throws Exception {
+ String expected = "Hello World";
+
+ // create file using regular file
+ template.sendBodyAndHeader("file://" + service.getFtpRootDir(),
expected, Exchange.FILE_NAME, "hello.txt");
+
+ MockEndpoint mock = getMockEndpoint("mock:result");
+ mock.expectedMessageCount(1);
+ mock.expectedHeaderReceived(Exchange.FILE_NAME, "hello.txt");
+ mock.expectedBodiesReceived(expected);
+
+ context.getRouteController().startRoute("foo");
+
+ MockEndpoint.assertIsSatisfied(context);
+ }
+
+ @Override
+ protected RouteBuilder createRouteBuilder() {
+ return new RouteBuilder() {
+ @Override
+ public void configure() throws Exception {
+ byte[] arr =
Files.readAllBytes(Path.of("./src/test/resources/id_rsa"));
+ context.getRegistry().bind("myKey", arr);
+
+
from("sftp://localhost:{{ftp.server.port}}/{{ftp.root.dir}}?username=admin&knownHostsFile="
+ + service.getKnownHostsFile()
+ +
"&privateKey=#myKey&privateKeyPassphrase=secret&delay=10000&disconnect=true")
+ .routeId("foo").noAutoStartup().to("mock:result");
+ }
+ };
+ }
+}