X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FAnnotationFileIOTest.java;fp=test%2Fjalview%2Fio%2FAnnotationFileIOTest.java;h=885c6736752b47ee51da89ad735855c90f04de0a;hb=2595e9d4ee0dbbd3406a98c4e49a61ccde806479;hp=c9b5f4a1f3ea2eca45b57e24c2778a7ebfca9d01;hpb=e20075ba805d744d7cc4976e2b8d5e5840fb0a8d;p=jalview.git diff --git a/test/jalview/io/AnnotationFileIOTest.java b/test/jalview/io/AnnotationFileIOTest.java index c9b5f4a..885c673 100644 --- a/test/jalview/io/AnnotationFileIOTest.java +++ b/test/jalview/io/AnnotationFileIOTest.java @@ -25,17 +25,26 @@ 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.io.File; import java.util.Hashtable; import org.testng.Assert; +import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; public class AnnotationFileIOTest { + @BeforeClass(alwaysRun = true) + public void setUpJvOptionPane() + { + JvOptionPane.setInteractiveMode(false); + JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); + } + static String TestFiles[][] = { { "Test example annotation import/export", "examples/uniref50.fa", "examples/testdata/example_annot_file.jva" }, @@ -61,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(); @@ -69,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) @@ -97,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 '" @@ -114,7 +121,7 @@ public class AnnotationFileIOTest + testname + "\nAlignment was not annotated - annotation file not imported.", new AnnotationFile().readAnnotationFile(al, cs, af, - FormatAdapter.FILE)); + DataSourceType.FILE)); AnnotationFile aff = new AnnotationFile(); ViewDef v = aff.new ViewDef(null, al.getHiddenSequences(), cs, @@ -142,7 +149,7 @@ 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);