JAL-629 sort files from java glob for predictability. reduce maxdepth of walkfiletree
[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(singleThreaded = true)
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   /* --setprop currently disabled
61   @Test(groups = "Functional")
62   public void setpropsTest()
63   {
64     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
88     if (sequences != null)
89     {
90       Set<String> openedSequenceNames = new HashSet<>();
91       AlignFrame[] afs = Desktop.getAlignFrames();
92       for (AlignFrame af : afs)
93       {
94         openedSequenceNames
95                 .addAll(af.getViewport().getAlignment().getSequenceNames());
96       }
97       for (String sequence : sequences)
98       {
99         Assert.assertTrue(openedSequenceNames.contains(sequence),
100                 "Sequence '" + sequence
101                         + "' was not found in opened alignment files: "
102                         + cmdLine + ".\nOpened sequence names are:\n"
103                         + String.join("\n", openedSequenceNames));
104       }
105     }
106
107     Assert.assertFalse(
108             lookForSequenceName("THIS_SEQUENCE_ID_DOESN'T_EXIST"));
109   }
110
111   @Test(groups = "Functional")
112   public void argFilesGlobAndSubstitutionsTest() throws IOException
113   {
114     cleanupArgfilesImages();
115     String cmdLine = "--argfile=" + testfiles + "/dir*/argfile.txt";
116     String[] args = cmdLine.split("\\s+");
117     Jalview.main(args);
118     Commands cmds = Jalview.getInstance().getCommands();
119     File file1 = new File(png1);
120     File file2 = new File(png2);
121     Assert.assertTrue(file1.exists(),
122             "Did not make file " + png1 + " from argfile");
123     Assert.assertTrue(file2.exists(),
124             "Did not make file " + png2 + " from argfile");
125     long size1 = Files.size(file1.toPath());
126     long size2 = Files.size(file2.toPath());
127     Assert.assertTrue(file1.isFile() && size1 > 0);
128     Assert.assertTrue(file2.isFile() && size2 > 0);
129     Assert.assertTrue(size2 > size1); // png2 has three sequences, png1 has 2
130     cleanupArgfilesImages();
131   }
132
133   @DataProvider(name = "cmdLines")
134   public Object[][] cmdLines()
135   {
136     String[] someUniref50Seqs = new String[] { "FER_CAPAA", "FER_CAPAN",
137         "FER1_MAIZE", "FER1_SPIOL", "O80429_MAIZE" };
138     String[] t1 = new String[] { "TEST1" };
139     String[] t2 = new String[] { "TEST2" };
140     String[] t3 = new String[] { "TEST3" };
141     return new Object[][] {
142         { "--open=examples/uniref50.fa", true, 1, someUniref50Seqs },
143         { "--open examples/uniref50.fa", true, 1, someUniref50Seqs },
144         { "--open=examples/uniref50*.fa", true, 1, someUniref50Seqs },
145         // NOTE we cannot use shell expansion in tests, so list all files!
146         { "--open examples/uniref50.fa examples/uniref50_mz.fa", true, 1,
147             someUniref50Seqs },
148         { "--open=[new]examples/uniref50*.fa", true, 2, someUniref50Seqs },
149         { "--opennew=examples/uniref50*.fa", true, 2, someUniref50Seqs },
150         { "examples/uniref50.fa", true, 1, someUniref50Seqs },
151         { "examples/uniref50.fa " + testfiles + "/test1.fa", true, 2,
152             ArrayUtils.concatArrays(someUniref50Seqs, t1) },
153         { "examples/uniref50.fa " + testfiles + "/test1.fa", true, 2, t1 },
154         { "--argfile=" + testfiles + "/argfile0.txt", true, 1,
155             ArrayUtils.concatArrays(t1, t3) },
156         { "--argfile=" + testfiles + "/argfile*.txt", true, 4,
157             ArrayUtils.concatArrays(t1, t2, t3) },
158         { "--argfile=" + testfiles + "/argfile.autocounter", true, 3,
159             ArrayUtils.concatArrays(t1, t2) } };
160   }
161
162   public static boolean lookForSequenceName(String sequenceName)
163   {
164     AlignFrame[] afs = Desktop.getAlignFrames();
165     for (AlignFrame af : afs)
166     {
167       for (String name : af.getViewport().getAlignment().getSequenceNames())
168       {
169         if (sequenceName.equals(name))
170         {
171           return true;
172         }
173       }
174     }
175     return false;
176   }
177
178   public static void cleanupArgfilesImages()
179   {
180     File png1File = new File(png1);
181     File png2File = new File(png2);
182     if (png1File.exists())
183     {
184       png1File.delete();
185     }
186     if (png2File.exists())
187     {
188       png2File.delete();
189     }
190   }
191
192 }