Loading cadc-access-control/build.gradle +1 −1 Original line number Diff line number Diff line Loading @@ -15,7 +15,7 @@ sourceCompatibility = 1.7 group = 'org.opencadc' version = '1.1.2' version = '1.1.3' mainClassName = 'ca.nrc.cadc.ac.client.Main' Loading cadc-access-control/src/main/java/ca/nrc/cadc/ac/GroupURI.java +14 −28 Original line number Diff line number Diff line Loading @@ -83,7 +83,6 @@ public class GroupURI private static Logger log = Logger.getLogger(GroupURI.class); private URI uri; private String name; /** * Attempts to create a URI using the specified uri. Loading @@ -99,8 +98,6 @@ public class GroupURI throw new IllegalArgumentException("Null URI"); } this.uri = uri; // Ensure the scheme is correct if (uri.getScheme() == null) { Loading @@ -117,13 +114,9 @@ public class GroupURI throw new IllegalArgumentException("Missing authority and/or path."); } log.debug("URI: " + uri); log.debug(" scheme: " + uri.getScheme()); log.debug(" authority: " + uri.getAuthority()); log.debug(" path: " + uri.getPath()); String fragment = uri.getFragment(); String query = uri.getQuery(); String name = null; if (query == null) { if (fragment != null) Loading @@ -144,6 +137,9 @@ public class GroupURI } name = query; } this.uri = URI.create( uri.getScheme() + "://" + uri.getAuthority() + uri.getPath() + "?" + name); } /** Loading @@ -156,16 +152,16 @@ public class GroupURI } @Override public boolean equals(Object rhs) public boolean equals(Object other) { if (rhs == null) if (other == null) return false; if (this == rhs) if (this == other) return true; if (rhs instanceof GroupURI) if (other instanceof GroupURI) { GroupURI vu = (GroupURI) rhs; return uri.toString().equals(vu.uri.toString()); GroupURI otherURI = (GroupURI) other; return uri.equals(otherURI.getURI()); } return false; } Loading @@ -180,16 +176,6 @@ public class GroupURI return uri; } /** * Returns the decoded authority component of the URI. * * @return authority of the URI, or null if the authority is undefined. */ public String getAuthority() { return uri.getAuthority(); } /** * Returns the decoded fragment component of the URI. * Loading @@ -197,18 +183,18 @@ public class GroupURI */ public String getName() { return name; return uri.getQuery(); } public URI getServiceID() { String serviceID = uri.getScheme() + String serviceIDString = uri.getScheme() + "://" + uri.getAuthority() + uri.getPath(); try { return new URI(serviceID); return new URI(serviceIDString); } catch (URISyntaxException e) { Loading @@ -220,7 +206,7 @@ public class GroupURI @Override public String toString() { return getServiceID() + "?" + name; return uri.toString(); } } cadc-access-control/src/test/java/ca/nrc/cadc/ac/GroupURITest.java +12 −2 Original line number Diff line number Diff line Loading @@ -18,6 +18,18 @@ public class GroupURITest Log4jInit.setLevel("ca.nrc.cadc.ac", Level.DEBUG); } @Test public void testEquals() { GroupURI uri1 = new GroupURI("ivo://example.org/gms?name"); GroupURI uri2 = new GroupURI("ivo://example.org/gms?name"); Assert.assertTrue(uri1.equals(uri2)); uri1 = new GroupURI("ivo://example.org/gms?name"); uri2 = new GroupURI("ivo://example.org/gms#name"); Assert.assertTrue(uri1.equals(uri2)); } @Test public void testMalformed() { Loading Loading @@ -46,7 +58,6 @@ public class GroupURITest { GroupURI g = new GroupURI("ivo://my.authority/gms?name"); Assert.assertEquals("ivo", g.getURI().getScheme()); Assert.assertEquals("my.authority", g.getAuthority()); Assert.assertEquals("/gms", g.getURI().getPath()); Assert.assertEquals("name", g.getName()); Assert.assertEquals("ivo://my.authority/gms", g.getServiceID().toString()); Loading @@ -65,7 +76,6 @@ public class GroupURITest { GroupURI g = new GroupURI("ivo://my.authority/gms#name"); Assert.assertEquals("ivo", g.getURI().getScheme()); Assert.assertEquals("my.authority", g.getAuthority()); Assert.assertEquals("/gms", g.getURI().getPath()); Assert.assertEquals("name", g.getName()); Assert.assertEquals("ivo://my.authority/gms", g.getServiceID().toString()); Loading Loading
cadc-access-control/build.gradle +1 −1 Original line number Diff line number Diff line Loading @@ -15,7 +15,7 @@ sourceCompatibility = 1.7 group = 'org.opencadc' version = '1.1.2' version = '1.1.3' mainClassName = 'ca.nrc.cadc.ac.client.Main' Loading
cadc-access-control/src/main/java/ca/nrc/cadc/ac/GroupURI.java +14 −28 Original line number Diff line number Diff line Loading @@ -83,7 +83,6 @@ public class GroupURI private static Logger log = Logger.getLogger(GroupURI.class); private URI uri; private String name; /** * Attempts to create a URI using the specified uri. Loading @@ -99,8 +98,6 @@ public class GroupURI throw new IllegalArgumentException("Null URI"); } this.uri = uri; // Ensure the scheme is correct if (uri.getScheme() == null) { Loading @@ -117,13 +114,9 @@ public class GroupURI throw new IllegalArgumentException("Missing authority and/or path."); } log.debug("URI: " + uri); log.debug(" scheme: " + uri.getScheme()); log.debug(" authority: " + uri.getAuthority()); log.debug(" path: " + uri.getPath()); String fragment = uri.getFragment(); String query = uri.getQuery(); String name = null; if (query == null) { if (fragment != null) Loading @@ -144,6 +137,9 @@ public class GroupURI } name = query; } this.uri = URI.create( uri.getScheme() + "://" + uri.getAuthority() + uri.getPath() + "?" + name); } /** Loading @@ -156,16 +152,16 @@ public class GroupURI } @Override public boolean equals(Object rhs) public boolean equals(Object other) { if (rhs == null) if (other == null) return false; if (this == rhs) if (this == other) return true; if (rhs instanceof GroupURI) if (other instanceof GroupURI) { GroupURI vu = (GroupURI) rhs; return uri.toString().equals(vu.uri.toString()); GroupURI otherURI = (GroupURI) other; return uri.equals(otherURI.getURI()); } return false; } Loading @@ -180,16 +176,6 @@ public class GroupURI return uri; } /** * Returns the decoded authority component of the URI. * * @return authority of the URI, or null if the authority is undefined. */ public String getAuthority() { return uri.getAuthority(); } /** * Returns the decoded fragment component of the URI. * Loading @@ -197,18 +183,18 @@ public class GroupURI */ public String getName() { return name; return uri.getQuery(); } public URI getServiceID() { String serviceID = uri.getScheme() + String serviceIDString = uri.getScheme() + "://" + uri.getAuthority() + uri.getPath(); try { return new URI(serviceID); return new URI(serviceIDString); } catch (URISyntaxException e) { Loading @@ -220,7 +206,7 @@ public class GroupURI @Override public String toString() { return getServiceID() + "?" + name; return uri.toString(); } }
cadc-access-control/src/test/java/ca/nrc/cadc/ac/GroupURITest.java +12 −2 Original line number Diff line number Diff line Loading @@ -18,6 +18,18 @@ public class GroupURITest Log4jInit.setLevel("ca.nrc.cadc.ac", Level.DEBUG); } @Test public void testEquals() { GroupURI uri1 = new GroupURI("ivo://example.org/gms?name"); GroupURI uri2 = new GroupURI("ivo://example.org/gms?name"); Assert.assertTrue(uri1.equals(uri2)); uri1 = new GroupURI("ivo://example.org/gms?name"); uri2 = new GroupURI("ivo://example.org/gms#name"); Assert.assertTrue(uri1.equals(uri2)); } @Test public void testMalformed() { Loading Loading @@ -46,7 +58,6 @@ public class GroupURITest { GroupURI g = new GroupURI("ivo://my.authority/gms?name"); Assert.assertEquals("ivo", g.getURI().getScheme()); Assert.assertEquals("my.authority", g.getAuthority()); Assert.assertEquals("/gms", g.getURI().getPath()); Assert.assertEquals("name", g.getName()); Assert.assertEquals("ivo://my.authority/gms", g.getServiceID().toString()); Loading @@ -65,7 +76,6 @@ public class GroupURITest { GroupURI g = new GroupURI("ivo://my.authority/gms#name"); Assert.assertEquals("ivo", g.getURI().getScheme()); Assert.assertEquals("my.authority", g.getAuthority()); Assert.assertEquals("/gms", g.getURI().getPath()); Assert.assertEquals("name", g.getName()); Assert.assertEquals("ivo://my.authority/gms", g.getServiceID().toString()); Loading