File: test_dataio_basic_tree.py

package info (click to toggle)
python-dendropy 4.2.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 68,392 kB
  • ctags: 3,947
  • sloc: python: 41,840; xml: 1,400; makefile: 15
file content (56 lines) | stat: -rw-r--r-- 1,756 bytes parent folder | download | duplicates (2)
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
#! /usr/bin/env python

##############################################################################
##  DendroPy Phylogenetic Computing Library.
##
##  Copyright 2010-2015 Jeet Sukumaran and Mark T. Holder.
##  All rights reserved.
##
##  See "LICENSE.rst" for terms and conditions of usage.
##
##  If you use this work or any portion thereof in published work,
##  please cite it as:
##
##     Sukumaran, J. and M. T. Holder. 2010. DendroPy: a Python library
##     for phylogenetic computing. Bioinformatics 26: 1569-1571.
##
##############################################################################

from dendropy.test.support import mockreader
from dendropy import dataio
import dendropy

import unittest

class DendropyDataIOTestMockTreeReader(mockreader.MockReader):

    def __init__(self):
        mockreader.MockReader.__init__(self)

    def process_read_call(self):
        tns = self.taxon_namespace_factory(label="test1")
        tree_list = self.tree_list_factory(label="test1", taxon_namespace=tns)
        tree = tree_list.new_tree()
        product = self.Product(
                taxon_namespaces=[tns],
                tree_lists=[tree_list],
                char_matrices=None)
        return product

class MockTestTreeTypeDerivedFromDendropyTree(dendropy.Tree):
    pass


class TestCustomTreeType(unittest.TestCase):

    @classmethod
    def setUpClass(cls):
        dataio.register_reader("dendropy_test_mock_tree_reader", DendropyDataIOTestMockTreeReader)

    def test_get_from(self):
        tree = MockTestTreeTypeDerivedFromDendropyTree.get_from_string("", "dendropy_test_mock_tree_reader")
        self.assertEqual(type(tree), MockTestTreeTypeDerivedFromDendropyTree)

if __name__ == "__main__":
    unittest.main()