Merge branch 'alpha/origin_2022_JAL-3066_Jalview_212_slivka-integration' into spike...
[jalview.git] / test / jalview / gui / JvSwingUtilsTest.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.gui;
22
23 import static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertFalse;
25
26 import javax.swing.JScrollBar;
27
28 import org.testng.annotations.BeforeClass;
29 import org.testng.annotations.Test;
30
31 public class JvSwingUtilsTest
32 {
33
34   @BeforeClass(alwaysRun = true)
35   public void setUpJvOptionPane()
36   {
37     JvOptionPane.setInteractiveMode(false);
38     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
39   }
40
41   @Test(groups = { "Functional" })
42   public void testGetScrollBarProportion()
43   {
44     /*
45      * orientation, value, extent (width), min, max
46      */
47     JScrollBar sb = new JScrollBar(0, 125, 50, 0, 450);
48
49     /*
50      * operating range is 25 - 425 (400 wide) so value 125 is 100/400ths of this
51      * range
52      */
53     assertEquals(0.25f, JvSwingUtils.getScrollBarProportion(sb), 0.001f);
54   }
55
56   @Test(groups = { "Functional" })
57   public void testGetScrollValueForProportion()
58   {
59     /*
60      * orientation, value, extent (width), min, max
61      */
62     JScrollBar sb = new JScrollBar(0, 125, 50, 0, 450);
63
64     /*
65      * operating range is 25 - 425 (400 wide) so value 125 is a quarter of this
66      * range
67      */
68     assertEquals(125, JvSwingUtils.getScrollValueForProportion(sb, 0.25f));
69   }
70
71   /**
72    * Test wrap tooltip where it is less than or equal to 60 characters long - no
73    * wrap should be applied
74    */
75   @Test(groups = { "Functional" })
76   public void testWrapTooltip_shortText()
77   {
78     String tip = "hello world";
79     assertEquals(tip, JvSwingUtils.wrapTooltip(false, tip));
80     assertEquals("<html>" + tip + "</html>",
81             JvSwingUtils.wrapTooltip(true, tip));
82
83     tip = "012345678901234567890123456789012345678901234567890123456789"; // 60
84     assertEquals(tip, JvSwingUtils.wrapTooltip(false, tip));
85     assertEquals("<html>" + tip + "</html>",
86             JvSwingUtils.wrapTooltip(true, tip));
87
88     tip = "0123456789012345678901234567890123456789012345678901234567890"; // 61
89
90     // n/a -- message is too long for "false"
91 //  
92 //    assertFalse(tip.equals(JvSwingUtils.wrapTooltip(false, tip)));
93 //    
94     
95     assertFalse(("<html>" + tip + "</html>").equals(JvSwingUtils
96             .wrapTooltip(true, tip)));
97   }
98
99   /**
100    * Test wrap tooltip where it is more than one line (separated by &lt;br&gt;
101    * tags) of less than or equal to 60 characters long - no wrap should be
102    * applied
103    */
104   @Test(groups = { "Functional" })
105   public void testWrapTooltip_multilineShortText()
106   {
107     String tip = "Now is the winter of our discontent<br>Made glorious summer by this sun of York";
108     String tip2 = "Now is the winter of our discontent<br/>Made glorious summer by this sun of York";
109
110 // BH not applicable in Jalview; "false" is only for when no <br> and only for short j2s2Discover messages
111 //
112 //    String s = JvSwingUtils.wrapTooltip(false, tip);
113 //    System.out.println("<html>" + tip + "</html>");
114 //    assertEquals(tip, s);
115     
116     String s;
117     s = JvSwingUtils.wrapTooltip(true, tip);
118     System.out.println(s);
119     assertEquals("<html>" + tip + "</html>", s);
120     s = JvSwingUtils.wrapTooltip(true, tip2);
121     System.out.println(s);
122     assertEquals("<html>" + tip + "</html>", s);
123   }
124
125   /**
126    * Test wrap tooltip where it is more than 60 characters long - word break and
127    * word wrap styling should be applied
128    */
129   @Test(groups = { "Functional" })
130   public void testWrapTooltip_longText()
131   {
132     // BH should work in Java and JavaScript
133     String tip = "Now is the winter of our discontent made glorious summer by this sun of York";
134     String expected = JvSwingUtils.HTML_PREFIX + tip + "</div></html>";
135     String s = JvSwingUtils.wrapTooltip(true, tip);
136     assertEquals(expected, s);
137  // BH not applicable in Jalview; "false" is only for when no <br> and only for short j2s2Discover messages
138 //    s = JvSwingUtils.wrapTooltip(false, tip);
139 //    assertEquals(expected, s);
140   }
141 }