[java-shib-shared] branch main updated: Remove RepositorySupport test as it no longer functions.

Codeberg noreply at shibboleth.net
Tue Jul 14 13:19:37 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch main
in repository java-shib-shared.

View the commit online:
https://codeberg.org/Shibboleth/java-shib-shared/commit/db840debd52e3769f84c2c1979215ec3f7005cfc

The following commit(s) were added to refs/heads/main by this push:
     new db840deb Remove RepositorySupport test as it no longer functions.
db840deb is described below

commit db840debd52e3769f84c2c1979215ec3f7005cfc
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Tue Jul 14 09:19:23 2026 -0400

    Remove RepositorySupport test as it no longer functions.
---
 .../shared/testing/RepositorySupportTest.java      | 32 ----------------------
 1 file changed, 32 deletions(-)

diff --git a/shib-testing/src/test/java/net/shibboleth/shared/testing/RepositorySupportTest.java b/shib-testing/src/test/java/net/shibboleth/shared/testing/RepositorySupportTest.java
deleted file mode 100644
index ebd1ccf4..00000000
--- a/shib-testing/src/test/java/net/shibboleth/shared/testing/RepositorySupportTest.java
+++ /dev/null
@@ -1,32 +0,0 @@
-
-package net.shibboleth.shared.testing;
-
-import java.io.IOException;
-import java.net.URL;
-
-import org.testng.Assert;
-import org.testng.annotations.Test;
-
- at SuppressWarnings("javadoc")
-public class RepositorySupportTest {
-
-    @Test
-    public void testBuildHTTPResourceURLTest() throws IOException {
-        final String s = RepositorySupport.buildHTTPResourceURL("java-support",
-                "src/test/java/net/shibboleth/utilities/java/support/test/repository/RepositorySupport.java", false);
-        final URL u = new URL(s);
-        Assert.assertNotNull(u);
-        Assert.assertNotNull(u.getContent());
-    }
-
-    @Test
-    public void testBuildHTTPSResourceURLTest() throws IOException {
-        final String s = RepositorySupport.buildHTTPSResourceURL("java-support",
-                "src/test/java/net/shibboleth/utilities/java/support/test/repository/RepositorySupport.java");
-        final URL u = new URL(s);
-        Assert.assertNotNull(u);
-        // Can't dereference, as test.shibboleth.net has a non-commercial certificate
-        // Real uses need to take this into account.
-        // Assert.assertNotNull(u.getContent());
-    }
-}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list