JAL-4513 reduce wait to invoke fail
[jalview.git] / test / jalview / io / cache / JvCacheableInputBoxTest.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.io.cache;
22
23 import java.util.LinkedHashSet;
24
25 import org.junit.Assert;
26 import org.testng.annotations.BeforeClass;
27 import org.testng.annotations.Test;
28
29 public class JvCacheableInputBoxTest
30 {
31
32   private AppCache appCache;
33
34   private static final String TEST_CACHE_KEY = "CACHE.UNIT_TEST";
35
36   private JvCacheableInputBox<String> cacheBox = new JvCacheableInputBox<>(
37           TEST_CACHE_KEY, 20);
38
39   @BeforeClass(alwaysRun = true)
40   private void setUpCache()
41   {
42     appCache = AppCache.getInstance();
43   }
44
45   @Test(groups = { "Functional" })
46   public void getUserInputTest()
47   {
48     String userInput = cacheBox.getUserInput();
49     Assert.assertEquals("", userInput);
50
51     String testInput = "TestInput";
52     cacheBox.addItem(testInput);
53     cacheBox.setSelectedItem(testInput);
54
55     /*
56     try
57     {
58       SwingUtilities.invokeAndWait(() -> {
59       */
60     try
61     {
62       // This delay is essential to prevent the
63       // assertion below from executing before
64       // swing thread finishes updating the combo-box
65       Thread.sleep(10);
66     } catch (InterruptedException e)
67     {
68       e.printStackTrace();
69     }
70     ; /*
71       });
72       } catch (InvocationTargetException | InterruptedException e)
73       {
74       e.printStackTrace();
75       }
76       */
77     userInput = cacheBox.getUserInput();
78     Assert.assertEquals(testInput, userInput);
79   }
80
81   @Test(groups = { "Functional" })
82   public void updateCacheTest()
83   {
84     String testInput = "TestInput";
85     cacheBox.addItem(testInput);
86     cacheBox.setSelectedItem(testInput);
87     cacheBox.updateCache();
88
89     /*
90     try
91     {
92       SwingUtilities.invokeAndWait(() -> {
93        */
94     try
95     {
96       // This delay is to let
97       // cacheBox.updateCache() finish updating the cache
98       Thread.sleep(1);
99     } catch (InterruptedException e)
100     {
101       e.printStackTrace();
102     }
103     ; /*
104       });
105       } catch (InvocationTargetException | InterruptedException e)
106       {
107       e.printStackTrace();
108       }
109       */
110     LinkedHashSet<String> foundCache = appCache
111             .getAllCachedItemsFor(TEST_CACHE_KEY);
112     Assert.assertTrue(foundCache.contains(testInput));
113   }
114 }