test for JAL-1177 store and recover RNA secondary structure for a stockholm file...
[jalview.git] / test / jalview / io / Jalview2xmlTests.java
1 package jalview.io;
2
3 import static org.junit.Assert.*;
4 import jalview.datamodel.AlignmentAnnotation;
5 import jalview.datamodel.SequenceI;
6 import jalview.gui.AlignFrame;
7
8 import java.io.File;
9
10 import org.junit.AfterClass;
11 import org.junit.BeforeClass;
12 import org.junit.Test;
13
14 public class Jalview2xmlTests
15 {
16
17   /**
18    * @throws java.lang.Exception
19    */
20   @BeforeClass
21   public static void setUpBeforeClass() throws Exception
22   {
23     jalview.bin.Jalview.main(new String[] {"-props","test/src/jalview/io/testProps.jvprops"});
24   }
25
26   /**
27    * @throws java.lang.Exception
28    */
29   @AfterClass
30   public static void tearDownAfterClass() throws Exception
31   {
32     jalview.gui.Desktop.instance.quit();
33   }
34   public int countDsAnn(jalview.viewmodel.AlignmentViewport avp)
35   {
36     int numdsann=0;
37     for (SequenceI sq: avp.getAlignment().getDataset().getSequences()) {
38       if (sq.getAnnotation() != null)
39       {
40         for (AlignmentAnnotation dssa : sq.getAnnotation())
41         {
42           if (dssa.isValidStruc())
43           {
44             numdsann++;
45           }
46         }
47       }
48     }
49     return numdsann;
50   }
51   @Test
52   public void testRNAStructureRecovery() throws Exception
53   {
54     String inFile = "examples/RF00031_folded.stk";
55     String tfile = File.createTempFile("JalviewTest", ".jvp").getAbsolutePath();
56     AlignFrame af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(inFile, FormatAdapter.FILE);
57     assertTrue("Didn't read input file "+inFile, af!=null);
58     int olddsann=countDsAnn(af.getViewport());
59     assertTrue("Didn't find any dataset annotations",olddsann>0);
60     assertTrue("Failed to store as a project.",af.saveAlignment(tfile, "Jalview"));
61     af.closeMenuItem_actionPerformed(true);
62     af=null;
63     af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(tfile, FormatAdapter.FILE);
64     assertTrue("Failed to import new project", af!=null);
65     int newdsann=countDsAnn(af.getViewport());
66     assertTrue("Differing numbers of dataset sequence annotation\nOriginally "+olddsann+" and now "+newdsann,olddsann==newdsann);
67     System.out.println("Read in same number of annotations as originally present ("+olddsann+")");
68   }
69
70 }