blob: 6e244ebbae2a444ee5e1e753bdc9d331a5e971fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
package com.jogamp.common.net;
import static com.jogamp.common.net.URIDumpUtil.showURX;
import java.io.IOException;
import java.net.URISyntaxException;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runners.MethodSorters;
import com.jogamp.junit.util.JunitTracer;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestUrisWithAssetHandler extends JunitTracer {
@BeforeClass
public static void assetRegistration() throws Exception {
try {
System.err.println("******* Asset URL Stream Handler Registration: PRE");
Assert.assertTrue("GenericURLStreamHandlerFactory.register() failed", AssetURLContext.registerHandler(TestUrisWithAssetHandler.class.getClassLoader()));
Assert.assertNotNull(AssetURLContext.getRegisteredHandler());
System.err.println("******* Asset URL Stream Handler Registration: POST");
} catch (Exception e) {
setTestSupported(false);
throw e;
}
}
@Test
public void showURLComponents0() throws IOException, URISyntaxException {
showURX("file:///rootDir/file1.txt");
showURX("file://host/rootDir/file1.txt");
showURX("jar:file:/web1/file1.jar!/rootDir/file1.txt");
showURX("asset:gluegen-test/info.txt");
showURX("asset:/gluegen-test/info.txt");
showURX("http://domain.com/web1/index.html?lala=23&lili=24#anchor");
showURX("http://domain.com:1234/web1/index.html?lala=23&lili=24#anchor");
showURX("asset:jar:file:/web1/file1.jar!/rootDir/file1.txt");
showURX("asset:jar:file:/web1/file1.jar!/rootDir/./file1.txt");
showURX("asset:jar:file:/web1/file1.jar!/rootDir/dummyParent/../file1.txt");
}
public static void main(String args[]) throws IOException {
String tstname = TestUrisWithAssetHandler.class.getName();
org.junit.runner.JUnitCore.main(tstname);
}
}
|