X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FAnnotationFileIOTest.java;h=6a00cde06026f67122a8e062fe8ee8ceccd9ddf1;hb=136c0793b90b72b928c4d77dc109dd5c644e00d3;hp=bcaa7b1982dd04681130405ed5c51f6abf65ca28;hpb=5f4e1e4c330b045e9c8bce28ee132a0fca3834d8;p=jalview.git diff --git a/test/jalview/io/AnnotationFileIOTest.java b/test/jalview/io/AnnotationFileIOTest.java index bcaa7b1..6a00cde 100644 --- a/test/jalview/io/AnnotationFileIOTest.java +++ b/test/jalview/io/AnnotationFileIOTest.java @@ -24,7 +24,7 @@ import static org.testng.AssertJUnit.assertNotNull; import static org.testng.AssertJUnit.assertTrue; import jalview.datamodel.AlignmentI; -import jalview.datamodel.ColumnSelection; +import jalview.datamodel.HiddenColumns; import jalview.gui.JvOptionPane; import jalview.io.AnnotationFile.ViewDef; @@ -70,7 +70,7 @@ public class AnnotationFileIOTest } } - public static AlignmentI readAlignmentFile(File f) + AlignmentI readAlignmentFile(File f) { System.out.println("Reading file: " + f); String ff = f.getPath(); @@ -78,8 +78,8 @@ public class AnnotationFileIOTest { FormatAdapter rf = new FormatAdapter(); - AlignmentI al = rf.readFile(ff, AppletFormatAdapter.FILE, - new IdentifyFile().identify(ff, AppletFormatAdapter.FILE)); + AlignmentI al = rf.readFile(ff, DataSourceType.FILE, + new IdentifyFile().identify(ff, DataSourceType.FILE)); // make sure dataset is initialised ? not sure about this for (int i = 0; i < al.getSequencesArray().length; ++i) @@ -106,9 +106,7 @@ public class AnnotationFileIOTest * - label for IO class used to write and read back in the data from * f */ - - // @Test(groups ={ "Functional" }) - public static void testAnnotationFileIO(String testname, File f, + void testAnnotationFileIO(String testname, File f, File annotFile) { System.out.println("Test: " + testname + "\nReading annotation file '" @@ -117,15 +115,16 @@ public class AnnotationFileIOTest try { AlignmentI al = readAlignmentFile(f); - ColumnSelection cs = new ColumnSelection(); + HiddenColumns cs = new HiddenColumns(); assertTrue( "Test " + testname + "\nAlignment was not annotated - annotation file not imported.", new AnnotationFile().readAnnotationFile(al, cs, af, - FormatAdapter.FILE)); + 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( @@ -151,10 +150,11 @@ public class AnnotationFileIOTest + testname + "\nregenerated annotation file did not annotate alignment.", new AnnotationFile().readAnnotationFile(al_new, anfileout, - FormatAdapter.PASTE)); + 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) {