JAL-3253-applet JAL-3423 Windows TestNG
authorhansonr <hansonr@STO24954W.ad.stolaf.edu>
Wed, 28 Aug 2019 04:52:24 +0000 (23:52 -0500)
committerhansonr <hansonr@STO24954W.ad.stolaf.edu>
Wed, 28 Aug 2019 05:05:33 +0000 (00:05 -0500)
mac CTRL test is only for Macs.

test/jalview/gui/PairwiseAlignmentPanelTest.java
test/jalview/util/PlatformTest.java

index 3322ee8..e74849f 100644 (file)
@@ -9,10 +9,10 @@ import jalview.io.FileLoader;
 
 import javax.swing.JTextArea;
 
-import junit.extensions.PA;
-
 import org.testng.annotations.Test;
 
+import junit.extensions.PA;
+
 public class PairwiseAlignmentPanelTest
 {
   @Test(groups = "Functional")
@@ -37,7 +37,8 @@ public class PairwiseAlignmentPanelTest
 
     PairwiseAlignPanel testee = new PairwiseAlignPanel(viewport);
 
-    String text = ((JTextArea) PA.getValue(testee, "textarea")).getText();
+    String text = ((JTextArea) PA.getValue(testee, "textarea")).getText()
+            .replaceAll("\r", "");
     String expected = "Score = 80.0\n" + "Length of alignment = 4\n"
             + "Sequence     FER1_PEA/29-32 (Sequence length = 7)\n"
             + "Sequence Q93XJ9_SOLTU/23-26 (Sequence length = 7)\n\n"
@@ -62,7 +63,8 @@ public class PairwiseAlignmentPanelTest
 
     PairwiseAlignPanel testee = new PairwiseAlignPanel(viewport);
 
-    String text = ((JTextArea) PA.getValue(testee, "textarea")).getText();
+    String text = ((JTextArea) PA.getValue(testee, "textarea")).getText()
+            .replaceAll("\r", "");
     String expected = "Score = 80.0\n" + "Length of alignment = 4\n"
             + "Sequence     FER1_PEA/29-32 (Sequence length = 7)\n"
             + "Sequence Q93XJ9_SOLTU/23-26 (Sequence length = 7)\n\n"
index 5052894..c8616ad 100644 (file)
@@ -53,11 +53,16 @@ public class PlatformTest
   public void testIsControlDown_mac()
   {
     String toolkit = Toolkit.getDefaultToolkit().getClass().getName();
-    if ("sun.awt.X11.XToolkit".equals(toolkit))
+    if (toolkit.endsWith("XToolkit") || toolkit.endsWith("WToolkit"))
     {
       /*
        * this toolkit on the build server fails these tests,
        * because it returns 2, not 4, for getMenuShortcutKeyMask
+       * 
+       * Same for windows, because the Platform test "mac" must match the 
+       * actual platform that is running the test. 
+       * 
+       * 
        */
       return;
     }