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 static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertNotNull;
25 import static org.testng.AssertJUnit.fail;
27 import jalview.datamodel.AlignmentI;
28 import jalview.datamodel.SequenceI;
29 import jalview.gui.JvOptionPane;
31 import java.io.IOException;
32 import java.util.ArrayList;
33 import java.util.List;
35 import org.testng.annotations.BeforeClass;
36 import org.testng.annotations.DataProvider;
37 import org.testng.annotations.Test;
39 public class FormatAdapterTest
42 @BeforeClass(alwaysRun = true)
43 public void setUpJvOptionPane()
45 JvOptionPane.setInteractiveMode(false);
46 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
50 * Test saving and re-reading in a specified format
54 @Test(groups = { "Functional" }, dataProvider = "formats")
55 public void testRoundTrip(FileFormatI format) throws IOException
59 AlignmentI al = new FormatAdapter().readFile("examples/uniref50.fa",
60 DataSourceType.FILE, FileFormat.Fasta);
63 * 'gap' is the gap character used in the alignment data file here,
64 * not the user preferred gap character
66 char gap = al.getGapCharacter();
69 SequenceI[] seqs = al.getSequencesArray();
70 String formatted = new FormatAdapter().formatSequences(format, al,
73 AlignmentI reloaded = new FormatAdapter().readFile(formatted,
74 DataSourceType.PASTE, format);
75 List<SequenceI> reread = reloaded.getSequences();
76 assertEquals("Wrong number of reloaded sequences", seqs.length,
80 for (SequenceI seq : reread)
82 String sequenceString = seq.getSequenceAsString();
85 * special case: MSF always uses '.' as gap character
87 sequenceString = adjustForGapTreatment(sequenceString, gap, format);
89 String.format("Sequence %d: %s", i, seqs[i].getName()),
90 seqs[i].getSequenceAsString(), sequenceString);
93 } catch (IOException e)
96 .format("Format %s failed with %s", format, e.getMessage()));
101 * Optionally change the gap character in the string to the given character,
102 * depending on the sequence file format
104 * @param sequenceString
105 * a sequence (as written in 'format' format)
107 * the sequence's original gap character
111 String adjustForGapTreatment(String sequenceString, char gap,
114 if (FileFormat.MSF.equals(format))
117 * MSF forces gap character to '.', so change it back
118 * for comparison purposes
120 sequenceString = sequenceString.replace('.', gap);
122 return sequenceString;
126 * Data provider that serves alignment formats that are both readable and
131 @DataProvider(name = "formats")
132 static Object[][] getFormats()
134 List<FileFormatI> both = new ArrayList<FileFormatI>();
135 for (FileFormatI format : FileFormats.getInstance().getFormats())
137 if (format.isReadable() && format.isWritable()
138 && format.isTextFormat())
144 Object[][] formats = new Object[both.size()][];
146 for (FileFormatI format : both)
148 formats[i] = new Object[] { format };
155 * Enable this to isolate testing to a single file format
157 * @throws IOException
159 @Test(groups = { "Functional" }, enabled = false)
160 public void testOneFormatRoundTrip() throws IOException
162 testRoundTrip(FileFormat.Json);