JAL-1432 updated copyright notices
[jalview.git] / test / jalview / io / FileIOTester.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
3  * Copyright (C) 2014 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 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  * The Jalview Authors are detailed in the 'AUTHORS' file.
18  */
19 package jalview.io;
20
21 import static org.junit.Assert.*;
22
23 import java.io.File;
24 import java.io.IOException;
25
26 import org.junit.AfterClass;
27 import org.junit.BeforeClass;
28 import org.junit.Test;
29
30 /**
31  * @author jimp
32  *
33  */
34 public class FileIOTester
35 {
36
37   /**
38    * @throws java.lang.Exception
39    */
40   @BeforeClass
41   public static void setUpBeforeClass() throws Exception
42   {
43   }
44
45   /**
46    * @throws java.lang.Exception
47    */
48   @AfterClass
49   public static void tearDownAfterClass() throws Exception
50   {
51   }
52   final static File ALIGN_FILE = new File("test/jalview/io/test_gz_fasta.gz");
53   final static File NOTGZALIGN_FILE = new File("test/jalview/io/test_gz_fasta_notgz.gz");
54
55   private void assertValidFasta(String src, FileParse fp)
56   {
57     assertTrue("Couldn't resolve "+src+" as a valid file",fp.isValid());
58     String type = new IdentifyFile().Identify(fp);
59     assertTrue("Gzipped data from '"+src+"' identified as '"+type+"'",type.equalsIgnoreCase("FASTA"));
60   }
61   @Test
62   public void testGzipIo() throws IOException
63   {     
64     String uri;
65     FileParse fp = new FileParse(uri=ALIGN_FILE.getAbsoluteFile().toURI().toString(),AppletFormatAdapter.URL);
66     assertValidFasta(uri, fp);
67   }
68
69   @Test
70   public void testGziplocalFileIO() throws IOException
71   {
72     String filepath;
73     FileParse fp = new FileParse(filepath=ALIGN_FILE.getAbsoluteFile().toString(), AppletFormatAdapter.FILE);
74     assertValidFasta(filepath, fp);
75   }
76   @Test
77   public void testNonGzipURLIO() throws IOException
78   {
79     String uri;
80     FileParse fp = new FileParse(uri=NOTGZALIGN_FILE.getAbsoluteFile().toURI().toString(),AppletFormatAdapter.URL);
81     assertValidFasta(uri, fp);
82   }
83   @Test
84   public void testNonGziplocalFileIO() throws IOException
85   {
86     String filepath;
87     FileParse fp = new FileParse(filepath=NOTGZALIGN_FILE.getAbsoluteFile().toString(), AppletFormatAdapter.FILE);
88     assertValidFasta(filepath, fp);
89   }
90 }