Adde test

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/resource-registry-database-creator@164673 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2018-03-02 15:26:19 +00:00
parent 3836b94428
commit 3cef651651
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
package org.gcube.informationsystem.resourceregistry.context;
import java.io.IOException;
import java.util.UUID;
import org.gcube.informationsystem.impl.entity.ContextImpl;
import org.gcube.informationsystem.impl.utils.ISMapper;
import org.gcube.informationsystem.model.entity.Context;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class ContextManagementTest {
private static Logger logger = LoggerFactory.getLogger(ContextManagementTest.class);
protected Context read(UUID uuid) throws ResourceRegistryException, IOException {
ContextManagement contextManagement = new ContextManagement();
contextManagement.setUUID(uuid);
String contextString = contextManagement.read();
logger.debug("Read {}", contextString);
return ISMapper.unmarshal(Context.class, contextString);
}
protected Context create(Context context) throws ResourceRegistryException, IOException {
ContextManagement contextManagement = new ContextManagement();
contextManagement.setJSON(ISMapper.marshal(context));
String contextString = contextManagement.create();
logger.debug("Created {}", contextString);
Context c = ISMapper.unmarshal(Context.class, contextString);
return c;
}
// @Test
public void createPreContext() throws Exception {
Context gcube = new ContextImpl("gcube");
gcube = create(gcube);
Context preprod = new ContextImpl("preprod");
preprod.setParent(gcube);
preprod = create(preprod);
Context parthenosVRE = new ContextImpl("PARTHENOS_PRE");
parthenosVRE.setParent(preprod);
parthenosVRE = create(parthenosVRE);
}
}