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

(camel-quarkus) 02/02: Add missing JasyptSecureExtensionConfigIT and disable due to #5675

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

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

commit 9f55e0283eb3aaf783a083b444033fd2b1858893
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Jan 25 08:24:40 2024 +0000

    Add missing JasyptSecureExtensionConfigIT and disable due to #5675
---
 .../jasypt/it/JasyptSecureExtensionConfigIT.java   | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigIT.java b/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigIT.java
new file mode 100644
index 0000000000..d0094d1d55
--- /dev/null
+++ b/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigIT.java
@@ -0,0 +1,25 @@
+/*
+ * 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.quarkus.component.jasypt.it;
+
+import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
+
+@Disabled("https://github.com/apache/camel-quarkus/issues/5675")
+@QuarkusIntegrationTest
+class JasyptSecureExtensionConfigIT extends JasyptSecureExtensionConfigTest {
+}