JAL-2154 drop unused hashes
[jalview.git] / test / jalview / io / CrossRef2xmlTests.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.io;
22
23 import static org.testng.AssertJUnit.assertTrue;
24
25 import jalview.analysis.CrossRef;
26 import jalview.api.AlignmentViewPanel;
27 import jalview.datamodel.AlignedCodonFrame;
28 import jalview.datamodel.AlignmentI;
29 import jalview.datamodel.AlignmentTest;
30 import jalview.datamodel.SequenceI;
31 import jalview.gui.AlignFrame;
32 import jalview.gui.CrossRefAction;
33 import jalview.gui.Desktop;
34 import jalview.gui.Jalview2XML;
35
36 import java.io.File;
37 import java.io.IOException;
38 import java.util.ArrayList;
39 import java.util.HashMap;
40 import java.util.List;
41
42 import org.testng.Assert;
43 import org.testng.annotations.Test;
44
45 @Test(singleThreaded = true)
46 public class CrossRef2xmlTests extends Jalview2xmlBase
47 {
48
49   /**
50    * test store and recovery of expanded views
51    * 
52    * @throws Exception
53    */
54   @Test(groups = { "Operational" }, enabled = true)
55   public void testRetrieveAndShowCrossref() throws Exception
56   {
57     // for every set of db queries
58     // retrieve db query
59     // verify presence of expected xrefs
60     // show xrefs - verify expected type of frame is shown for each xref
61     // show xrefs again
62     // - verify original -> xref -> xref(original) recovers frame containing at
63     // least the first retrieved sequence
64     // store
65     // 1. whole project
66     // 2. individual frames
67     // 3. load each one back and verify
68     // . aligned sequences (.toString() )
69     // . xrefs (.toString() )
70     // . codonframes
71     //
72     //
73     HashMap<String, String> dbtoviewBit = new HashMap<String, String>();
74     List<String> keyseq = new ArrayList<String>();
75     HashMap<String, File> savedProjects = new HashMap<String, File>();
76
77     for (String[] did : new String[][] { { "UNIPROT", "P01731" } })
78     {
79       // pass counters - 0 - first pass, 1 means retrieve project rather than
80       // perform action
81       int pass1 = 0, pass2 = 0, pass3 = 0;
82       // each do loop performs two iterations in the first outer loop pass, but
83       // only performs one iteration on the second outer loop
84       // ie. pass 1 = 0 {pass 2= 0 { pass 3 = 0,1 }, pass 2=1 { pass 3 = 0 }}, 1
85       // { pass 2 = 0 { pass 3 = 0 } }
86       do
87       {
88         String first = did[0] + " " + did[1];
89         AlignFrame af = null;
90         if (pass1 == 0)
91         {
92           // retrieve dbref
93
94           keyseq.add(first);
95
96           af = jalview.gui.SequenceFetcher.fetchAndShow(did[0], did[1])
97                   .get(0);
98           assertTrue("Didn't retrieve " + first, af != null);
99
100           // verify references for retrieved data
101           AlignmentTest.assertAlignmentDatasetRefs(af.getViewport()
102                   .getAlignment(), "Pass (" + pass1 + "," + pass2 + ","
103                   + pass3 + "): Fetch " + first + ":");
104
105           // store project to recover on next pass
106           stringify(dbtoviewBit, savedProjects, first, af.alignPanel);
107         }
108         else
109         {
110           Desktop.instance.closeAll_actionPerformed(null);
111           // recover stored project
112           af = new FileLoader(false).LoadFileWaitTillLoaded(savedProjects
113                   .get(first).toString(), FormatAdapter.FILE);
114
115           // verify references for recovered data
116           AlignmentTest.assertAlignmentDatasetRefs(af.getViewport()
117                   .getAlignment(), "Pass (" + pass1 + "," + pass2 + ","
118                   + pass3 + "): Recover " + first + ":");
119
120         }
121
122         boolean dna = af.getViewport().getAlignment().isNucleotide();
123         AlignmentI retral = af.getViewport().getAlignment();
124         AlignmentI dataset = retral.getDataset();
125         SequenceI[] seqs = retral.getSequencesArray();
126         List<String> ptypes = (seqs == null || seqs.length == 0) ? null
127                 : new CrossRef(seqs, dataset)
128                         .findXrefSourcesForSequences(dna);
129
130         for (String db : ptypes)
131         {
132           pass2 = 0;
133           do // second cross ref and recover crossref loop
134           {
135             // counter for splitframe views retrieved via crossref
136             int p = 0;
137             // build next key so we an retrieve all views
138             String nextxref = first + " -> " + db + "{" + p + "}";
139             // perform crossref action, or retrieve stored project
140             List<AlignmentViewPanel> cra_views = new ArrayList<AlignmentViewPanel>();
141             CrossRefAction cra = null;
142             if (pass2 == 0)
143             { // retrieve and show cross-refs in this thread
144               cra = new CrossRefAction(af, seqs, dna, db);
145               cra.run();
146               Assert.assertTrue(cra.getXrefViews().size() > 0,
147                       "No crossrefs retrieved for " + db);
148               cra_views = cra.getXrefViews();
149             }
150             else
151             {
152               Desktop.instance.closeAll_actionPerformed(null);
153               // recover stored project
154               AlignFrame af2 = new FileLoader(false)
155                       .LoadFileWaitTillLoaded(savedProjects.get(nextxref)
156                               .toString(), FormatAdapter.FILE);
157               // gymnastics to recover the alignPanel/Complementary alignPanel
158               if (af2.getViewport().isNucleotide())
159               {
160                 // top view, then bottom
161                 cra_views.add(af2.getViewport().getAlignPanel());
162                 cra_views.add(((jalview.gui.AlignViewport) af2
163                         .getViewport().getCodingComplement())
164                         .getAlignPanel());
165
166               }
167               else
168               {
169                 // bottom view, then top
170                 cra_views.add(((jalview.gui.AlignViewport) af2
171                         .getViewport().getCodingComplement())
172                         .getAlignPanel());
173                 cra_views.add(af2.getViewport().getAlignPanel());
174
175               }
176             }
177             for (AlignmentViewPanel avp : cra_views)
178             {
179               nextxref = first + " -> " + db + "{" + p++ + "}";
180
181               // verify references for this panel
182               AlignmentTest.assertAlignmentDatasetRefs(avp.getAlignment(),
183                       "" + "Pass (" + pass1 + "," + pass2 + "): For "
184                               + nextxref + ":");
185
186               SequenceI[] xrseqs = avp.getAlignment().getSequencesArray();
187
188               stringify(dbtoviewBit, savedProjects, nextxref, avp);
189               keyseq.add(nextxref);
190
191               List<String> xrptypes = (seqs == null || seqs.length == 0) ? null
192                       : new CrossRef(xrseqs, dataset)
193                               .findXrefSourcesForSequences(avp
194                                       .getAlignViewport().isNucleotide());
195               for (String xrefdb : xrptypes)
196               {
197                 pass3 = 0;
198                 do // 3rd cross ref and recover crossref loop
199                 {
200                   List<AlignmentViewPanel> cra_views2 = new ArrayList<AlignmentViewPanel>();
201                   int q = 0;
202                   String nextnextxref = "{" + p + "}" + nextxref + " -> "
203                           + xrefdb + "{" + q + "}";
204
205                   AlignFrame nextaf = Desktop.getAlignFrameFor(avp
206                           .getAlignViewport());
207                   if (pass3 == 0)
208                   {
209
210                     cra = new CrossRefAction(nextaf, xrseqs, avp
211                             .getAlignViewport().isNucleotide(), xrefdb);
212                     cra.run();
213                     Assert.assertTrue(cra.getXrefViews().size() > 0,
214                             "No crossrefs found for '" + nextxref + "' to "
215                                     + xrefdb + " via '" + nextaf.getTitle()
216                                     + "'");
217                     cra_views2 = cra.getXrefViews();
218                   }
219                   else
220                   {
221                     Desktop.instance.closeAll_actionPerformed(null);
222                     // recover stored project
223                     AlignFrame af2 = new FileLoader(false)
224                             .LoadFileWaitTillLoaded(
225                                     savedProjects.get(nextnextxref)
226                                             .toString(), FormatAdapter.FILE);
227                     // gymnastics to recover the alignPanel/Complementary
228                     // alignPanel
229                     if (af2.getViewport().isNucleotide())
230                     {
231                       // top view, then bottom
232                       cra_views2.add(af2.getViewport().getAlignPanel());
233                       cra_views2.add(((jalview.gui.AlignViewport) af2
234                               .getViewport().getCodingComplement())
235                               .getAlignPanel());
236
237                     }
238                     else
239                     {
240                       // bottom view, then top
241                       cra_views2.add(((jalview.gui.AlignViewport) af2
242                               .getViewport().getCodingComplement())
243                               .getAlignPanel());
244                       cra_views2.add(af2.getViewport().getAlignPanel());
245                     }
246                     Assert.assertEquals(cra_views2.size(), 2);
247                     Assert.assertNotNull(cra_views2.get(0));
248                     Assert.assertNotNull(cra_views2.get(1));
249                   }
250
251                   for (AlignmentViewPanel nextavp : cra_views2)
252                   {
253                     nextnextxref = "{" + p + "}" + nextxref + " -> "
254                             + xrefdb + "{" + q++ + "}";
255
256                     // verify references for this panel
257                     AlignmentTest.assertAlignmentDatasetRefs(
258                             nextavp.getAlignment(), "" + "Pass (" + pass1
259                                     + "," + pass2 + "): For "
260                                     + nextnextxref + ":");
261
262                     stringify(dbtoviewBit, savedProjects, nextnextxref,
263                             nextavp);
264                     keyseq.add(nextnextxref);
265                   }
266                 } while (pass3++ < 2 && pass2 < 1);
267               }
268             }
269           } while (pass2++ < 2 && pass1 < 1);
270         }
271       } while (++pass1 < 2);
272     }
273   }
274
275   /**
276    * first time called, record strings derived from alignment and
277    * alignedcodonframes, and save view to a project file. Second time called,
278    * compare strings to existing ones. org.testng.Assert.assertTrue on
279    * stringmatch
280    * 
281    * @param dbtoviewBit
282    *          map between xrefpath and view string
283    * @param savedProjects
284    *          - map from xrefpath to saved project filename (createTempFile)
285    * @param xrefpath
286    *          - xrefpath - unique ID for this context (composed of sequence of
287    *          db-fetch/cross-ref actions preceeding state)
288    * @param avp
289    *          - viewpanel to store (for viewpanels in splitframe, the same
290    *          project should be written for both panels, only one needs
291    *          recovering for comparison on the next stringify call, but each
292    *          viewpanel needs to be called with a distinct xrefpath to ensure
293    *          each one's strings are compared)
294    */
295   private void stringify(HashMap<String, String> dbtoviewBit,
296           HashMap<String, File> savedProjects, String xrefpath,
297           AlignmentViewPanel avp)
298   {
299     if (savedProjects != null)
300     {
301       if (savedProjects.get(xrefpath) == null)
302     {
303       // write a project file for this view. On the second pass, this will be
304       // recovered and cross-references verified
305       try
306       {
307         File prfile = File.createTempFile("crossRefTest", ".jvp");
308         AlignFrame af = Desktop.getAlignFrameFor(avp.getAlignViewport());
309         new Jalview2XML(false).saveAlignment(af, prfile.toString(),
310                 af.getTitle());
311         System.out.println("Written view from '" + xrefpath + "' as '"
312                 + prfile.getAbsolutePath() + "'");
313         savedProjects.put(xrefpath, prfile);
314       } catch (IOException q)
315       {
316         Assert.fail("Unexpected IO Exception", q);
317       }
318       }
319       else
320       {
321         System.out.println("Stringify check on view from '" + xrefpath
322                 + "' [ possibly retrieved from '"
323                 + savedProjects.get(xrefpath).getAbsolutePath() + "' ]");
324
325       }
326     }
327
328     StringBuilder sbr = new StringBuilder();
329     sbr.append(avp.getAlignment().toString());
330     sbr.append("\n");
331     sbr.append("<End of alignment>");
332     sbr.append("\n");
333     sbr.append(avp.getAlignment().getDataset());
334     sbr.append("\n");
335     sbr.append("<End of dataset>");
336     sbr.append("\n");
337     int p = 0;
338     if (avp.getAlignment().getCodonFrames() != null)
339     {
340       for (AlignedCodonFrame ac : avp.getAlignment().getCodonFrames())
341       {
342         sbr.append("<AlignedCodonFrame " + p++ + ">");
343         sbr.append("\n");
344         sbr.append(ac.toString());
345         sbr.append("\n");
346       }
347     }
348     String dbt = dbtoviewBit.get(xrefpath);
349     if (dbt == null)
350     {
351       dbtoviewBit.put(xrefpath, sbr.toString());
352     }
353     else
354     {
355       Assert.assertEquals(sbr.toString(), dbt, "stringify mismatch for "
356               + xrefpath);
357     }
358   }
359 }