1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
"""Tests for psw module."""
import doctest
import unittest
import random
import sys
from Bio.Wise import psw
if "requires_wise" in sys.modules:
del sys.modules["requires_wise"]
import requires_wise # noqa: E402
class TestPSW(unittest.TestCase):
def test_Alignment_normal(self):
a = psw.Alignment()
a.append(psw.ColumnUnit(0, 98, "SEQUENCE"))
a.append(psw.ColumnUnit(1, 200, "SEQUENCE"))
a.append(psw.ColumnUnit(0, 98, "INSERT"))
a.append(psw.ColumnUnit(1, 201, "SEQUENCE"))
a.append(psw.ColumnUnit(0, 98, "END"))
a.append(psw.ColumnUnit(1, 201, "END"))
self.assertEqual(str(a), "[SEQUENCE(98, 200), INSERT(98, 201), END(98, 201)]")
def test_Alignment_assertions(self):
a = psw.Alignment()
self.assertRaises(AssertionError, a.append, psw.ColumnUnit(1, 200, "SEQUENCE"))
a.append(psw.ColumnUnit(0, 98, "SEQUENCE"))
self.assertRaises(AssertionError, a.append, psw.ColumnUnit(0, 200, "SEQUENCE"))
a.append(psw.ColumnUnit(1, 200, "SEQUENCE"))
self.assertRaises(AssertionError, a.append, psw.ColumnUnit(1, 200, "SEQUENCE"))
def test_AlignmentColumn_kinds(self):
ac = psw.AlignmentColumn(psw.ColumnUnit(0, random.randint(0, 9999), "SEQUENCE"))
ac.append(psw.ColumnUnit(1, random.randint(0, 9999), "INSERT"))
self.assertEqual(ac.kind, "INSERT")
ac = psw.AlignmentColumn(psw.ColumnUnit(0, random.randint(0, 9999), "INSERT"))
ac.append(psw.ColumnUnit(1, random.randint(0, 9999), "SEQUENCE"))
self.assertEqual(ac.kind, "INSERT")
ac = psw.AlignmentColumn(psw.ColumnUnit(0, random.randint(0, 9999), "SEQUENCE"))
ac.append(psw.ColumnUnit(1, random.randint(0, 9999), "SEQUENCE"))
self.assertEqual(ac.kind, "SEQUENCE")
ac = psw.AlignmentColumn(psw.ColumnUnit(0, random.randint(0, 9999), "SEQUENCE"))
ac.append(psw.ColumnUnit(1, random.randint(0, 9999), "END"))
self.assertEqual(ac.kind, "END")
def test_AlignmentColumn_repr(self):
ac = psw.AlignmentColumn(psw.ColumnUnit(0, 34, "SEQUENCE"))
ac.append(psw.ColumnUnit(1, 55, "END"))
self.assertEqual(repr(ac), "END(34, 55)")
def test_AlignmentColumn_full(self):
ac = psw.AlignmentColumn(psw.ColumnUnit(0, random.randint(0, 9999), "SEQUENCE"))
ac.append(psw.ColumnUnit(1, random.randint(0, 9999), "END"))
self.assertRaises(
psw.AlignmentColumnFullException,
ac.append,
psw.ColumnUnit(1, random.randint(0, 9999), "END"),
)
def test_AlignmentColumn_assertions(self):
self.assertRaises(
AssertionError,
psw.AlignmentColumn,
psw.ColumnUnit(1, random.randint(0, 9999), "SEQUENCE"),
)
ac = psw.AlignmentColumn(psw.ColumnUnit(0, random.randint(0, 9999), "SEQUENCE"))
self.assertRaises(
AssertionError,
ac.append,
psw.ColumnUnit(0, random.randint(0, 9999), "SEQUENCE"),
)
def test_ColumnUnit(self):
self.assertEqual(
repr(psw.ColumnUnit(0, 33, "SEQUENCE")),
"ColumnUnit(unit=0, column=33, kind='SEQUENCE')",
)
self.assertEqual(
repr(psw.ColumnUnit(1, 33, "INSERT")),
"ColumnUnit(unit=1, column=33, kind='INSERT')",
)
self.assertEqual(
repr(psw.ColumnUnit(1, 33, "END")),
"ColumnUnit(unit=1, column=33, kind='END')",
)
PARSED = (
"[SEQUENCE(39, 22), SEQUENCE(40, 23), SEQUENCE(41, 24), "
"SEQUENCE(42, 25), SEQUENCE(43, 26), SEQUENCE(44, 27), END(0, 27)]"
)
def run_tests(argv):
test_suite = testing_suite()
runner = unittest.TextTestRunner(sys.stdout, verbosity=2)
runner.run(test_suite)
def testing_suite():
"""Generate the suite of tests."""
unittest_suite = unittest.TestSuite()
test_loader = unittest.TestLoader()
test_loader.testMethodPrefix = "test_"
tests = [TestPSW]
for test in tests:
cur_suite = test_loader.loadTestsFromTestCase(test)
unittest_suite.addTest(cur_suite)
doctest_suite = doctest.DocTestSuite(psw)
big_suite = unittest.TestSuite((unittest_suite, doctest_suite))
return big_suite
if __name__ == "__main__":
unittest_suite = unittest.TestLoader().loadTestsFromName("test_psw")
doctest_suite = doctest.DocTestSuite(psw)
suite = unittest.TestSuite((unittest_suite, doctest_suite))
runner = unittest.TextTestRunner(sys.stdout, verbosity=2)
runner.run(suite)
|