Skip to content
Snippets Groups Projects
test_traverse_tree.py 1.12 KiB
Newer Older
  • Learn to ignore specific revisions
  • from b_asic.core_operations import Constant, Addition
    
    from b_asic.signal import Signal
    
    from b_asic.port import InputPort, OutputPort
    
    import pytest
    
    def test_traverse_single_tree(operation):
    
        """Traverse a tree consisting of one operation."""
        constant = Constant(None)
        assert list(constant.traverse()) == [constant]
    
        """Traverse a basic addition tree with two constants."""
        assert len(list(operation_tree.traverse())) == 3
    
    
    def test_traverse_large_tree(large_operation_tree):
    
        """Traverse a larger tree."""
        assert len(list(large_operation_tree.traverse())) == 7
    
    
    def test_traverse_type(large_operation_tree):
    
        traverse = list(large_operation_tree.traverse())
        assert len(list(filter(lambda type_: isinstance(type_, Addition), traverse))) == 3
        assert len(list(filter(lambda type_: isinstance(type_, Constant), traverse))) == 4
    
    Kevin Scott's avatar
    Kevin Scott committed
        add_oper_signal = Signal()
    
        operation_tree._output_ports[0].connect(add_oper_signal)
        operation_tree._input_ports[0].connect(add_oper_signal)
    
        assert len(list(operation_tree.traverse())) == 2