X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FFileIOTester.java;h=26ece71e64195d89a7a5258115569b0d5c7e4b71;hb=5f4e1e4c330b045e9c8bce28ee132a0fca3834d8;hp=e9165e263991ada7485247e8bb8d5c1ab522f5bf;hpb=ad15cff29620f960119f80176f1fd443da9f6763;p=jalview.git diff --git a/test/jalview/io/FileIOTester.java b/test/jalview/io/FileIOTester.java index e9165e2..26ece71 100644 --- a/test/jalview/io/FileIOTester.java +++ b/test/jalview/io/FileIOTester.java @@ -20,14 +20,15 @@ */ package jalview.io; -import static org.junit.Assert.*; +import jalview.gui.JvOptionPane; import java.io.File; import java.io.IOException; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Test; +import org.testng.AssertJUnit; +import org.testng.annotations.AfterClass; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; /** * @author jimp @@ -36,10 +37,17 @@ import org.junit.Test; public class FileIOTester { + @BeforeClass(alwaysRun = true) + public void setUpJvOptionPane() + { + JvOptionPane.setInteractiveMode(false); + JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); + } + /** * @throws java.lang.Exception */ - @BeforeClass + @BeforeClass(alwaysRun = true) public static void setUpBeforeClass() throws Exception { } @@ -47,7 +55,7 @@ public class FileIOTester /** * @throws java.lang.Exception */ - @AfterClass + @AfterClass(alwaysRun = true) public static void tearDownAfterClass() throws Exception { } @@ -68,13 +76,14 @@ public class FileIOTester private void assertValidFormat(String fmt, String src, FileParse fp) { - assertTrue("Couldn't resolve " + src + " as a valid file", fp.isValid()); - String type = new IdentifyFile().Identify(fp); - assertTrue("Data from '" + src + "' Expected to be '" + fmt + AssertJUnit.assertTrue("Couldn't resolve " + src + " as a valid file", + fp.isValid()); + String type = new IdentifyFile().identify(fp); + AssertJUnit.assertTrue("Data from '" + src + "' Expected to be '" + fmt + "' identified as '" + type + "'", type.equalsIgnoreCase(fmt)); } - @Test + @Test(groups = { "Functional" }) public void testStarsInFasta1() throws IOException { String uri; @@ -83,7 +92,7 @@ public class FileIOTester assertValidFormat("FASTA", uri, fp); } - @Test + @Test(groups = { "Functional" }) public void testStarsInFasta2() throws IOException { String uri; @@ -92,7 +101,7 @@ public class FileIOTester assertValidFormat("FASTA", uri, fp); } - @Test + @Test(groups = { "Functional" }) public void testGzipIo() throws IOException { String uri; @@ -101,7 +110,7 @@ public class FileIOTester assertValidFormat("FASTA", uri, fp); } - @Test + @Test(groups = { "Functional" }) public void testGziplocalFileIO() throws IOException { String filepath; @@ -110,7 +119,7 @@ public class FileIOTester assertValidFormat("FASTA", filepath, fp); } - @Test + @Test(groups = { "Functional" }) public void testNonGzipURLIO() throws IOException { String uri; @@ -119,7 +128,7 @@ public class FileIOTester assertValidFormat("FASTA", uri, fp); } - @Test + @Test(groups = { "Functional" }) public void testNonGziplocalFileIO() throws IOException { String filepath;