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

unit test showing that conversion via sbml doesn't work

parent 3f9653b7
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!494Conversion rest api scaling
......@@ -157,16 +157,36 @@ public class ConvertRestImplTest extends RestTestFunctions {
@Test
public void testCellDesigner2Sbml2Svg() throws Exception {
try {
File file = new File("testFiles/convert/neuron_cd.xml");
String content = FileUtils.readFileToString(file);
String resultSbml = convertRestImpl.convert(token, "CellDesigner_SBML", "SBML", content).toString();
String resultSvg = convertRestImpl.converToImage(token, "SBML", "svg", resultSbml).toString();
// FileOutputStream outputStream = new FileOutputStream("sample-cd.png");
// outputStream.write(convertRestImpl.converToImage(token, "CellDesigner_SBML", "png", content).toByteArray());
// outputStream.close();
File file = new File("testFiles/convert/neuron_cd.xml");
String content = FileUtils.readFileToString(file);
String resultSbml = convertRestImpl.convert(token, "CellDesigner_SBML", "SBML", content).toString();
String resultSvg = convertRestImpl.converToImage(token, "SBML", "svg", resultSbml).toString();
// FileOutputStream outputStream = new FileOutputStream("sample-cd.png");
// outputStream.write(convertRestImpl.converToImage(token, "CellDesigner_SBML", "png", content).toByteArray());
// outputStream.close();
assertTrue(resultSvg.contains("<rect"));
} catch (Exception e) {
e.printStackTrace();
throw e;
}
}
@Test
public void testCellDesigner2Sbml2CellDesignerSvg() throws Exception {
try {
File file = new File("testFiles/convert/neuron_cd.xml");
String content = FileUtils.readFileToString(file);
String resultSbml = convertRestImpl.convert(token, "CellDesigner_SBML", "SBML", content).toString();
String resultCellDesignerSbml = convertRestImpl.convert(token, "SBML", "CellDesigner_SBML", resultSbml).toString();
String resultSvg = convertRestImpl.converToImage(token, "CellDesigner_SBML", "svg", resultCellDesignerSbml).toString();
// FileOutputStream outputStream = new FileOutputStream("sample-cd.png");
// outputStream.write(convertRestImpl.converToImage(token, "CellDesigner_SBML", "png", content).toByteArray());
// outputStream.close();
assertTrue(resultSvg.contains("<rect"));
assertTrue(resultSvg.contains("<rect"));
} catch (Exception e) {
e.printStackTrace();
throw e;
......
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