X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FPhylipFileTests.java;h=d85335027c59fcd5fdde7bc6f3b3724a88d5ad4a;hb=3069ade337eb42af30baf34a69f0a7f4cefe3948;hp=fa57c3dae68c91d04ae0af7e5a1cc7fd62ed5deb;hpb=37de9310bec3501cbc6381e0c3dcb282fcaad812;p=jalview.git diff --git a/test/jalview/io/PhylipFileTests.java b/test/jalview/io/PhylipFileTests.java index fa57c3d..d853350 100644 --- a/test/jalview/io/PhylipFileTests.java +++ b/test/jalview/io/PhylipFileTests.java @@ -25,11 +25,13 @@ import static org.testng.AssertJUnit.assertTrue; import jalview.datamodel.AlignmentI; import jalview.datamodel.SequenceI; +import jalview.gui.JvOptionPane; import java.io.IOException; import java.util.HashMap; import java.util.Map; +import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; /** @@ -45,6 +47,13 @@ import org.testng.annotations.Test; public class PhylipFileTests { + @BeforeClass(alwaysRun = true) + public void setUpJvOptionPane() + { + JvOptionPane.setInteractiveMode(false); + JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); + } + // interleaved file from // http://www.molecularevolution.org/molevolfiles/fileformats/dna.phy.dat // sequential file is the interleave file converted into sequential format @@ -126,8 +135,8 @@ public class PhylipFileTests private void testDataExtraction(String file) throws IOException { AppletFormatAdapter rf = new AppletFormatAdapter(); - AlignmentI al = rf.readFile(file, AppletFormatAdapter.FILE, - PhylipFile.FILE_DESC); + AlignmentI al = rf.readFile(file, DataSourceType.FILE, + FileFormat.Phylip); assertNotNull("Couldn't read supplied alignment data.", al); Map data = PhylipFileTests.getTestData(); @@ -171,17 +180,18 @@ public class PhylipFileTests public void testIO(String file) throws IOException { AppletFormatAdapter rf = new AppletFormatAdapter(); - AlignmentI al = rf.readFile(file, AppletFormatAdapter.FILE, - PhylipFile.FILE_DESC); + AlignmentI al = rf.readFile(file, DataSourceType.FILE, + FileFormat.Phylip); assertNotNull("Couldn't read supplied alignment data.", al); - String outputfile = rf.formatSequences(PhylipFile.FILE_DESC, al, true); + String outputfile = rf.formatSequences(FileFormat.Phylip, al, true); AlignmentI al_input = new AppletFormatAdapter().readFile(outputfile, - AppletFormatAdapter.PASTE, PhylipFile.FILE_DESC); + DataSourceType.PASTE, FileFormat.Phylip); assertNotNull("Couldn't parse reimported alignment data.", al_input); - StockholmFileTest.testAlignmentEquivalence(al, al_input, false); + StockholmFileTest.testAlignmentEquivalence(al, al_input, false, false, + false); } }