You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/07/19 11:14:24 UTC

[camel] branch main updated: camel-xmsecurity - Skip tests that cannot run well on JDK11+

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 fff9dfd98fa camel-xmsecurity - Skip tests that cannot run well on JDK11+
fff9dfd98fa is described below

commit fff9dfd98fabe2dd77647bbef8b5f3df8912e470
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Jul 19 13:14:13 2023 +0200

    camel-xmsecurity - Skip tests that cannot run well on JDK11+
---
 .../java/org/apache/camel/component/xmlsecurity/ECDSASignatureTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/components/camel-xmlsecurity/src/test/java/org/apache/camel/component/xmlsecurity/ECDSASignatureTest.java b/components/camel-xmlsecurity/src/test/java/org/apache/camel/component/xmlsecurity/ECDSASignatureTest.java
index 4a1c527426a..7e1eaeeaa4a 100644
--- a/components/camel-xmlsecurity/src/test/java/org/apache/camel/component/xmlsecurity/ECDSASignatureTest.java
+++ b/components/camel-xmlsecurity/src/test/java/org/apache/camel/component/xmlsecurity/ECDSASignatureTest.java
@@ -41,6 +41,7 @@ import org.apache.camel.support.SimpleRegistry;
 import org.apache.camel.test.junit5.CamelTestSupport;
 import org.apache.camel.test.junit5.TestSupport;
 import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -51,6 +52,7 @@ import static org.junit.jupiter.api.Assumptions.assumeTrue;
 /**
  * Test for the ECDSA algorithms
  */
+@Disabled("Cannot run on newer JDKs like JDK11+ and org.apache.santuario:xmlsec:2.2.4 onwards (see also https://issues.apache.org/jira/browse/SANTUARIO-581)")
 public class ECDSASignatureTest extends CamelTestSupport {
 
     private static String payload;