/*
* Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
* Copyright (C) $$Year-Rel$$ The Jalview Authors
*
* This file is part of Jalview.
*
* Jalview is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Jalview is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Jalview. If not, see .
* The Jalview Authors are detailed in the 'AUTHORS' file.
*/
package jalview.ws;
import jalview.analysis.CrossRef;
import jalview.datamodel.Alignment;
import jalview.datamodel.AlignmentI;
import jalview.datamodel.DBRefSource;
import jalview.datamodel.SequenceI;
import jalview.gui.JvOptionPane;
import jalview.ws.seqfetcher.ASequenceFetcher;
import jalview.ws.seqfetcher.DbSourceProxy;
import java.util.Enumeration;
import java.util.List;
import java.util.Vector;
import org.testng.annotations.BeforeClass;
public class SequenceFetcherTest
{
@BeforeClass(alwaysRun = true)
public void setUpJvOptionPane()
{
JvOptionPane.setInteractiveMode(false);
JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
}
/**
* simple run method to test dbsources.
*
* @param argv
*/
public static void main(String[] argv)
{
// TODO: extracted from SequenceFetcher - convert to proper unit test with
// assertions
String usage = "SequenceFetcher.main [-nodas] [ []]\n"
+ "With no arguments, all DbSources will be queried with their test Accession number.\n"
+ "With one argument, the argument will be resolved to one or more db sources and each will be queried with their test accession only.\n"
+ "If given two arguments, SequenceFetcher will try to find the DbFetcher corresponding to and retrieve from it.\n"
+ "The -nodas option will exclude DAS sources from the database fetchers Jalview will try to use.";
boolean withDas = true;
if (argv != null && argv.length > 0
&& argv[0].toLowerCase().startsWith("-nodas"))
{
withDas = false;
String targs[] = new String[argv.length - 1];
System.arraycopy(argv, 1, targs, 0, targs.length);
argv = targs;
}
if (argv != null && argv.length > 0)
{
List sps = new SequenceFetcher(withDas)
.getSourceProxy(argv[0]);
if (sps != null)
{
for (DbSourceProxy sp : sps)
{
AlignmentI al = null;
try
{
testRetrieval(argv[0], sp,
argv.length > 1 ? argv[1] : sp.getTestQuery());
} catch (Exception e)
{
e.printStackTrace();
System.err.println("Error when retrieving "
+ (argv.length > 1 ? argv[1] : sp.getTestQuery())
+ " from " + argv[0] + "\nUsage: " + usage);
}
}
return;
}
else
{
System.err.println("Can't resolve " + argv[0]
+ " as a database name. Allowed values are :\n"
+ new SequenceFetcher().getSupportedDb());
}
System.out.println(usage);
return;
}
ASequenceFetcher sfetcher = new SequenceFetcher(withDas);
String[] dbSources = sfetcher.getSupportedDb();
for (int dbsource = 0; dbsource < dbSources.length; dbsource++)
{
String db = dbSources[dbsource];
// skip me
if (db.equals(DBRefSource.PDB))
{
continue;
}
for (DbSourceProxy sp : sfetcher.getSourceProxy(db))
{
testRetrieval(db, sp, sp.getTestQuery());
}
}
}
private static void testRetrieval(String db, DbSourceProxy sp,
String testQuery)
{
AlignmentI ds = null;
Vector