JAL-3746 apply copyright to tests
[jalview.git] / test / jalview / fts / threedbeacons / TDBeaconsPanelTest.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.fts.threedbeacons;
22
23 import static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertTrue;
25
26 import jalview.fts.service.pdb.PDBFTSPanel;
27 import jalview.fts.service.threedbeacons.TDBeaconsFTSPanel;
28 import jalview.gui.JvOptionPane;
29
30 import javax.swing.JComboBox;
31 import javax.swing.JInternalFrame;
32
33 import org.testng.annotations.AfterMethod;
34 import org.testng.annotations.BeforeClass;
35 import org.testng.annotations.BeforeMethod;
36 import org.testng.annotations.Test;
37
38 import junit.extensions.PA;
39
40 public class TDBeaconsPanelTest
41 {
42   @BeforeClass(alwaysRun = true)
43   public void setUpJvOptionPane()
44   {
45     JvOptionPane.setInteractiveMode(false);
46     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
47   }
48
49   @BeforeMethod(alwaysRun = true)
50   public void setUp() throws Exception
51   {
52   }
53
54   @AfterMethod(alwaysRun = true)
55   public void tearDown() throws Exception
56   {
57   }
58
59   @Test(groups = { "Functional" })
60   public void populateCmbSearchTargetOptionsTest()
61   {
62     TDBeaconsFTSPanel searchPanel = new TDBeaconsFTSPanel(null);
63     assertTrue(searchPanel.getCmbSearchTarget().getItemCount() > 0);
64     searchPanel.populateCmbSearchTargetOptions();
65   }
66
67   @Test
68   public void getFTSframeTitleTest()
69   {
70     TDBeaconsFTSPanel searchPanel = new TDBeaconsFTSPanel(null);
71     System.out.println(searchPanel.getFTSFrameTitle());
72   }
73
74   @Test
75   public void testgetUNIPROTid()
76   {
77     String outcome = TDBeaconsFTSPanel.decodeSearchTerm("P01308");
78     System.out.println(outcome);
79   }
80   //
81   // @Test
82   // public void queryTest() {
83   // int outcome = TDBeaconsFTSPanel.executeParse("P01308");
84   // //System.out.println("query outcome :" + outcome);
85   // int expected_length = 110;
86   // assertEquals(outcome, expected_length);
87   // }
88 }