From 8f4019ecd262c6c7776bf4844887c09a3394b903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Bl=C3=A4sing?= Date: Sat, 27 Nov 2021 18:13:35 +0100 Subject: [PATCH] Deactivate broken xmlretriever test (client cert expired and a new one is not yet issued) --- .../xml/retriever/impl/SecureURLResourceRetrieverTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ide/xml.retriever/test/unit/src/org/netbeans/modules/xml/retriever/impl/SecureURLResourceRetrieverTest.java b/ide/xml.retriever/test/unit/src/org/netbeans/modules/xml/retriever/impl/SecureURLResourceRetrieverTest.java index c774386f9b77..cac3f8f99aa1 100644 --- a/ide/xml.retriever/test/unit/src/org/netbeans/modules/xml/retriever/impl/SecureURLResourceRetrieverTest.java +++ b/ide/xml.retriever/test/unit/src/org/netbeans/modules/xml/retriever/impl/SecureURLResourceRetrieverTest.java @@ -22,6 +22,7 @@ import static junit.framework.TestCase.assertFalse; import static junit.framework.TestCase.assertTrue; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.netbeans.junit.MockServices; import org.openide.util.Lookup; @@ -77,6 +78,7 @@ public void shouldAskForSelfSignedCertificate() throws Exception { } @Test + @Ignore("Client certificate expired and administrator of badssl.com has not issued updated certificates") public void shouldUseKeyStoreFromSystemProperties() throws Exception { System.setProperty("javax.net.debug", "ssl,keystore"); System.setProperty("javax.net.ssl.keyStore", SecureURLResourceRetrieverTest.class.getResource("badssl.com-client.p12").getPath());