2019-02-02 08:11:48 +00:00
|
|
|
import sys
|
|
|
|
sys.path.append('../src')
|
|
|
|
|
2019-02-09 18:06:18 +00:00
|
|
|
from cellular_automaton import *
|
2019-02-02 08:11:48 +00:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
2019-02-09 18:06:18 +00:00
|
|
|
class TestState(CellState):
|
2019-02-03 16:17:57 +00:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
|
2019-02-02 08:11:48 +00:00
|
|
|
class TestCellState(unittest.TestCase):
|
2019-02-03 16:17:57 +00:00
|
|
|
def setUp(self):
|
2019-02-09 18:06:18 +00:00
|
|
|
self.cell = [TestState(), []]
|
2019-02-03 16:17:57 +00:00
|
|
|
self.neighbours = [TestState() for x in range(5)]
|
|
|
|
for neighbour in self.neighbours:
|
|
|
|
neighbour.set_state_of_iteration((0, ), 0)
|
2019-02-09 18:06:18 +00:00
|
|
|
self.cell[1] = self.neighbours
|
2019-02-03 16:17:57 +00:00
|
|
|
|
|
|
|
def cell_and_neighbours_active(self, iteration):
|
2019-02-09 18:06:18 +00:00
|
|
|
self.neighbours.append(self.cell[0])
|
2019-02-03 16:17:57 +00:00
|
|
|
all_active = True
|
|
|
|
for state in self.neighbours:
|
|
|
|
if not state.is_active(iteration):
|
|
|
|
all_active = False
|
|
|
|
return all_active
|
|
|
|
|
|
|
|
def test_evolve_activation(self):
|
2019-02-09 18:06:18 +00:00
|
|
|
Cell.evolve_if_ready(self.cell, (lambda a, b: (1,)), 0)
|
2019-02-03 16:17:57 +00:00
|
|
|
all_active = self.cell_and_neighbours_active(1)
|
|
|
|
self.assertTrue(all_active)
|
|
|
|
|
|
|
|
def test_evolve_activation_on_no_change(self):
|
2019-02-09 18:06:18 +00:00
|
|
|
Cell.evolve_if_ready(self.cell, (lambda a, b: (0,)), 0)
|
2019-02-03 16:17:57 +00:00
|
|
|
all_active = self.cell_and_neighbours_active(1)
|
|
|
|
self.assertFalse(all_active)
|
2019-02-02 08:11:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|