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:15 UTC

(camel-quarkus) branch main updated (990ea5cef0 -> 9f55e0283e)

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

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


    from 990ea5cef0 Upgrade Debezium to 2.5.0.Final
     new ecb4ef1640 Disable JasyptSecureExtensionConfigTest.secureDirectComponentTimeout due to #5675
     new 9f55e0283e Add missing JasyptSecureExtensionConfigIT and disable due to #5675

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ...ternateConfigProfileIT.java => JasyptSecureExtensionConfigIT.java} | 4 ++--
 .../quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java  | 2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)
 copy integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/{JasyptAlternateConfigProfileIT.java => JasyptSecureExtensionConfigIT.java} (87%)


(camel-quarkus) 01/02: Disable JasyptSecureExtensionConfigTest.secureDirectComponentTimeout due to #5675

Posted by ja...@apache.org.
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 ecb4ef164020b40cbdb6e1ef61f68df9f33bb5ff
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Jan 25 08:24:10 2024 +0000

    Disable JasyptSecureExtensionConfigTest.secureDirectComponentTimeout due to #5675
---
 .../quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java b/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java
index 1ec1da5a3e..ae55cbea81 100644
--- a/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java
+++ b/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java
@@ -19,6 +19,7 @@ package org.apache.camel.quarkus.component.jasypt.it;
 import io.quarkus.test.junit.QuarkusTest;
 import io.quarkus.test.junit.TestProfile;
 import io.restassured.RestAssured;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.is;
@@ -35,6 +36,7 @@ class JasyptSecureExtensionConfigTest {
                 .body(is("camel"));
     }
 
+    @Disabled("https://github.com/apache/camel-quarkus/issues/5675")
     @Test
     void secureDirectComponentTimeout() throws InterruptedException {
         RestAssured.given()


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

Posted by ja...@apache.org.
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 {
+}