--- /dev/null
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2)
+ * Copyright (C) 2016 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 <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
+package jalview.ws.dbsources;
+
+import jalview.datamodel.AlignmentI;
+
+import org.testng.Assert;
+import org.testng.annotations.Test;
+
+public class XfamFetcherTest
+{
+ @Test(groups = { "network" })
+ public void testRfamSeed() throws Exception
+ {
+ // RfamFull rff = new RfamFull();
+ RfamSeed rfs = new RfamSeed();
+
+ AlignmentI seedrf = rfs.getSequenceRecords(rfs.getTestQuery());
+ Assert.assertNotNull(seedrf, "Seed Alignment for " + rfs.getTestQuery()
+ + " didn't retrieve.");
+ Assert.assertTrue(seedrf.getHeight() > 1,
+ "Seed Alignment for " + rfs.getTestQuery()
+ + " didn't contain more than one sequence.");
+ }
+
+ @Test(groups = { "network" })
+ public void testPfamFullAndSeed() throws Exception
+ {
+ PfamFull pff = new PfamFull();
+ PfamSeed pfseed = new PfamSeed();
+
+ AlignmentI fullpf = pff.getSequenceRecords(pff.getTestQuery());
+ Assert.assertNotNull(fullpf, "Full Alignment for " + pff.getTestQuery()
+ + " didn't retrieve.");
+ Assert.assertTrue(fullpf.getHeight() > 1,
+ "Full Alignment for " + pff.getTestQuery()
+ + " didn't have more than one sequence.");
+ AlignmentI seedpf = pfseed.getSequenceRecords(pff.getTestQuery());
+ Assert.assertNotNull(seedpf, "Seed Alignment for " + pff.getTestQuery()
+ + " didn't retrieve.");
+
+ Assert.assertTrue(seedpf.getHeight() < fullpf.getHeight(),
+ "Expected Full alignment to have more sequences than seed for "
+ + pff.getTestQuery());
+ }
+}