| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
package jalview.ws.dbsources; |
| 22 |
|
|
| 23 |
|
import jalview.datamodel.AlignmentI; |
| 24 |
|
import jalview.gui.JvOptionPane; |
| 25 |
|
|
| 26 |
|
import org.testng.Assert; |
| 27 |
|
import org.testng.annotations.BeforeClass; |
| 28 |
|
import org.testng.annotations.Test; |
| 29 |
|
|
| |
|
| 0% |
Uncovered Elements: 20 (20) |
Complexity: 3 |
Complexity Density: 0.18 |
|
| 30 |
|
public class XfamFetcherTest |
| 31 |
|
{ |
| 32 |
|
|
| |
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 33 |
0 |
@BeforeClass(alwaysRun = true)... |
| 34 |
|
public void setUpJvOptionPane() |
| 35 |
|
{ |
| 36 |
0 |
JvOptionPane.setInteractiveMode(false); |
| 37 |
0 |
JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); |
| 38 |
|
} |
| 39 |
|
|
| |
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
4-
|
|
| 40 |
0 |
@Test(groups = { "External" })... |
| 41 |
|
public void testRfamSeed() throws Exception |
| 42 |
|
{ |
| 43 |
|
|
| 44 |
0 |
RfamSeed rfs = new RfamSeed(); |
| 45 |
|
|
| 46 |
0 |
AlignmentI seedrf = rfs.getSequenceRecords(rfs.getTestQuery()); |
| 47 |
0 |
Assert.assertNotNull(seedrf, "Seed Alignment for " + rfs.getTestQuery() |
| 48 |
|
+ " didn't retrieve."); |
| 49 |
0 |
Assert.assertTrue(seedrf.getHeight() > 1, |
| 50 |
|
"Seed Alignment for " + rfs.getTestQuery() |
| 51 |
|
+ " didn't contain more than one sequence."); |
| 52 |
0 |
Assert.assertTrue(seedrf.getProperties().size() > 0, |
| 53 |
|
"Seed Alignment for " + rfs.getTestQuery() |
| 54 |
|
+ " didn't have any properties."); |
| 55 |
|
|
| 56 |
|
} |
| 57 |
|
|
| |
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 1 |
Complexity Density: 0.1 |
4-
|
|
| 58 |
0 |
@Test(groups = { "External" })... |
| 59 |
|
public void testPfamFullAndSeed() throws Exception |
| 60 |
|
{ |
| 61 |
0 |
Pfam pff = new PfamFull(); |
| 62 |
0 |
PfamSeed pfseed = new PfamSeed(); |
| 63 |
|
|
| 64 |
0 |
AlignmentI fullpf = pff.getSequenceRecords(pff.getTestQuery()); |
| 65 |
0 |
Assert.assertNotNull(fullpf, "Full Alignment for " + pff.getTestQuery() |
| 66 |
|
+ " didn't retrieve."); |
| 67 |
0 |
Assert.assertTrue(fullpf.getHeight() > 1, "Full Alignment for " |
| 68 |
|
+ pff.getTestQuery() + " didn't have more than one sequence."); |
| 69 |
0 |
AlignmentI seedpf = pfseed.getSequenceRecords(pff.getTestQuery()); |
| 70 |
0 |
Assert.assertNotNull(seedpf, "Seed Alignment for " + pff.getTestQuery() |
| 71 |
|
+ " didn't retrieve."); |
| 72 |
0 |
Assert.assertTrue(seedpf.getProperties().size() > 0, |
| 73 |
|
"Seed Alignment for " + pfseed.getTestQuery() |
| 74 |
|
+ " didn't have any properties."); |
| 75 |
|
|
| 76 |
0 |
Assert.assertTrue(seedpf.getHeight() < fullpf.getHeight(), |
| 77 |
|
"Expected Full alignment to have more sequences than seed for " |
| 78 |
|
+ pff.getTestQuery()); |
| 79 |
0 |
Assert.assertTrue(fullpf.getProperties().size() > 0, |
| 80 |
|
"Full Alignment for " + pff.getTestQuery() |
| 81 |
|
+ " didn't have any properties."); |
| 82 |
|
|
| 83 |
|
} |
| 84 |
|
} |