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.
21 package jalview.ext.ensembl;
23 import static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertFalse;
26 import jalview.datamodel.DBRefEntry;
27 import jalview.gui.JvOptionPane;
29 import java.io.BufferedReader;
30 import java.io.IOException;
31 import java.io.StringReader;
33 import java.util.List;
35 import org.testng.annotations.BeforeClass;
36 import org.testng.annotations.Test;
38 public class EnsemblXrefTest
41 @BeforeClass(alwaysRun = true)
42 public void setUpJvOptionPane()
44 JvOptionPane.setInteractiveMode(false);
45 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
49 private static final String JSON =
50 "[{\"primary_id\":\"CCDS5863\",\"dbname\":\"CCDS\"}," +
51 "{\"primary_id\":\"P15056\",\"dbname\":\"Uniprot/SWISSPROT\",\"synonyms\":[\"C21\"]}," +
52 "{\"primary_id\":\"GO:0000165\",\"dbname\":\"GO\"}]";
55 @Test(groups = "Functional")
56 public void testGetCrossReferences()
58 String dbName = "ENSEMBL";
59 String dbVers = "0.6.2b1";
60 System.out.println(JSON);
61 EnsemblXref testee = new EnsemblXref("http://rest.ensembl.org", dbName,
65 protected BufferedReader getHttpResponse(URL url, List<String> ids)
68 return new BufferedReader(new StringReader(JSON));
72 // synonyms and GO terms are not returned
73 List<DBRefEntry> dbrefs = testee.getCrossReferences("ABCDE");
74 assertEquals(2, dbrefs.size());
75 assertEquals("CCDS", dbrefs.get(0).getSource());
76 assertEquals("CCDS5863", dbrefs.get(0).getAccessionId());
77 assertFalse(dbrefs.get(0).isPrimaryCandidate());
78 assertEquals(dbName + ":" + dbVers, dbrefs.get(0).getVersion());
79 // Uniprot name should get converted to Jalview canonical form
80 assertEquals("UNIPROT", dbrefs.get(1).getSource());
81 assertEquals("P15056", dbrefs.get(1).getAccessionId());
82 assertEquals(dbName + ":" + dbVers, dbrefs.get(1).getVersion());
83 assertFalse(dbrefs.get(1).isPrimaryCandidate());