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


The following commit(s) were added to refs/heads/main by this push:
     new d635a8250dc CAMEL-20367: Adds plugin management tests (#15469)
d635a8250dc is described below

commit d635a8250dc7e683f01a333ecfd7c82d5e9fa243
Author: Jakub Vrubel <[email protected]>
AuthorDate: Mon Sep 9 07:10:36 2024 +0200

    CAMEL-20367: Adds plugin management tests (#15469)
---
 .../camel/dsl/jbang/it/ManagePluginsITCase.java    | 32 ++++++++++++++++++++++
 .../dsl/jbang/it/support/JBangTestSupport.java     | 12 ++++++++
 2 files changed, 44 insertions(+)

diff --git 
a/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/ManagePluginsITCase.java
 
b/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/ManagePluginsITCase.java
new file mode 100644
index 00000000000..21ef2a8769d
--- /dev/null
+++ 
b/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/ManagePluginsITCase.java
@@ -0,0 +1,32 @@
+/*
+ * 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.it;
+
+import org.apache.camel.dsl.jbang.it.support.JBangTestSupport;
+import org.junit.jupiter.api.Test;
+
+public class ManagePluginsITCase extends JBangTestSupport {
+
+    @Test
+    public void testPluginInstallation() throws InterruptedException {
+        checkCommandOutputs("plugin get --all", "Supported plugins:");
+        execute("plugin add generate");
+        checkCommandOutputs("plugin get", "generate");
+        checkCommandOutputs("generate -h", "Generate REST DSL source code from 
OpenApi specification");
+        checkCommandOutputs("plugin delete generate", "Plugin generate 
removed");
+    }
+}
diff --git 
a/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/support/JBangTestSupport.java
 
b/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/support/JBangTestSupport.java
index a8e9f435327..cbdbaa64bad 100644
--- 
a/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/support/JBangTestSupport.java
+++ 
b/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/support/JBangTestSupport.java
@@ -147,6 +147,18 @@ public abstract class JBangTestSupport {
                 .isReadable();
     }
 
+    protected void checkCommandOutputs(String command, String contains) {
+        Assertions.assertThat(execute(command))
+                .as("command camel" + command + "should output" + contains)
+                .contains(contains);
+    }
+
+    protected void checkCommandDoesNotOutput(String command, String contains) {
+        Assertions.assertThat(execute(command))
+                .as("command camel" + command + "should not output" + contains)
+                .doesNotContain(contains);
+    }
+
     protected void assertFileInDataFolderDoesNotExist(String file) {
         final Path toVerify = Path.of(containerDataFolder, file);
         Assertions.assertThat(toVerify)

Reply via email to