2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
23 import jalview.gui.JvOptionPane;
25 import java.io.BufferedReader;
27 import java.io.IOException;
28 import java.io.InputStreamReader;
29 import java.util.ArrayList;
31 import org.testng.Assert;
32 import org.testng.FileAssert;
33 import org.testng.annotations.BeforeClass;
34 import org.testng.annotations.BeforeTest;
35 import org.testng.annotations.DataProvider;
36 import org.testng.annotations.Test;
38 import io.github.classgraph.ClassGraph;
39 import io.github.classgraph.ScanResult;
41 public class CommandLineOperations
44 @BeforeClass(alwaysRun = true)
45 public void setUpJvOptionPane()
47 JvOptionPane.setInteractiveMode(false);
48 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
51 private static final int TEST_TIMEOUT = 9000; // Note longer timeout needed on
52 // full test run than on
55 private static final int SETUP_TIMEOUT = 9000;
57 private static final int MINFILESIZE_SMALL = 2096;
59 private static final int MINFILESIZE_BIG = 4096;
61 private ArrayList<String> successfulCMDs = new ArrayList<>();
65 * http://stackoverflow.com/questions/808276/how-to-add-a-timeout-value-when
66 * -using-javas-runtime-exec
71 private static class Worker extends Thread
73 private final Process process;
75 private BufferedReader outputReader;
77 private BufferedReader errorReader;
81 private Worker(Process process)
83 this.process = process;
91 exit = process.waitFor();
92 } catch (InterruptedException ignore)
98 public BufferedReader getOutputReader()
103 public void setOutputReader(BufferedReader outputReader)
105 this.outputReader = outputReader;
108 public BufferedReader getErrorReader()
113 public void setErrorReader(BufferedReader errorReader)
115 this.errorReader = errorReader;
119 private static ClassGraph scanner = null;
121 private static String classpath = null;
123 public synchronized static String getClassPath()
127 scanner = new ClassGraph();
128 ScanResult scan = scanner.scan();
129 classpath = scan.getClasspath();
131 while (classpath == null)
136 } catch (InterruptedException x)
143 private Worker jalviewDesktopRunner(boolean withAwt, String cmd,
146 // Note: JAL-3065 - don't include quotes for lib/* because the arguments are
147 // not expanded by the shell
148 String classpath = getClassPath();
149 String _cmd = "java "
150 + (withAwt ? "-Djava.awt.headless=true" : "")
151 + " -classpath " + classpath + " jalview.bin.Jalview ";
152 Process ls2_proc = null;
153 Worker worker = null;
156 ls2_proc = Runtime.getRuntime().exec(_cmd + cmd);
157 } catch (IOException e1)
159 e1.printStackTrace();
161 if (ls2_proc != null)
163 BufferedReader outputReader = new BufferedReader(
164 new InputStreamReader(ls2_proc.getInputStream()));
165 BufferedReader errorReader = new BufferedReader(
166 new InputStreamReader(ls2_proc.getErrorStream()));
167 worker = new Worker(ls2_proc);
171 worker.join(timeout);
172 } catch (InterruptedException e)
174 // e.printStackTrace();
176 worker.setOutputReader(outputReader);
177 worker.setErrorReader(errorReader);
182 @BeforeTest(alwaysRun = true)
183 public void initialize()
185 new CommandLineOperations();
188 @BeforeTest(alwaysRun = true)
189 public void setUpForHeadlessCommandLineInputOperations()
192 String cmds = "nodisplay -open examples/uniref50.fa -sortbytree -props FILE -colour zappo "
193 + "-jabaws http://www.compbio.dundee.ac.uk/jabaws -nosortbytree -dasserver nickname=www.test.com "
194 + "-features examples/testdata/plantfdx.features -annotations examples/testdata/plantfdx.annotations -tree examples/testdata/uniref50_test_tree";
195 Worker worker = jalviewDesktopRunner(true, cmds, SETUP_TIMEOUT);
197 while ((ln = worker.getOutputReader().readLine()) != null)
199 System.out.println(ln);
200 successfulCMDs.add(ln);
204 @BeforeTest(alwaysRun = true)
205 public void setUpForCommandLineInputOperations() throws IOException
207 String cmds = "-open examples/uniref50.fa -noquestionnaire -nousagestats";
208 Worker worker = jalviewDesktopRunner(false, cmds, SETUP_TIMEOUT);
211 while ((ln = worker.getErrorReader().readLine()) != null)
213 System.out.println(ln);
214 successfulCMDs.add(ln);
220 if (worker != null && worker.exit == null)
223 Thread.currentThread().interrupt();
224 worker.process.destroy();
228 @Test(groups = { "Functional" }, dataProvider = "allInputOpearationsData")
229 public void testAllInputOperations(String expectedString,
232 Assert.assertTrue(successfulCMDs.contains(expectedString), failureMsg);
236 groups = { "Functional" },
237 dataProvider = "headlessModeOutputOperationsData")
238 public void testHeadlessModeOutputOperations(String harg, String type,
239 String fileName, boolean withAWT, int expectedMinFileSize,
242 String cmd = harg + type + " " + fileName;
243 // System.out.println(">>>>>>>>>>>>>>>> Command : " + cmd);
244 File file = new File(fileName);
245 Worker worker = jalviewDesktopRunner(withAWT, cmd, timeout);
247 FileAssert.assertFile(file, "Didn't create an output" + type
248 + " file.[" + harg + "]");
249 FileAssert.assertMinLength(new File(fileName), expectedMinFileSize);
250 if (worker != null && worker.exit == null)
253 Thread.currentThread().interrupt();
254 worker.process.destroy();
255 Assert.fail("Jalview did not exit after "
257 + " generation (try running test again to verify - timeout at "
258 + SETUP_TIMEOUT + "ms). ["
261 new File(fileName).delete();
264 @DataProvider(name = "allInputOpearationsData")
265 public Object[][] getHeadlessModeInputParams()
267 return new Object[][] {
268 // headless mode input operations
269 { "CMD [-color zappo] executed successfully!",
270 "Failed command : -color zappo" },
271 { "CMD [-props FILE] executed successfully!",
272 "Failed command : -props File" },
273 { "CMD [-sortbytree] executed successfully!",
274 "Failed command : -sortbytree" },
276 "CMD [-jabaws http://www.compbio.dundee.ac.uk/jabaws] executed successfully!",
277 "Failed command : -jabaws http://www.compbio.dundee.ac.uk/jabaws" },
278 { "CMD [-open examples/uniref50.fa] executed successfully!",
279 "Failed command : -open examples/uniref50.fa" },
280 { "CMD [-nosortbytree] executed successfully!",
281 "Failed command : -nosortbytree" },
282 { "CMD [-dasserver nickname=www.test.com] executed successfully!",
283 "Failed command : -dasserver nickname=www.test.com" },
285 "CMD [-features examples/testdata/plantfdx.features] executed successfully!",
286 "Failed command : -features examples/testdata/plantfdx.features" },
288 "CMD [-annotations examples/testdata/plantfdx.annotations] executed successfully!",
289 "Failed command : -annotations examples/testdata/plantfdx.annotations" },
291 "CMD [-tree examples/testdata/uniref50_test_tree] executed successfully!",
292 "Failed command : -tree examples/testdata/uniref50_test_tree" },
293 // non headless mode input operations
294 { "CMD [-nousagestats] executed successfully!",
295 "Failed command : -nousagestats" },
296 { "CMD [-noquestionnaire] executed successfully!",
297 "Failed command : -noquestionnaire nickname=www.test.com" } };
301 @DataProvider(name = "headlessModeOutputOperationsData")
302 public static Object[][] getHeadlessModeOutputParams()
304 return new Object[][] {
305 { "nodisplay -open examples/uniref50.fa", " -eps",
306 "test_uniref50_out.eps", true, MINFILESIZE_BIG, TEST_TIMEOUT },
307 { "nodisplay -open examples/uniref50.fa", " -eps",
308 "test_uniref50_out.eps", false, MINFILESIZE_BIG, TEST_TIMEOUT },
309 { "nogui -open examples/uniref50.fa", " -eps",
310 "test_uniref50_out.eps", true, MINFILESIZE_BIG, TEST_TIMEOUT },
311 { "nogui -open examples/uniref50.fa", " -eps",
312 "test_uniref50_out.eps", false, MINFILESIZE_BIG, TEST_TIMEOUT },
313 { "headless -open examples/uniref50.fa", " -eps",
314 "test_uniref50_out.eps", true, MINFILESIZE_BIG, TEST_TIMEOUT },
315 { "headless -open examples/uniref50.fa", " -svg",
316 "test_uniref50_out.svg", false, MINFILESIZE_BIG, TEST_TIMEOUT },
317 { "headless -open examples/uniref50.fa", " -png",
318 "test_uniref50_out.png", true, MINFILESIZE_BIG, TEST_TIMEOUT },
319 { "headless -open examples/uniref50.fa", " -html",
320 "test_uniref50_out.html", true, MINFILESIZE_BIG, TEST_TIMEOUT },
321 { "headless -open examples/uniref50.fa", " -fasta",
322 "test_uniref50_out.mfa", true, MINFILESIZE_SMALL, TEST_TIMEOUT },
323 { "headless -open examples/uniref50.fa", " -clustal",
324 "test_uniref50_out.aln", true, MINFILESIZE_SMALL, TEST_TIMEOUT },
325 { "headless -open examples/uniref50.fa", " -msf",
326 "test_uniref50_out.msf", true, MINFILESIZE_SMALL, TEST_TIMEOUT },
327 { "headless -open examples/uniref50.fa", " -pileup",
328 "test_uniref50_out.aln", true, MINFILESIZE_SMALL, TEST_TIMEOUT },
329 { "headless -open examples/uniref50.fa", " -pir",
330 "test_uniref50_out.pir", true, MINFILESIZE_SMALL, TEST_TIMEOUT },
331 { "headless -open examples/uniref50.fa", " -pfam",
332 "test_uniref50_out.pfam", true, MINFILESIZE_SMALL, TEST_TIMEOUT },
333 { "headless -open examples/uniref50.fa", " -blc",
334 "test_uniref50_out.blc", true, MINFILESIZE_SMALL, TEST_TIMEOUT },
335 { "headless -open examples/uniref50.fa", " -jalview",
336 "test_uniref50_out.jvp", true, MINFILESIZE_SMALL, TEST_TIMEOUT }, };