X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2Fcache%2FJvCacheableInputBoxTest.java;fp=test%2Fjalview%2Fio%2Fcache%2FJvCacheableInputBoxTest.java;h=5f9af2546e1c8ff124c5855066306d1af3e10993;hb=469dc5a0e6d06a2c8a27f27b712ccfdbe3314ee4;hp=9946f4c5242966fe41ff8121bf7a28de4c60ac1c;hpb=f32142e854e6eadb5c85c4379d596369bd7098c5;p=jalview.git diff --git a/test/jalview/io/cache/JvCacheableInputBoxTest.java b/test/jalview/io/cache/JvCacheableInputBoxTest.java index 9946f4c..5f9af25 100644 --- a/test/jalview/io/cache/JvCacheableInputBoxTest.java +++ b/test/jalview/io/cache/JvCacheableInputBoxTest.java @@ -20,8 +20,11 @@ */ package jalview.io.cache; +import java.lang.reflect.InvocationTargetException; import java.util.LinkedHashSet; +import javax.swing.SwingUtilities; + import org.junit.Assert; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; @@ -42,7 +45,7 @@ public class JvCacheableInputBoxTest appCache = AppCache.getInstance(); } - @Test(groups = { "Functional" }) + @Test(groups = { "Functional", "testTask2" }) public void getUserInputTest() { String userInput = cacheBox.getUserInput(); @@ -54,11 +57,19 @@ public class JvCacheableInputBoxTest try { - // This delay is essential to prevent the - // assertion below from executing before - // swing thread finishes updating the combo-box - Thread.sleep(350); - } catch (InterruptedException e) + // fix for JAL-4153 + // This delay is essential to prevent the assertion below from executing + // before swing thread finishes updating the combo-box + SwingUtilities.invokeAndWait(() -> { + try + { + Thread.sleep(1); + } catch (InterruptedException e) + { + e.printStackTrace(); + } + }); + } catch (InvocationTargetException | InterruptedException e) { e.printStackTrace(); } @@ -73,12 +84,21 @@ public class JvCacheableInputBoxTest cacheBox.addItem(testInput); cacheBox.setSelectedItem(testInput); cacheBox.updateCache(); + try { - // This delay is to let - // cacheBox.updateCache() finish updating the cache - Thread.sleep(350); - } catch (InterruptedException e) + // fix for JAL-4153 + // This delay is to let cacheBox.updateCache() finish updating the cache + SwingUtilities.invokeAndWait(() -> { + try + { + Thread.sleep(1); + } catch (InterruptedException e) + { + e.printStackTrace(); + } + }); + } catch (InvocationTargetException | InterruptedException e) { e.printStackTrace(); }