X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fbin%2FCommandsTest.java;h=de6185c40b2e181dffd4616f4beebc3f68ae8c82;hb=25e2a6f59681e1e7d9602a451fbcf3a2b414a49a;hp=4d10c315a8f3f54e874678d5fc85f1244272ef3a;hpb=85240f268c71a9d0dc91dc196a93cb10d29794d3;p=jalview.git diff --git a/test/jalview/bin/CommandsTest.java b/test/jalview/bin/CommandsTest.java index 4d10c31..de6185c 100644 --- a/test/jalview/bin/CommandsTest.java +++ b/test/jalview/bin/CommandsTest.java @@ -2,11 +2,14 @@ package jalview.bin; import java.io.File; import java.io.IOException; +import java.lang.reflect.InvocationTargetException; import java.nio.file.Files; import java.util.Date; import java.util.HashSet; import java.util.Set; +import javax.swing.SwingUtilities; + import org.testng.Assert; import org.testng.annotations.AfterClass; import org.testng.annotations.AfterMethod; @@ -46,9 +49,26 @@ public class CommandsTest } @AfterMethod(alwaysRun = true) - public void tearDown() + public void tearDown() { - Desktop.closeDesktop(); + try + { + // occasionally we are blocked by Jmol redraws + SwingUtilities.invokeAndWait(new Runnable() + { + + @Override + public void run() + { + Desktop.closeDesktop(); + } + }); + } catch (Exception foo) + { + System.err.println("Failed during teardown with exception"); + foo.printStackTrace(); + } + } public static void callJalviewMain(String[] args) @@ -76,7 +96,7 @@ public class CommandsTest } */ - @Test(groups = "Functional", dataProvider = "cmdLines") + @Test(groups = {"Functional","testTask3"}, dataProvider = "cmdLines") public void commandsOpenTest(String cmdLine, boolean cmdArgs, int numFrames, String[] sequences) { @@ -91,13 +111,13 @@ public class CommandsTest Assert.assertEquals(cmds.argsWereParsed(), cmdArgs, "Overall command parse and operation is false"); - Assert.assertEquals(Desktop.getAlignFrames().length, numFrames, + Assert.assertEquals(Desktop.getDesktopAlignFrames().length, numFrames, "Wrong number of AlignFrames"); if (sequences != null) { Set openedSequenceNames = new HashSet<>(); - AlignFrame[] afs = Desktop.getAlignFrames(); + AlignFrame[] afs = Desktop.getDesktopAlignFrames(); for (AlignFrame af : afs) { openedSequenceNames.addAll( @@ -127,7 +147,7 @@ public class CommandsTest @Test( groups = - { "Functional", "testTask1" }, + { "Functional", "testTask3" }, dataProvider = "structureImageOutputFiles") public void structureImageOutputTest(String cmdLine, String[] filenames) throws IOException @@ -305,7 +325,7 @@ public class CommandsTest public static boolean lookForSequenceName(String sequenceName) { - AlignFrame[] afs = Desktop.getAlignFrames(); + AlignFrame[] afs = Desktop.getDesktopAlignFrames(); for (AlignFrame af : afs) { for (String name : af.getViewport().getAlignment().getSequenceNames())