X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FAnnotationFileIOTest.java;h=9c4be2dcfa7b21e2a443a084b86913a55ab4ea77;hb=e7338a61f3ce96dadf44ac80b2b32cc5ba4b94c8;hp=885c6736752b47ee51da89ad735855c90f04de0a;hpb=b0832234b2a89510d715951d94ae213e449ca6b2;p=jalview.git diff --git a/test/jalview/io/AnnotationFileIOTest.java b/test/jalview/io/AnnotationFileIOTest.java index 885c673..9c4be2d 100644 --- a/test/jalview/io/AnnotationFileIOTest.java +++ b/test/jalview/io/AnnotationFileIOTest.java @@ -20,21 +20,26 @@ */ package jalview.io; +import static org.testng.AssertJUnit.assertEquals; import static org.testng.AssertJUnit.assertNotNull; import static org.testng.AssertJUnit.assertTrue; -import jalview.datamodel.AlignmentI; -import jalview.datamodel.ColumnSelection; -import jalview.gui.JvOptionPane; -import jalview.io.AnnotationFile.ViewDef; - +import java.awt.Color; import java.io.File; import java.util.Hashtable; +import java.util.List; import org.testng.Assert; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; +import jalview.datamodel.AlignmentI; +import jalview.datamodel.HiddenColumns; +import jalview.datamodel.SequenceGroup; +import jalview.gui.AlignFrame; +import jalview.gui.JvOptionPane; +import jalview.io.AnnotationFile.ViewDef; + public class AnnotationFileIOTest { @@ -70,7 +75,7 @@ public class AnnotationFileIOTest } } - AlignmentI readAlignmentFile(File f) + protected AlignmentI readAlignmentFile(File f) { System.out.println("Reading file: " + f); String ff = f.getPath(); @@ -115,7 +120,7 @@ public class AnnotationFileIOTest try { AlignmentI al = readAlignmentFile(f); - ColumnSelection cs = new ColumnSelection(); + HiddenColumns cs = new HiddenColumns(); assertTrue( "Test " + testname @@ -124,6 +129,7 @@ public class AnnotationFileIOTest DataSourceType.FILE)); AnnotationFile aff = new AnnotationFile(); + // ViewDef is not used by Jalview ViewDef v = aff.new ViewDef(null, al.getHiddenSequences(), cs, new Hashtable()); String anfileout = new AnnotationFile().printAnnotations( @@ -152,7 +158,8 @@ public class AnnotationFileIOTest DataSourceType.PASTE)); // test for consistency in io - StockholmFileTest.testAlignmentEquivalence(al, al_new, false); + StockholmFileTest.testAlignmentEquivalence(al, al_new, false, false, + false); return; } catch (Exception e) { @@ -163,4 +170,45 @@ public class AnnotationFileIOTest + "\nCouldn't complete Annotation file roundtrip input/output/input test for '" + annotFile + "'."); } + + @Test(groups="Functional") + public void testAnnotateAlignmentView() + { + long t1 = System.currentTimeMillis(); + /* + * JAL-3779 test multiple groups of the same name get annotated + */ + AlignFrame af = new FileLoader().LoadFileWaitTillLoaded( + ">Seq1\nQRSIL\n>Seq2\nFTHND\n>Seq3\nRPVSL\n", + DataSourceType.PASTE); + long t2 = System.currentTimeMillis(); + System.err.println("t0: " + (t2 - t1)); + // seq1 and seq3 are in distinct groups both named Group1 + String annotationFile = "JALVIEW_ANNOTATION\nSEQUENCE_GROUP\tGroup1\t*\t*\t1\n" + + "SEQUENCE_GROUP\tGroup2\t*\t*\t2\n" + + "SEQUENCE_GROUP\tGroup1\t*\t*\t3\n" + + "PROPERTIES\tGroup1\toutlineColour=blue\tidColour=red\n"; + new AnnotationFile().annotateAlignmentView(af.getViewport(), annotationFile, DataSourceType.PASTE); + + AlignmentI al = af.getViewport().getAlignment(); + List groups = al.getGroups(); + assertEquals(3, groups.size()); + SequenceGroup sg = groups.get(0); + assertEquals("Group1", sg.getName()); + assertTrue(sg.contains(al.getSequenceAt(0))); + assertEquals(Color.BLUE, sg.getOutlineColour()); + assertEquals(Color.RED, sg.getIdColour()); + sg = groups.get(1); + assertEquals("Group2", sg.getName()); + assertTrue(sg.contains(al.getSequenceAt(1))); + + /* + * the bug fix: a second group of the same name is also given properties + */ + sg = groups.get(2); + assertEquals("Group1", sg.getName()); + assertTrue(sg.contains(al.getSequenceAt(2))); + assertEquals(Color.BLUE, sg.getOutlineColour()); + assertEquals(Color.RED, sg.getIdColour()); + } }