aboutsummaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java
diff options
context:
space:
mode:
authorSven Gothel <sgothel@jausoft.com>2023-08-05 03:15:09 +0200
committerSven Gothel <sgothel@jausoft.com>2023-08-05 03:15:09 +0200
commit177ee444d1b86e6412f636d5f4e8f0695d418246 (patch)
treeb2f20f86bd506521db868f6a11096473f1dcba07 /src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java
parentf0da1ec6f5ac68de4c1ede1fd54a71b656fe5d75 (diff)
Cleanup unit test class names: Try to start w/ 'Test', remove intermediate 'Test' for supporting, non-test classes
Diffstat (limited to 'src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java')
-rw-r--r--src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java91
1 files changed, 91 insertions, 0 deletions
diff --git a/src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java b/src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java
new file mode 100644
index 0000000..cb6200d
--- /dev/null
+++ b/src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java
@@ -0,0 +1,91 @@
+package com.jogamp.common.net;
+
+import java.io.IOException;
+import java.net.URISyntaxException;
+import java.net.URL;
+import java.net.URLConnection;
+
+import org.junit.Assert;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+import com.jogamp.common.util.IOUtil;
+
+import org.junit.FixMethodOrder;
+import org.junit.runners.MethodSorters;
+
+@FixMethodOrder(MethodSorters.NAME_ASCENDING)
+public class AssetURLConnectionRegisteredTest extends AssetURLConnectionBase {
+
+ @BeforeClass
+ public static void assetRegistration() throws Exception {
+ try {
+ System.err.println("******* Asset URL Stream Handler Registration: PRE");
+ Assert.assertTrue("GenericURLStreamHandlerFactory.register() failed", AssetURLContext.registerHandler(AssetURLConnectionRegisteredTest.class.getClassLoader()));
+ Assert.assertNotNull(AssetURLContext.getRegisteredHandler());
+ System.err.println("******* Asset URL Stream Handler Registration: POST");
+ } catch (final Exception e) {
+ setTestSupported(false);
+ throw e;
+ }
+ }
+
+ @Test
+ public void assetRegisteredURLConnection_RT() throws IOException {
+ testAssetConnection(createAssetURLConnection(test_asset_rt_url), test_asset_rt_entry);
+ }
+
+ @Test
+ public void assetRegisteredURLConnection_Test() throws IOException {
+ testAssetConnection(createAssetURLConnection(test_asset_test1_url), test_asset_test1_entry);
+ }
+
+ @Test
+ public void assetRegisteredIOUtilGetResourceRel1_RT() throws IOException, URISyntaxException {
+ final URLConnection urlConn0 = IOUtil.getResource(test_asset_test2a_url, this.getClass().getClassLoader());
+ Assert.assertNotNull(urlConn0);
+ Assert.assertEquals(test_asset_test2a_url, urlConn0.getURL().toExternalForm());
+ testAssetConnection(urlConn0, test_asset_test2_entry);
+
+ final Uri uri1 = Uri.valueOf(urlConn0.getURL()).getRelativeOf(test_asset_test3_rel);
+ Assert.assertNotNull(uri1);
+ Assert.assertEquals(test_asset_test3a_url, uri1.toString());
+ testAssetConnection(uri1.toURL().openConnection(), test_asset_test3_entry);
+
+ final Uri uri2 = Uri.valueOf(urlConn0.getURL()).getRelativeOf(test_asset_test4_rel);
+ Assert.assertNotNull(uri2);
+ Assert.assertEquals(test_asset_test4a_url, uri2.toString());
+ testAssetConnection(uri2.toURL().openConnection(), test_asset_test4_entry);
+ }
+
+ @Test
+ public void assetRegisteredIOUtilGetResourceRel2_RT() throws IOException, URISyntaxException {
+ final URLConnection urlConn0 = IOUtil.getResource(test_asset_test2b_url, this.getClass().getClassLoader());
+ Assert.assertNotNull(urlConn0);
+ Assert.assertEquals(test_asset_test2b_url, urlConn0.getURL().toExternalForm());
+ testAssetConnection(urlConn0, test_asset_test2_entry);
+
+ final Uri uri1 = Uri.valueOf(urlConn0.getURL()).getRelativeOf(test_asset_test3_rel);
+ Assert.assertNotNull(uri1);
+ Assert.assertEquals(test_asset_test3b_url, uri1.toString());
+ testAssetConnection(uri1.toURL().openConnection(), test_asset_test3_entry);
+
+ final Uri uri2 = Uri.valueOf(urlConn0.getURL()).getRelativeOf(test_asset_test4_rel);
+ Assert.assertNotNull(uri2);
+ Assert.assertEquals(test_asset_test4b_url, uri2.toString());
+ testAssetConnection(uri2.toURL().openConnection(), test_asset_test4_entry);
+ }
+
+ URLConnection createAssetURLConnection(final String path) throws IOException {
+ final URL url = AssetURLContext.createURL(path);
+ final URLConnection c = url.openConnection();
+ System.err.println("createAssetURL: "+path+" -> url: "+url+" -> conn: "+c+" / connURL "+(null!=c?c.getURL():null));
+ return c;
+
+ }
+
+ public static void main(final String args[]) throws IOException {
+ final String tstname = AssetURLConnectionRegisteredTest.class.getName();
+ org.junit.runner.JUnitCore.main(tstname);
+ }
+}