JAL-629 Change --open to --append and --opennew to --open. Make --open(new) part...
[jalview.git] / test / jalview / bin / CommandsTest.java
1 package jalview.bin;
2
3 import java.io.File;
4 import java.io.IOException;
5 import java.nio.file.Files;
6 import java.util.Date;
7 import java.util.HashSet;
8 import java.util.Set;
9
10 import org.testng.Assert;
11 import org.testng.annotations.AfterClass;
12 import org.testng.annotations.AfterMethod;
13 import org.testng.annotations.BeforeClass;
14 import org.testng.annotations.DataProvider;
15 import org.testng.annotations.Test;
16
17 import jalview.gui.AlignFrame;
18 import jalview.gui.Desktop;
19 import jalview.gui.JvOptionPane;
20 import jalview.util.ArrayUtils;
21
22 @Test
23 public class CommandsTest
24 {
25   private static final String testfiles = "test/jalview/bin/argparser/testfiles";
26
27   private static final String png1 = testfiles + "/dir1/test1.png";
28
29   private static final String png2 = testfiles + "/dir2/test1.png";
30
31   @BeforeClass(alwaysRun = true)
32   public static void setUpBeforeClass() throws Exception
33   {
34     Cache.loadProperties("test/jalview/gui/quitProps.jvprops");
35     Date oneHourFromNow = new Date(
36             System.currentTimeMillis() + 3600 * 1000);
37     Cache.setDateProperty("JALVIEW_NEWS_RSS_LASTMODIFIED", oneHourFromNow);
38   }
39
40   @AfterClass(alwaysRun = true)
41   public static void resetProps()
42   {
43     Cache.loadProperties("test/jalview/testProps.jvprops");
44   }
45
46   @BeforeClass(alwaysRun = true)
47   public void setUpJvOptionPane()
48   {
49     JvOptionPane.setInteractiveMode(false);
50     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
51   }
52
53   @AfterMethod(alwaysRun = true)
54   public void tearDown()
55   {
56     if (Desktop.instance != null)
57       Desktop.instance.closeAll_actionPerformed(null);
58   }
59
60   /* --setprops is currently disabled so this test won't work
61   @Test(groups = "Functional")
62   public void setpropsTest()
63   {
64     final String MOSTLY_HARMLESS = "MOSTLY_HARMLESS";
65     String cmdLine = "--setprop=" + MOSTLY_HARMLESS + "=Earth";
66     String[] args = cmdLine.split("\\s+");
67     Jalview.main(args);
68     Assert.assertEquals(Cache.getDefault(MOSTLY_HARMLESS, "Magrathea"),
69             "Earth");
70   }
71   */
72
73   @Test(groups = "Functional", dataProvider = "cmdLines")
74   public void commandsOpenTest(String cmdLine, boolean cmdArgs,
75           int numFrames, String[] sequences)
76   {
77     String[] args = cmdLine.split("\\s+");
78     Jalview.main(args);
79     Commands cmds = Jalview.getInstance().getCommands();
80     Assert.assertNotNull(cmds);
81     Assert.assertEquals(cmds.commandArgsProvided(), cmdArgs,
82             "Commands were not provided in the args");
83     Assert.assertEquals(cmds.argsWereParsed(), cmdArgs,
84             "Overall command parse and operation is false");
85
86     Assert.assertEquals(Desktop.getAlignFrames().length, numFrames,
87             "Wrong number of AlignFrames");
88
89     if (sequences != null)
90     {
91       Set<String> openedSequenceNames = new HashSet<>();
92       AlignFrame[] afs = Desktop.getAlignFrames();
93       for (AlignFrame af : afs)
94       {
95         openedSequenceNames
96                 .addAll(af.getViewport().getAlignment().getSequenceNames());
97       }
98       for (String sequence : sequences)
99       {
100         Assert.assertTrue(openedSequenceNames.contains(sequence),
101                 "Sequence '" + sequence
102                         + "' was not found in opened alignment files: "
103                         + cmdLine + ".\nOpened sequence names are:\n"
104                         + String.join("\n", openedSequenceNames));
105       }
106     }
107
108     Assert.assertFalse(
109             lookForSequenceName("THIS_SEQUENCE_ID_DOESN'T_EXIST"));
110   }
111
112   @Test(groups = "Functional", dataProvider = "argfileOutputFiles")
113   public void argFilesGlobAndSubstitutionsTest(String cmdLine,
114           String[] filenames) throws IOException
115   {
116     cleanupFiles(filenames);
117     String[] args = cmdLine.split("\\s+");
118     Jalview.main(args);
119     Commands cmds = Jalview.getInstance().getCommands();
120     Assert.assertNotNull(cmds);
121     File lastFile = null;
122     for (String filename : filenames)
123     {
124       File file = new File(filename);
125       Assert.assertTrue(file.exists(), "File '" + filename
126               + "' was not created by '" + cmdLine + "'");
127       Assert.assertTrue(file.isFile(), "File '" + filename
128               + "' is not a file from '" + cmdLine + "'");
129       Assert.assertTrue(Files.size(file.toPath()) > 0, "File '" + filename
130               + "' has no content from '" + cmdLine + "'");
131       // make sure the successive output files get bigger!
132       if (lastFile != null)
133         Assert.assertTrue(
134                 Files.size(file.toPath()) > Files.size(lastFile.toPath()));
135     }
136     cleanupFiles(filenames);
137     tearDown();
138   }
139
140   @DataProvider(name = "argfileOutputFiles")
141   public Object[][] argfileOutputFiles()
142   {
143     return new Object[][] {
144         { "--argfile=" + testfiles + "/**/*.txt", new String[]
145         { testfiles + "/dir1/test1.png", testfiles + "/dir2/test1.png",
146             testfiles + "/dir3/subdir/test0.png" } },
147         { "--argfile=" + testfiles + "/**/argfile.txt", new String[]
148         { testfiles + "/dir1/test1.png", testfiles + "/dir2/test1.png" } },
149         { "--argfile=" + testfiles + "/dir*/argfile.txt", new String[]
150         { testfiles + "/dir1/test1.png", testfiles + "/dir2/test1.png" } },
151         { "--initsubstitutions --append examples/uniref50.fa --image "
152                 + testfiles + "/{basename}.png",
153             new String[]
154             { testfiles + "/uniref50.png" } },
155         { "--append examples/uniref50.fa --image " + testfiles
156                 + "/{basename}.png",
157             new String[]
158             { testfiles + "/{basename}.png" } } };
159   }
160
161   @DataProvider(name = "cmdLines")
162   public Object[][] cmdLines()
163   {
164     String[] someUniref50Seqs = new String[] { "FER_CAPAA", "FER_CAPAN",
165         "FER1_MAIZE", "FER1_SPIOL", "O80429_MAIZE" };
166     String[] t1 = new String[] { "TEST1" };
167     String[] t2 = new String[] { "TEST2" };
168     String[] t3 = new String[] { "TEST3" };
169     return new Object[][] {
170         /*
171         */
172         { "--append=examples/uniref50.fa", true, 1, someUniref50Seqs },
173         { "--append examples/uniref50.fa", true, 1, someUniref50Seqs },
174         { "--append=examples/uniref50*.fa", true, 1, someUniref50Seqs },
175         // NOTE we cannot use shell expansion in tests, so list all files!
176         { "--append examples/uniref50.fa examples/uniref50_mz.fa", true, 1,
177             someUniref50Seqs },
178         { "--append=[new]examples/uniref50*.fa", true, 2,
179             someUniref50Seqs },
180         { "--open=examples/uniref50*.fa", true, 2, someUniref50Seqs },
181         { "examples/uniref50.fa", true, 1, someUniref50Seqs },
182         { "examples/uniref50.fa " + testfiles + "/test1.fa", true, 2,
183             ArrayUtils.concatArrays(someUniref50Seqs, t1) },
184         { "examples/uniref50.fa " + testfiles + "/test1.fa", true, 2, t1 },
185         { "--argfile=" + testfiles + "/argfile0.txt", true, 1,
186             ArrayUtils.concatArrays(t1, t3) },
187         { "--argfile=" + testfiles + "/argfile*.txt", true, 5,
188             ArrayUtils.concatArrays(t1, t2, t3) },
189         { "--argfile=" + testfiles + "/argfile.autocounter", true, 3,
190             ArrayUtils.concatArrays(t1, t2) } };
191
192   }
193
194   public static boolean lookForSequenceName(String sequenceName)
195   {
196     AlignFrame[] afs = Desktop.getAlignFrames();
197     for (AlignFrame af : afs)
198     {
199       for (String name : af.getViewport().getAlignment().getSequenceNames())
200       {
201         if (sequenceName.equals(name))
202         {
203           return true;
204         }
205       }
206     }
207     return false;
208   }
209
210   public static void cleanupFiles(String[] filenames)
211   {
212     for (String filename : filenames)
213     {
214       File file = new File(filename);
215       if (file.exists())
216       {
217         file.delete();
218       }
219     }
220   }
221
222 }