Skip to content
Snippets Groups Projects
Commit c1effa06 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Marked edited section in xjc auto-generated files; Added NodeTest

parent 1d8479c9
Branches
Tags
No related merge requests found
Showing
with 202 additions and 19 deletions
......@@ -28,7 +28,7 @@ public class NodeTypeJsonResolver extends TypeIdResolverBase {
@Override
public String idFromValue(Object o) {
Node node = (Node) o;
return node.getType();
return "vos:" + node.getClass().getSimpleName();
}
@Override
......
......@@ -94,8 +94,10 @@ import org.w3c.dom.Element;
"errorSummary",
"jobInfo"
})
// <edit>
@XmlSeeAlso({Transfer.class}) // Necessary for setting a Transfer inside the jobInfo property.
@XmlRootElement(name = "job")
// </edit>
public class JobSummary {
@XmlElement(required = true)
......@@ -510,8 +512,10 @@ public class JobSummary {
@XmlType(name = "", propOrder = {
"any"
})
// <edit>
@JsonSerialize(using = JobInfoSerializer.class)
@JsonDeserialize(using = JobInfoDeserializer.class)
// </edit>
public static class JobInfo {
@XmlAnyElement(lax = true)
......
......@@ -8,13 +8,19 @@
@javax.xml.bind.annotation.XmlSchema(
namespace = "http://www.ivoa.net/xml/UWS/v1.0",
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED,
// <edit>
// Defining the namespace prefix is necessary otherwise
// deserialized XML will have no prefixes
xmlns = {
@javax.xml.bind.annotation.XmlNs(
namespaceURI = "http://www.ivoa.net/xml/UWS/v1.0",
prefix = "uws"
),
@javax.xml.bind.annotation.XmlNs(
namespaceURI = "http://www.w3.org/2001/XMLSchema-instance",
prefix = "xsi"
)
}
// </edit>
)
package net.ivoa.xml.uws.v1;
......@@ -56,8 +56,10 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "ContainerNode", propOrder = {
"nodes"
})
// <edit>
@XmlRootElement(name = "node")
@JsonDeserialize(converter = NodeTypeSetter.ContainerNode.class)
// </edit>
public class ContainerNode
extends DataNode
{
......
......@@ -45,8 +45,10 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "LinkNode", propOrder = {
"target"
})
// <edit>
@XmlRootElement(name = "node")
@JsonDeserialize(converter = NodeTypeSetter.LinkNode.class)
// </edit>
public class LinkNode
extends Node
{
......
......@@ -21,12 +21,9 @@ import javax.xml.bind.annotation.XmlType;
* The base class for all nodes.
*
*
* <p>
* Java class for Node complex type.
* <p>Java class for Node complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="Node">
......@@ -51,23 +48,27 @@ import javax.xml.bind.annotation.XmlType;
LinkNode.class,
DataNode.class
})
// <edit>
@JsonTypeInfo(use = JsonTypeInfo.Id.CUSTOM, property = "type", include = JsonTypeInfo.As.EXISTING_PROPERTY)
@JsonTypeIdResolver(NodeTypeJsonResolver.class)
// </edit>
public class Node {
protected PropertyList properties;
// Added by Soni to manage inhetitance
// <edit>
// Needed for handling inheritance in JSON (for XML is is automatically generated by JAXB).
@XmlAttribute(name = "type", namespace = "http://www.w3.org/2001/XMLSchema-instance")
protected String type;
public String getType() {
return type;
return "vos:" + getClass().getSimpleName();
}
public void setType(String type) {
this.type = type;
}
// </edit>
@XmlAttribute(name = "uri", required = true)
@XmlSchemaType(name = "anyURI")
......
......@@ -40,8 +40,10 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StructuredDataNode")
// <edit>
@XmlRootElement(name = "node")
@JsonDeserialize(converter = NodeTypeSetter.StructuredDataNode.class)
// </edit>
public class StructuredDataNode
extends DataNode
{
......
......@@ -71,7 +71,9 @@ import javax.xml.bind.annotation.XmlType;
"protocol",
"keepBytes"
})
// <edit>
@XmlRootElement
// </edit>
public class Transfer {
@XmlElement(required = true)
......@@ -81,9 +83,10 @@ public class Transfer {
protected View view;
protected List<Protocol> protocol;
protected Boolean keepBytes;
// Fix perche` manca version nel vospace.xsd
// <edit> Fix: version is missing in VOSpace XSD
@XmlAttribute
protected String version;
// </edit>
/**
* Gets the value of the target property.
......@@ -210,6 +213,7 @@ public class Transfer {
this.keepBytes = value;
}
// <edit>
public String getVersion() {
return version;
}
......@@ -217,5 +221,6 @@ public class Transfer {
public void setVersion(String version) {
this.version = version;
}
// </edit>
}
......@@ -40,9 +40,10 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UnstructuredDataNode")
// added by Sonia per dirgli che puo` avere come radice un nodo singolo
@XmlRootElement(name = "node")
// <edit>
@XmlRootElement(name = "node") // A single node can be the root of an XML document
@JsonDeserialize(converter = NodeTypeSetter.UnstructuredDataNode.class)
// <edit>
public class UnstructuredDataNode
extends DataNode
{
......
......@@ -7,13 +7,19 @@
@javax.xml.bind.annotation.XmlSchema(
namespace = "http://www.ivoa.net/xml/VOSpace/v2.0",
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED,
// <edit>
// Defining the namespace prefix is necessary otherwise
// deserialized XML will have no prefixes
xmlns = {
@javax.xml.bind.annotation.XmlNs(
namespaceURI = "http://www.ivoa.net/xml/VOSpace/v2.0",
prefix = "vos"
),
@javax.xml.bind.annotation.XmlNs(
namespaceURI = "http://www.w3.org/2001/XMLSchema-instance",
prefix = "xsi"
)
}
// </edit>
)
package net.ivoa.xml.vospace.v2;
package net.ivoa.xml.uws.v1;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.StringReader;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Function;
import javax.xml.bind.JAXB;
import net.ivoa.xml.vospace.v2.ContainerNode;
import net.ivoa.xml.vospace.v2.DataNode;
import net.ivoa.xml.vospace.v2.Node;
import net.ivoa.xml.vospace.v2.Property;
import net.ivoa.xml.vospace.v2.PropertyList;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
public class NodeTest {
private static final ObjectMapper MAPPER = new ObjectMapper();
private static final String URI_PREFIX = "vos://example.com!vospace";
@Test
public void testXmlSerialization() throws Exception {
ContainerNode root = getRoot();
String xml;
try ( StringWriter sw = new StringWriter()) {
JAXB.marshal(root, sw);
xml = sw.toString();
System.out.println(xml);
}
assertTrue(xml.contains("<vos:node"));
assertTrue(xml.contains("<vos:nodes>"));
assertTrue(xml.contains("xsi:type=\"vos:DataNode\""));
assertTrue(xml.contains("xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\""));
ContainerNode deserialized;
try ( StringReader sr = new StringReader(xml)) {
deserialized = JAXB.unmarshal(sr, ContainerNode.class);
}
verifyNodesAreEquals(root, deserialized);
verifyConstraints(deserialized);
}
@Test
public void testJsonSerialization() throws Exception {
ContainerNode root = getRoot();
String json = MAPPER.writeValueAsString(root);
System.out.println(json);
ContainerNode deserialized = MAPPER.readValue(json, ContainerNode.class);
verifyNodesAreEquals(root, deserialized);
verifyConstraints(deserialized);
}
private ContainerNode getRoot() {
ContainerNode root = getContainerNode("/", true, "g1", "g2");
List<Node> nodes = new ArrayList<>();
nodes.add(getDataNode("/node1", false, "g1", "g2", 808009979));
nodes.add(getDataNode("/node2", true, "g1", "g2", 305919869));
nodes.add(getContainerNode("/node3", true, "g1", "g2"));
ContainerNode.Nodes nodesEl = new ContainerNode.Nodes();
nodesEl.getNode().addAll(nodes);
root.setNodes(nodesEl);
return root;
}
private ContainerNode getContainerNode(String path, boolean isPublic, String groupRead, String groupWrite) {
ContainerNode node = new ContainerNode();
fillNode(node, path, isPublic, groupRead, groupWrite, 0);
return node;
}
private DataNode getDataNode(String path, boolean isPublic, String groupRead, String groupWrite, long size) {
DataNode node = new DataNode();
fillNode(node, path, isPublic, groupRead, groupWrite, size);
return node;
}
private void fillNode(Node node, String path, boolean isPublic, String groupRead, String groupWrite, long size) {
node.setUri(URI_PREFIX + path);
List<Property> properties = new ArrayList<>();
properties.add(createProperty("ivo://ivoa.net/vospace/core#ispublic", String.valueOf(isPublic)));
properties.add(createProperty("ivo://ivoa.net/vospace/core#groupread", groupRead));
properties.add(createProperty("ivo://ivoa.net/vospace/core#groupwrite", groupWrite));
properties.add(createProperty("ivo://ivoa.net/vospace/core#length", String.valueOf(size)));
PropertyList propertyList = new PropertyList();
propertyList.getProperty().addAll(properties);
node.setProperties(propertyList);
}
private Property createProperty(String uri, String value) {
Property prop = new Property();
prop.setUri(uri);
prop.setValue(value);
return prop;
}
private void verifyNodesAreEquals(ContainerNode serialized, ContainerNode deserialized) {
verifyItem(serialized, deserialized, n -> n.getType());
verifyItem(serialized, deserialized, n -> n.getNodes().getNode().size());
verifyItem(serialized, deserialized, n -> getProperty(n, "ivo://ivoa.net/vospace/core#ispublic"));
verifyItem(serialized, deserialized, n -> getProperty(n, "ivo://ivoa.net/vospace/core#groupread"));
verifyItem(serialized, deserialized, n -> getProperty(n, "ivo://ivoa.net/vospace/core#groupwrite"));
verifyItem(serialized, deserialized, n -> getProperty(n, "ivo://ivoa.net/vospace/core#length"));
}
private <T> void verifyItem(ContainerNode serialized, ContainerNode deserialized, Function<ContainerNode, T> function) {
assertEquals(function.apply(serialized), function.apply(deserialized));
}
private String getProperty(Node node, String uri) {
for (Property property : node.getProperties().getProperty()) {
if (uri.equals(property.getUri())) {
return property.getValue();
}
}
throw new IllegalArgumentException("Node doesn't contain property having uri " + uri);
}
private void verifyConstraints(ContainerNode deserialized) {
DataNode node1 = (DataNode) getChildNodeByPath(deserialized, "/node1");
ContainerNode node3 = (ContainerNode) getChildNodeByPath(deserialized, "/node3");
assertEquals("vos:DataNode", node1.getType());
assertEquals("vos:ContainerNode", node3.getType());
}
private Node getChildNodeByPath(ContainerNode parent, String path) {
for (Node node : parent.getNodes().getNode()) {
if ((URI_PREFIX + path).equals(node.getUri())) {
return node;
}
}
throw new IllegalArgumentException("Node not found for path " + path);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment