neuropercolation/test/test_cell.py

42 lines
1.2 KiB
Python
Raw Normal View History

import sys
sys.path.append('../src')
2019-02-17 10:11:27 +00:00
from cellular_automaton.cellular_automaton import *
import unittest
2019-02-09 18:06:18 +00:00
class TestState(CellState):
def __init__(self):
super().__init__()
class TestCellState(unittest.TestCase):
def setUp(self):
self.cell = Cell(TestState)
2019-02-16 17:05:26 +00:00
self.neighbors = [TestState() for x in range(5)]
for neighbor in self.neighbors:
neighbor.set_state_of_evolution_step((0, ), 0)
self.cell.neighbor_states = self.neighbors
2019-02-16 17:05:26 +00:00
def cell_and_neighbors_active(self, evolution_step):
self.neighbors.append(self.cell.state)
all_active = True
2019-02-16 17:05:26 +00:00
for state in self.neighbors:
if not state.is_active(evolution_step):
all_active = False
return all_active
def test_evolve_activation(self):
2019-02-16 17:05:26 +00:00
self.cell.evolve_if_ready((lambda a, b: (1,)), 0)
all_active = self.cell_and_neighbors_active(1)
self.assertTrue(all_active)
def test_evolve_activation_on_no_change(self):
2019-02-16 17:05:26 +00:00
self.cell.evolve_if_ready((lambda a, b: (0,)), 0)
all_active = self.cell_and_neighbors_active(1)
self.assertFalse(all_active)
if __name__ == '__main__':
unittest.main()