Skip to content
Snippets Groups Projects
Commit d6fad8c4 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unit tests fixed + subclasses use proper discrimantor

parent 60984743
No related branches found
No related tags found
1 merge request!345Resolve "Genes annotations don't show"
...@@ -120,7 +120,7 @@ public class ApplySimpleLayoutModelCommand extends ApplyLayoutModelCommand { ...@@ -120,7 +120,7 @@ public class ApplySimpleLayoutModelCommand extends ApplyLayoutModelCommand {
Set<Species> elementToAlign = new HashSet<>(); Set<Species> elementToAlign = new HashSet<>();
Map<Compartment, Set<Element>> elementsByStaticCompartment = new HashMap<>(); Map<Compartment, Set<Element>> elementsByStaticCompartment = new HashMap<>();
for (Element element : elements) { for (Element element : elements) {
if (element.getWidth() == 0) { if (element.getWidth() == null || element.getWidth() == 0) {
element.setWidth(SPECIES_WIDTH); element.setWidth(SPECIES_WIDTH);
element.setHeight(SPECIES_HEIGHT); element.setHeight(SPECIES_HEIGHT);
...@@ -360,7 +360,9 @@ public class ApplySimpleLayoutModelCommand extends ApplyLayoutModelCommand { ...@@ -360,7 +360,9 @@ public class ApplySimpleLayoutModelCommand extends ApplyLayoutModelCommand {
protected Dimension2D estimateDimension(Collection<BioEntity> bioEntites) { protected Dimension2D estimateDimension(Collection<BioEntity> bioEntites) {
double suggestedSize = Math.max(100 * bioEntites.size() / 4, double suggestedSize = Math.max(100 * bioEntites.size() / 4,
Math.sqrt((SPECIES_WIDTH + 10) * (SPECIES_HEIGHT + 10) * bioEntites.size())); Math.sqrt((SPECIES_WIDTH + 10) * (SPECIES_HEIGHT + 10) * bioEntites.size()));
suggestedSize = Math.max(suggestedSize, 2 * (SPECIES_WIDTH + 10)); if (bioEntites.size() > 0) {
suggestedSize = Math.max(suggestedSize, 2 * (SPECIES_WIDTH + 10));
}
return new DoubleDimension(suggestedSize, suggestedSize); return new DoubleDimension(suggestedSize, suggestedSize);
} }
......
package lcsb.mapviewer.commands; package lcsb.mapviewer.commands;
import lcsb.mapviewer.commands.layout.AllLayoutTests;
import lcsb.mapviewer.commands.properties.AllPropertyCommandTests; import lcsb.mapviewer.commands.properties.AllPropertyCommandTests;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
...@@ -7,12 +8,13 @@ import org.junit.runners.Suite; ...@@ -7,12 +8,13 @@ import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses; import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class) @RunWith(Suite.class)
@SuiteClasses({ AllPropertyCommandTests.class, // @SuiteClasses({ AllLayoutTests.class, //
ColorModelCommandTest.class, // AllPropertyCommandTests.class, //
CopyCommandTest.class, // ColorModelCommandTest.class, //
CreateHierarchyCommandTest.class, // CopyCommandTest.class, //
MoveElementsCommandTest.class, // CreateHierarchyCommandTest.class, //
SubModelCommandTest.class,// MoveElementsCommandTest.class, //
SubModelCommandTest.class,//
}) })
public class AllCommandsTests { public class AllCommandsTests {
......
...@@ -22,7 +22,7 @@ import lcsb.mapviewer.model.map.species.Species; ...@@ -22,7 +22,7 @@ import lcsb.mapviewer.model.map.species.Species;
* *
*/ */
@Entity @Entity
@DiscriminatorValue("MODIFICATION_SITE") @DiscriminatorValue("BINDING_REGION")
public class BindingRegion extends AbstractRegionModification implements Serializable { public class BindingRegion extends AbstractRegionModification implements Serializable {
/** /**
......
...@@ -26,7 +26,7 @@ import lcsb.mapviewer.model.map.species.Species; ...@@ -26,7 +26,7 @@ import lcsb.mapviewer.model.map.species.Species;
* *
*/ */
@Entity @Entity
@DiscriminatorValue("MODIFICATION_SITE") @DiscriminatorValue("CODING_REGION")
public class CodingRegion extends AbstractRegionModification implements Serializable { public class CodingRegion extends AbstractRegionModification implements Serializable {
/** /**
......
...@@ -24,7 +24,7 @@ import lcsb.mapviewer.model.map.species.Species; ...@@ -24,7 +24,7 @@ import lcsb.mapviewer.model.map.species.Species;
* *
*/ */
@Entity @Entity
@DiscriminatorValue("MODIFICATION_SITE") @DiscriminatorValue("PROTEIN_BINDING_DOMAIN")
public class ProteinBindingDomain extends AbstractRegionModification implements Serializable { public class ProteinBindingDomain extends AbstractRegionModification implements Serializable {
/** /**
......
...@@ -22,7 +22,7 @@ import lcsb.mapviewer.model.map.species.Species; ...@@ -22,7 +22,7 @@ import lcsb.mapviewer.model.map.species.Species;
* *
*/ */
@Entity @Entity
@DiscriminatorValue("MODIFICATION_SITE") @DiscriminatorValue("REGULATORY_REGION")
public class RegulatoryRegion extends AbstractRegionModification implements Serializable { public class RegulatoryRegion extends AbstractRegionModification implements Serializable {
/** /**
......
...@@ -39,15 +39,12 @@ public class DrugRestImpl extends BaseRestImpl { ...@@ -39,15 +39,12 @@ public class DrugRestImpl extends BaseRestImpl {
@Autowired @Autowired
private IDrugService drugService; private IDrugService drugService;
@Autowired
private IModelService modelService;
@Autowired @Autowired
private IUserService userService; private IUserService userService;
public List<Map<String, Object>> getDrugsByQuery(String token, String projectId, String columns, String query) public List<Map<String, Object>> getDrugsByQuery(String token, String projectId, String columns, String query)
throws SecurityException, QueryException { throws SecurityException, QueryException {
Model model = modelService.getLastModelByProjectId(projectId, token); Model model = getModelService().getLastModelByProjectId(projectId, token);
if (model == null) { if (model == null) {
throw new QueryException("Project with given id doesn't exist"); throw new QueryException("Project with given id doesn't exist");
} }
...@@ -87,23 +84,6 @@ public class DrugRestImpl extends BaseRestImpl { ...@@ -87,23 +84,6 @@ public class DrugRestImpl extends BaseRestImpl {
this.userService = userService; this.userService = userService;
} }
/**
* @return the modelService
* @see #modelService
*/
public IModelService getModelService() {
return modelService;
}
/**
* @param modelService
* the modelService to set
* @see #modelService
*/
public void setModelService(IModelService modelService) {
this.modelService = modelService;
}
private Map<String, Object> prepareDrug(Drug drug, Set<String> columnsSet, List<Model> models) { private Map<String, Object> prepareDrug(Drug drug, Set<String> columnsSet, List<Model> models) {
Map<String, Object> result = new TreeMap<>(); Map<String, Object> result = new TreeMap<>();
for (String string : columnsSet) { for (String string : columnsSet) {
...@@ -171,7 +151,7 @@ public class DrugRestImpl extends BaseRestImpl { ...@@ -171,7 +151,7 @@ public class DrugRestImpl extends BaseRestImpl {
public List<Map<String, Object>> getDrugsByTarget(String token, String projectId, String targetType, String targetId, public List<Map<String, Object>> getDrugsByTarget(String token, String projectId, String targetType, String targetId,
String columns) throws SecurityException, QueryException { String columns) throws SecurityException, QueryException {
Model model = modelService.getLastModelByProjectId(projectId, token); Model model = getModelService().getLastModelByProjectId(projectId, token);
if (model == null) { if (model == null) {
throw new QueryException("Project with given id doesn't exist"); throw new QueryException("Project with given id doesn't exist");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment