JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / util / ParseHtmlBodyAndLinksTest.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.util;
22
23 import static org.testng.AssertJUnit.assertEquals;
24
25 import jalview.gui.JvOptionPane;
26
27 import org.testng.annotations.BeforeClass;
28 import org.testng.annotations.Test;
29
30 public class ParseHtmlBodyAndLinksTest
31 {
32
33   @BeforeClass(alwaysRun = true)
34   public void setUpJvOptionPane()
35   {
36     JvOptionPane.setInteractiveMode(false);
37     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
38   }
39
40   @Test(groups = { "Functional" })
41   public void testParseHtml_noLinks()
42   {
43     ParseHtmlBodyAndLinks testee = new ParseHtmlBodyAndLinks(
44             "<html>something here</html>", false, "\n");
45     assertEquals("something here", testee.getContent());
46     assertEquals("something here", testee.getNonHtmlContent());
47
48     // second argument makes no difference??
49     testee = new ParseHtmlBodyAndLinks("<html>something here</html>", true,
50             "\n");
51     assertEquals("something here", testee.getContent());
52     assertEquals("something here", testee.getNonHtmlContent());
53   }
54
55   @Test(groups = { "Functional" })
56   public void testParseHtml_withLinks()
57   {
58     ParseHtmlBodyAndLinks testee = new ParseHtmlBodyAndLinks(
59             "<html>Please click <a href=\"http://www.nowhere.com\">on this</a> to learn more about <a href=\"http://www.somewhere.com/here\">this</a></html>",
60             false, "\n");
61     assertEquals(
62             "Please click on this%LINK% to learn more about this%LINK%",
63             testee.getContent());
64     assertEquals(
65             "Please click on this%LINK% to learn more about this%LINK%",
66             testee.getNonHtmlContent());
67     assertEquals(2, testee.getLinks().size());
68     assertEquals("on this|http://www.nowhere.com",
69             testee.getLinks().get(0));
70     assertEquals("this|http://www.somewhere.com/here",
71             testee.getLinks().get(1));
72   }
73
74   @Test(groups = { "Functional" })
75   public void testParseHtml_withLinksWithParameters()
76   {
77     ParseHtmlBodyAndLinks testee = new ParseHtmlBodyAndLinks(
78             "<html>Please click <a href=\"http://www.nowhere.com?id=234&taxon=human\">on this</a> to learn more</html>",
79             false, "\n");
80     assertEquals("Please click on this%LINK% to learn more",
81             testee.getContent());
82     assertEquals("Please click on this%LINK% to learn more",
83             testee.getNonHtmlContent());
84     assertEquals(1, testee.getLinks().size());
85     assertEquals("on this|http://www.nowhere.com?id=234&taxon=human",
86             testee.getLinks().get(0));
87   }
88
89   @Test(groups = { "Functional" })
90   public void testParseHtml_withLinksWithEncoding()
91   {
92     ParseHtmlBodyAndLinks testee = new ParseHtmlBodyAndLinks(
93             "<html>Please click <a href=\"http://www.nowhere.com?id=234&amp;taxon=human&amp;id&gt;3&amp;id&lt;10\">on this</a> to learn &amp;&lt;&gt;more</html>",
94             false, "\n");
95     // html encoding in the text body is translated
96     assertEquals("Please click on this%LINK% to learn &<>more",
97             testee.getContent());
98     assertEquals("Please click on this%LINK% to learn &<>more",
99             testee.getNonHtmlContent());
100     assertEquals(1, testee.getLinks().size());
101     // html encoding in the url links is not translated
102     assertEquals(
103             "on this|http://www.nowhere.com?id=234&amp;taxon=human&amp;id&gt;3&amp;id&lt;10",
104             testee.getLinks().get(0));
105   }
106 }