|
35 | 35 | import warnings
|
36 | 36 | import os
|
37 | 37 | import matplotlib as mpl
|
| 38 | +import pytest |
38 | 39 | #if os.environ.get('DISPLAY', '') == '':
|
39 | 40 | # warnings.warn('No display found. Using template backend (nothing '
|
40 | 41 | # 'will show).')
|
@@ -605,104 +606,6 @@ def test_guess_radius(self):
|
605 | 606 | pymaid.CatmaidNeuron)
|
606 | 607 |
|
607 | 608 |
|
608 |
| -class TestGraphs(unittest.TestCase): |
609 |
| - """Test graph functions.""" |
610 |
| - |
611 |
| - def try_conditions(func): |
612 |
| - """Runs each test under various conditions and asserts that results |
613 |
| - are always the same.""" |
614 |
| - |
615 |
| - def wrapper(self, *args, **kwargs): |
616 |
| - ns.config.use_igraph = False |
617 |
| - res1 = func(self, *args, **kwargs) |
618 |
| - if igraph: |
619 |
| - ns.config.use_igraph = True |
620 |
| - res2 = func(self, *args, **kwargs) |
621 |
| - self.assertEqual(res1, res2) |
622 |
| - return res1 |
623 |
| - return wrapper |
624 |
| - |
625 |
| - def setUp(self): |
626 |
| - self.rm = pymaid.CatmaidInstance(server=config_test.server_url, |
627 |
| - http_user=config_test.http_user, |
628 |
| - http_password=config_test.http_pw, |
629 |
| - api_token=config_test.token, |
630 |
| - make_global=True) |
631 |
| - |
632 |
| - self.nl = pymaid.get_neuron(config_test.test_skids[0:2], |
633 |
| - remote_instance=self.rm) |
634 |
| - |
635 |
| - self.n = self.nl[0] |
636 |
| - self.n.reroot(self.n.soma) |
637 |
| - |
638 |
| - # Get some random leaf node |
639 |
| - self.leaf_id = self.n.nodes[self.n.nodes.type == 'end'].sample( |
640 |
| - 1).iloc[0].node_id |
641 |
| - self.slab_id = self.n.nodes[self.n.nodes.type == 'slab'].sample( |
642 |
| - 1).iloc[0].node_id |
643 |
| - |
644 |
| - @try_conditions |
645 |
| - def test_reroot(self): |
646 |
| - self.assertIsNotNone(self.n.reroot(self.leaf_id, inplace=False)) |
647 |
| - self.assertIsNotNone(self.nl.reroot(self.nl.soma, inplace=False)) |
648 |
| - |
649 |
| - @try_conditions |
650 |
| - def test_distal_to(self): |
651 |
| - self.assertTrue(ns.distal_to(self.n, self.leaf_id, self.n.root)) |
652 |
| - self.assertFalse(ns.distal_to(self.n, self.n.root, self.leaf_id)) |
653 |
| - |
654 |
| - @try_conditions |
655 |
| - def test_distance(self): |
656 |
| - leaf_id = self.n.nodes[self.n.nodes.type == 'end'].iloc[0].node_id |
657 |
| - |
658 |
| - self.assertIsNotNone(ns.dist_between(self.n, |
659 |
| - leaf_id, |
660 |
| - self.n.root)) |
661 |
| - self.assertIsNotNone(ns.dist_between(self.n, |
662 |
| - self.n.root, |
663 |
| - leaf_id)) |
664 |
| - |
665 |
| - @try_conditions |
666 |
| - def test_find_bp(self): |
667 |
| - self.assertIsNotNone(ns.find_main_branchpoint(self.n, |
668 |
| - reroot_soma=False)) |
669 |
| - |
670 |
| - @try_conditions |
671 |
| - def test_split_fragments(self): |
672 |
| - self.assertIsNotNone(ns.split_into_fragments(self.n, |
673 |
| - n=2, |
674 |
| - reroot_soma=False)) |
675 |
| - |
676 |
| - @try_conditions |
677 |
| - def test_longest_neurite(self): |
678 |
| - self.assertIsNotNone(ns.longest_neurite(self.n, |
679 |
| - n=2, |
680 |
| - reroot_soma=False)) |
681 |
| - |
682 |
| - @try_conditions |
683 |
| - def test_cut_neuron(self): |
684 |
| - dist, prox = ns.cut_skeleton(self.n, self.slab_id) |
685 |
| - self.assertNotEqual(dist.nodes.shape, prox.nodes.shape) |
686 |
| - |
687 |
| - # Make sure dist and prox check out |
688 |
| - self.assertTrue(ns.distal_to(self.n, dist.root, prox.root)) |
689 |
| - |
690 |
| - @try_conditions |
691 |
| - def test_subset(self): |
692 |
| - self.assertIsInstance(ns.subset_neuron(self.n, |
693 |
| - self.n.segments[0]), |
694 |
| - pymaid.CatmaidNeuron) |
695 |
| - |
696 |
| - @try_conditions |
697 |
| - def test_node_sorting(self): |
698 |
| - self.assertIsInstance(ns.graph.node_label_sorting(self.n), |
699 |
| - list) |
700 |
| - |
701 |
| - @try_conditions |
702 |
| - def test_geodesic_matrix(self): |
703 |
| - geo = ns.geodesic_matrix(self.n) |
704 |
| - |
705 |
| - |
706 | 609 | class TestConnectivity(unittest.TestCase):
|
707 | 610 | """Test connectivity-related functions."""
|
708 | 611 |
|
|
0 commit comments