diff options
author | Sven Gothel <[email protected]> | 2013-08-28 14:37:54 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-08-28 14:37:54 +0200 |
commit | 0931943b4498eafe857a47dbfa19592caef51546 (patch) | |
tree | b0bd6dc37dcf74d7fee63b70f1298727ccb3aa62 /src/junit/com/jogamp | |
parent | 32a0435414ef69640fc0816c7b7891535a6aec49 (diff) |
Add URIQueryProps: Simple tool to process URI queries as properties
Diffstat (limited to 'src/junit/com/jogamp')
-rw-r--r-- | src/junit/com/jogamp/common/net/URLCompositionTest.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/junit/com/jogamp/common/net/URLCompositionTest.java b/src/junit/com/jogamp/common/net/URLCompositionTest.java index 5d19c1d..dcf8d9c 100644 --- a/src/junit/com/jogamp/common/net/URLCompositionTest.java +++ b/src/junit/com/jogamp/common/net/URLCompositionTest.java @@ -204,6 +204,32 @@ public class URLCompositionTest extends JunitTracer { Assert.assertTrue(refURL.sameFile(uri2.toURL())); } + @Test + public void testURLProps() throws IOException, URISyntaxException { + final String SCHEME = "camera"; + final String HOST = "somewhere"; + final String PATH = "0"; + String[] args = new String[] { + SCHEME+"://"+HOST+"/"+PATH, + SCHEME+"://"+HOST+"/"+PATH+"?p1=1", + }; + for(int i=0; i<args.length-1; i+=2) { + String uri_s0 = args[i]; + String uri_s1 = args[i+1]; + URI uri0 = new URI(uri_s0); + URI uri1 = new URI(uri_s1); + showURI(uri0); + showURI(uri1); + URIQueryProps data = URIQueryProps.create(uri1); + if(null == data) { + System.err.println("Error: NULL: <"+uri_s1+"> -> "+uri1+" -> NULL"); + } else { + URI uri1T = data.appendQuery(uri0); + showURI(uri1T); + Assert.assertEquals(uri1, uri1T); + } + } + } public static void main(String args[]) throws IOException { String tstname = URLCompositionTest.class.getName(); org.junit.runner.JUnitCore.main(tstname); |