From 0931943b4498eafe857a47dbfa19592caef51546 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 28 Aug 2013 14:37:54 +0200 Subject: Add URIQueryProps: Simple tool to process URI queries as properties --- .../com/jogamp/common/net/URLCompositionTest.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'src/junit') 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 -> "+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); -- cgit v1.2.3