1
0
mirror of https://github.com/gsi-upm/soil synced 2024-11-14 15:32:29 +00:00
soil/tests/test_agents.py

70 lines
1.9 KiB
Python
Raw Normal View History

2022-07-05 10:08:34 +00:00
from unittest import TestCase
import pytest
from soil import agents, environment
from soil import time as stime
2022-07-05 10:08:34 +00:00
class Dead(agents.FSM):
@agents.default_state
@agents.state
def only(self):
2022-10-13 20:43:16 +00:00
return self.die()
2022-07-05 10:08:34 +00:00
2022-07-05 10:08:34 +00:00
class TestMain(TestCase):
2022-10-17 06:58:51 +00:00
def test_die_returns_infinity(self):
'''The last step of a dead agent should return time.INFINITY'''
d = Dead(unique_id=0, model=environment.Environment())
ret = d.step().abs(0)
print(ret, "next")
2022-10-17 11:58:14 +00:00
assert ret == stime.NEVER
2022-10-17 06:58:51 +00:00
2022-07-05 10:08:34 +00:00
def test_die_raises_exception(self):
2022-10-17 06:58:51 +00:00
'''A dead agent should raise an exception if it is stepped after death'''
2022-07-05 10:08:34 +00:00
d = Dead(unique_id=0, model=environment.Environment())
d.step()
2022-10-17 17:29:39 +00:00
with pytest.raises(stime.DeadAgent):
2022-07-05 10:08:34 +00:00
d.step()
2022-07-06 07:23:18 +00:00
2022-10-17 06:58:51 +00:00
def test_agent_generator(self):
'''
The step function of an agent could be a generator. In that case, the state of the
agent will be resumed after every call to step.
'''
2022-10-18 11:11:01 +00:00
a = 0
2022-10-17 06:58:51 +00:00
class Gen(agents.BaseAgent):
def step(self):
2022-10-18 11:11:01 +00:00
nonlocal a
2022-10-17 06:58:51 +00:00
for i in range(5):
2022-10-18 11:11:01 +00:00
yield
2022-10-17 06:58:51 +00:00
a += 1
e = environment.Environment()
g = Gen(model=e, unique_id=e.next_id())
2022-10-18 11:11:01 +00:00
e.schedule.add(g)
2022-10-17 06:58:51 +00:00
for i in range(5):
2022-10-18 11:11:01 +00:00
e.step()
assert a == i
def test_state_decorator(self):
class MyAgent(agents.FSM):
run = 0
@agents.default_state
@agents.state('original')
def root(self):
self.run += 1
2022-10-18 11:11:01 +00:00
return self.other
@agents.state
def other(self):
self.run += 1
e = environment.Environment()
a = MyAgent(model=e, unique_id=e.next_id())
a.step()
assert a.run == 1
a.step()
assert a.run == 2