diff --git a/pom.xml b/pom.xml index 15eac61..bbda6a2 100644 --- a/pom.xml +++ b/pom.xml @@ -54,13 +54,11 @@ gcube-resources - org.gcube.common diff --git a/src/test/java/org/gcube/informationsystem/resourceregistry/context/ContextManagementTest.java b/src/test/java/org/gcube/informationsystem/resourceregistry/context/ContextManagementTest.java index f28fd82..5790c3b 100644 --- a/src/test/java/org/gcube/informationsystem/resourceregistry/context/ContextManagementTest.java +++ b/src/test/java/org/gcube/informationsystem/resourceregistry/context/ContextManagementTest.java @@ -1,62 +1,22 @@ 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.ScopedTest; -import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException; import org.junit.Test; +/* import org.slf4j.Logger; import org.slf4j.LoggerFactory; +*/ public class ContextManagementTest extends ScopedTest { - private static Logger logger = LoggerFactory.getLogger(ContextManagementTest.class); + // 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); - - } - @Test public void createContexts() throws Exception { + //ScopedTest.setContext(ScopedTest.PROD); ContextCreator contextCreator = new ContextCreator(); contextCreator.all(); } - @Test - public void testContext() throws Exception { - ScopedTest.setContext(ScopedTest.PROD); - } }