JAL-3949 - refactor logging from jalview.bin.Cache to jalview.bin.Console
[jalview.git] / test / jalview / ws / gui / Jws2ParamView.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.ws.gui;
22
23 import java.util.Locale;
24
25 import jalview.bin.Cache;
26 import jalview.bin.Console;
27 import jalview.gui.JvOptionPane;
28 import jalview.gui.WsJobParameters;
29 import jalview.util.MessageManager;
30 import jalview.ws.jabaws.JalviewJabawsTestUtils;
31 import jalview.ws.jws2.JabaPreset;
32 import jalview.ws.jws2.Jws2Discoverer;
33 import jalview.ws.jws2.jabaws2.Jws2Instance;
34
35 import java.awt.BorderLayout;
36 import java.awt.event.WindowAdapter;
37 import java.awt.event.WindowEvent;
38 import java.util.ArrayList;
39 import java.util.Iterator;
40 import java.util.List;
41
42 import javax.swing.JFrame;
43 import javax.swing.JPanel;
44
45 import org.testng.annotations.BeforeClass;
46 import org.testng.annotations.Test;
47
48 import compbio.metadata.Preset;
49 import compbio.metadata.PresetManager;
50
51 public class Jws2ParamView
52 {
53
54   @BeforeClass(alwaysRun = true)
55   public void setUpJvOptionPane()
56   {
57     JvOptionPane.setInteractiveMode(false);
58     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
59   }
60
61   /**
62    * which services to test
63    */
64   public static List<String> serviceTests = new ArrayList<String>();
65
66   /**
67    * which presets to test for services
68    */
69   public static List<String> presetTests = new ArrayList<String>();
70   static
71   {
72     serviceTests.add("AAConWS".toLowerCase(Locale.ROOT));
73   }
74
75   public static Jws2Discoverer disc = null;
76
77   @BeforeClass(alwaysRun = true)
78   public static void setUpBeforeClass() throws Exception
79   {
80     Cache.loadProperties("test/jalview/io/testProps.jvprops");
81     Console.initLogger();
82     disc = JalviewJabawsTestUtils.getJabawsDiscoverer();
83   }
84
85   /**
86    * This test marked Interactive as it appears to need user action to complete
87    * rather than hang
88    */
89
90   @Test(groups = { "Interactive" }, enabled = true)
91   public void testJws2Gui()
92   {
93     Iterator<String> presetEnum = presetTests.iterator();
94     for (Jws2Instance service : disc.getServices())
95     {
96       if (serviceTests.size() == 0
97               || serviceTests.contains(service.serviceType.toLowerCase(Locale.ROOT)))
98       {
99         List<Preset> prl = null;
100         Preset pr = null;
101         if (presetEnum.hasNext())
102         {
103           PresetManager prman = service.getPresets();
104           if (prman != null)
105           {
106             pr = prman.getPresetByName(presetEnum.next());
107             if (pr == null)
108             {
109               // just grab the last preset.
110               prl = prman.getPresets();
111             }
112           }
113         }
114         else
115         {
116           PresetManager prman = service.getPresets();
117           if (prman != null)
118           {
119             prl = prman.getPresets();
120           }
121         }
122         Iterator<Preset> en = (prl == null) ? null : prl.iterator();
123         while (en != null && en.hasNext())
124         {
125           if (en != null)
126           {
127             if (!en.hasNext())
128             {
129               en = prl.iterator();
130             }
131             pr = en.next();
132           }
133           WsJobParameters pgui = new WsJobParameters(service,
134                   new JabaPreset(service, pr));
135           JFrame jf = new JFrame(MessageManager.formatMessage(
136                   "label.ws_parameters_for",
137                   new String[] { service.getActionText() }));
138           jf.setSize(700, 800);
139           JPanel cont = new JPanel(new BorderLayout());
140           pgui.validate();
141           cont.setPreferredSize(pgui.getPreferredSize());
142           cont.add(pgui, BorderLayout.CENTER);
143           jf.setLayout(new BorderLayout());
144           jf.add(cont, BorderLayout.CENTER);
145           jf.validate();
146
147           final Thread thr = Thread.currentThread();
148
149           /*
150            * This seems to need a user to manually inspect / test / close the
151            * GUI for each service tested. Not standalone JUnit.
152            */
153           jf.addWindowListener(new WindowAdapter()
154           {
155             @Override
156             public void windowClosing(WindowEvent e)
157             {
158               thr.interrupt();
159             }
160           });
161           jf.setVisible(true);
162           boolean inter = false;
163           while (!inter)
164           {
165             try
166             {
167               Thread.sleep(10 * 1000);
168             } catch (InterruptedException e)
169             {
170               inter = true;
171             }
172           }
173           jf.dispose();
174         }
175       }
176     }
177   }
178 }