JAL-3038 unit test updates for JalviewJS workaround hack
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Fri, 17 Aug 2018 10:38:33 +0000 (11:38 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Fri, 17 Aug 2018 10:38:33 +0000 (11:38 +0100)
src/jalview/io/cache/JvCacheableInputBox.java
test/jalview/fts/service/pdb/PDBFTSPanelTest.java
test/jalview/io/cache/JvCacheableInputBoxTest.java

index 5e79393..d2ad8de 100644 (file)
@@ -379,4 +379,12 @@ public class JvCacheableInputBox<E>
     }
   }
 
+  public void addItem(String item)
+  {
+    if (!Jalview.isJS())
+    {
+      comboBox.addItem(item);
+    }
+  }
+
 }
index 9912e44..224a712 100644 (file)
@@ -33,6 +33,8 @@ import org.testng.annotations.BeforeClass;
 import org.testng.annotations.BeforeMethod;
 import org.testng.annotations.Test;
 
+import junit.extensions.PA;
+
 public class PDBFTSPanelTest
 {
 
@@ -103,12 +105,13 @@ public class PDBFTSPanelTest
   {
     PDBFTSPanel searchPanel = new PDBFTSPanel(null);
     JInternalFrame mainFrame = searchPanel.getMainFrame();
-    JComboBox<String> txt_search = searchPanel.getTxtSearch();
+//    JComboBox<String> txt_search = PA.gsearchPanel.getTxtSearch();
 
     assertTrue(mainFrame.getTitle().length() == 20);
     assertTrue(mainFrame.getTitle()
             .equalsIgnoreCase("PDB Sequence Fetcher"));
-    txt_search.setSelectedItem("ABC");
+    PA.invokeMethod(PA.getValue(searchPanel, "txt_search"), "setSelectedItem(java.lang.String)", "ABC");
+  //  txt_search.setSelectedItem("ABC");
     try
     {
       // wait for web-service to handle response
index dfd7973..6c79f31 100644 (file)
@@ -34,7 +34,7 @@ public class JvCacheableInputBoxTest
 
     try
     {
-      // This 1ms delay is essential to prevent the
+      // This delay is essential to prevent the
       // assertion below from executing before
       // swing thread finishes updating the combo-box
       Thread.sleep(100);