2017-06-20 15:45:43 +00:00
|
|
|
from unittest import TestCase
|
|
|
|
|
|
|
|
import os
|
2018-12-09 15:38:18 +00:00
|
|
|
import pickle
|
2018-02-16 17:04:43 +00:00
|
|
|
import networkx as nx
|
2017-06-20 15:45:43 +00:00
|
|
|
from functools import partial
|
|
|
|
|
|
|
|
from os.path import join
|
2023-04-14 17:41:24 +00:00
|
|
|
from soil import simulation, Environment, agents, network, serialization, utils, config, from_file
|
2021-10-15 11:36:39 +00:00
|
|
|
from soil.time import Delta
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2023-04-14 17:41:24 +00:00
|
|
|
from mesa import Agent as MesaAgent
|
|
|
|
|
2017-06-20 15:45:43 +00:00
|
|
|
ROOT = os.path.abspath(os.path.dirname(__file__))
|
2022-10-16 15:54:03 +00:00
|
|
|
EXAMPLES = join(ROOT, "..", "examples")
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2018-12-08 17:53:06 +00:00
|
|
|
|
2022-09-13 16:16:31 +00:00
|
|
|
class CustomAgent(agents.FSM, agents.NetworkAgent):
|
2019-05-16 17:59:46 +00:00
|
|
|
@agents.default_state
|
|
|
|
@agents.state
|
|
|
|
def normal(self):
|
2022-10-16 15:54:03 +00:00
|
|
|
self.neighbors = self.count_agents(state_id="normal", limit_neighbors=True)
|
|
|
|
|
2019-05-16 17:59:46 +00:00
|
|
|
@agents.state
|
|
|
|
def unreachable(self):
|
|
|
|
return
|
2018-12-08 17:53:06 +00:00
|
|
|
|
2022-10-13 20:43:16 +00:00
|
|
|
|
2017-06-20 15:45:43 +00:00
|
|
|
class TestMain(TestCase):
|
|
|
|
def test_empty_simulation(self):
|
|
|
|
"""A simulation with a base behaviour should do nothing"""
|
|
|
|
config = {
|
2022-10-16 15:54:03 +00:00
|
|
|
"model_params": {
|
2023-04-09 02:19:24 +00:00
|
|
|
"topology": join(ROOT, "test.gexf"),
|
2023-04-14 17:41:24 +00:00
|
|
|
"agent_class": MesaAgent,
|
|
|
|
},
|
|
|
|
"max_time": 1
|
2017-06-20 15:45:43 +00:00
|
|
|
}
|
2022-10-06 13:49:10 +00:00
|
|
|
s = simulation.from_config(config)
|
2023-04-14 17:41:24 +00:00
|
|
|
s.run_simulation(dump=False)
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2022-05-10 14:29:06 +00:00
|
|
|
def test_network_agent(self):
|
2017-06-20 15:45:43 +00:00
|
|
|
"""
|
|
|
|
The initial states should be applied to the agent and the
|
|
|
|
agent should be able to update its state."""
|
|
|
|
config = {
|
2022-10-16 15:54:03 +00:00
|
|
|
"name": "CounterAgent",
|
|
|
|
"num_trials": 1,
|
|
|
|
"max_time": 2,
|
|
|
|
"model_params": {
|
|
|
|
"network_params": {
|
|
|
|
"generator": nx.complete_graph,
|
|
|
|
"n": 2,
|
2022-10-06 13:49:10 +00:00
|
|
|
},
|
2022-10-16 15:54:03 +00:00
|
|
|
"agent_class": "CounterModel",
|
|
|
|
"states": {
|
|
|
|
0: {"times": 10},
|
|
|
|
1: {"times": 20},
|
2022-10-06 13:49:10 +00:00
|
|
|
},
|
2022-10-16 15:54:03 +00:00
|
|
|
},
|
2017-06-20 15:45:43 +00:00
|
|
|
}
|
2022-10-06 13:49:10 +00:00
|
|
|
s = simulation.from_config(config)
|
2022-09-13 16:16:31 +00:00
|
|
|
|
2022-05-10 14:29:06 +00:00
|
|
|
def test_counter_agent(self):
|
2017-06-20 15:45:43 +00:00
|
|
|
"""
|
2022-05-10 14:29:06 +00:00
|
|
|
The initial states should be applied to the agent and the
|
|
|
|
agent should be able to update its state."""
|
2023-04-09 02:19:24 +00:00
|
|
|
env = Environment()
|
|
|
|
env.add_agent(agents.Ticker, times=10)
|
|
|
|
env.add_agent(agents.Ticker, times=20)
|
|
|
|
|
|
|
|
assert isinstance(env.agents[0], agents.Ticker)
|
2022-10-16 15:54:03 +00:00
|
|
|
assert env.agents[0]["times"] == 10
|
2023-04-09 02:19:24 +00:00
|
|
|
assert env.agents[1]["times"] == 20
|
2022-09-13 16:16:31 +00:00
|
|
|
env.step()
|
2022-10-16 15:54:03 +00:00
|
|
|
assert env.agents[0]["times"] == 11
|
|
|
|
assert env.agents[1]["times"] == 21
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2022-10-06 13:49:10 +00:00
|
|
|
def test_init_and_count_agents(self):
|
|
|
|
"""Agents should be properly initialized and counting should filter them properly"""
|
2023-04-09 02:19:24 +00:00
|
|
|
env = Environment(topology=join(ROOT, "test.gexf"))
|
|
|
|
env.populate_network([CustomAgent.w(weight=1), CustomAgent.w(weight=3)])
|
2022-10-06 13:49:10 +00:00
|
|
|
assert env.agents[0].weight == 1
|
|
|
|
assert env.count_agents() == 2
|
|
|
|
assert env.count_agents(weight=1) == 1
|
|
|
|
assert env.count_agents(weight=3) == 1
|
|
|
|
assert env.count_agents(agent_class=CustomAgent) == 2
|
|
|
|
|
2017-06-20 15:45:43 +00:00
|
|
|
def test_torvalds_example(self):
|
|
|
|
"""A complete example from a documentation should work."""
|
2023-04-09 02:19:24 +00:00
|
|
|
owd = os.getcwd()
|
|
|
|
pyfile = join(EXAMPLES, "torvalds_sim.py")
|
|
|
|
try:
|
|
|
|
os.chdir(os.path.dirname(pyfile))
|
|
|
|
s = simulation.from_py(pyfile)
|
2023-04-14 17:41:24 +00:00
|
|
|
env = s.run_simulation(dump=False)[0]
|
2023-04-09 02:19:24 +00:00
|
|
|
for a in env.network_agents:
|
|
|
|
skill_level = a["skill_level"]
|
|
|
|
if a.node_id == "Torvalds":
|
|
|
|
assert skill_level == "God"
|
|
|
|
assert a["total"] == 3
|
|
|
|
assert a["neighbors"] == 2
|
|
|
|
elif a.node_id == "balkian":
|
|
|
|
assert skill_level == "developer"
|
|
|
|
assert a["total"] == 3
|
|
|
|
assert a["neighbors"] == 1
|
|
|
|
else:
|
|
|
|
assert skill_level == "beginner"
|
|
|
|
assert a["total"] == 3
|
|
|
|
assert a["neighbors"] == 1
|
|
|
|
finally:
|
|
|
|
os.chdir(owd)
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2018-12-04 08:54:29 +00:00
|
|
|
def test_serialize_class(self):
|
2022-05-10 14:29:06 +00:00
|
|
|
ser, name = serialization.serialize(agents.BaseAgent, known_modules=[])
|
2022-10-16 15:54:03 +00:00
|
|
|
assert name == "soil.agents.BaseAgent"
|
2018-12-04 08:54:29 +00:00
|
|
|
assert ser == agents.BaseAgent
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2022-10-16 15:54:03 +00:00
|
|
|
ser, name = serialization.serialize(
|
|
|
|
agents.BaseAgent,
|
|
|
|
known_modules=[
|
|
|
|
"soil",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
assert name == "BaseAgent"
|
2022-05-10 14:29:06 +00:00
|
|
|
assert ser == agents.BaseAgent
|
|
|
|
|
2019-04-26 17:22:45 +00:00
|
|
|
ser, name = serialization.serialize(CustomAgent)
|
2022-10-16 15:54:03 +00:00
|
|
|
assert name == "test_main.CustomAgent"
|
2018-12-04 08:54:29 +00:00
|
|
|
assert ser == CustomAgent
|
2018-12-09 15:38:18 +00:00
|
|
|
pickle.dumps(ser)
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2018-12-04 08:54:29 +00:00
|
|
|
def test_serialize_builtin_types(self):
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2018-12-04 08:54:29 +00:00
|
|
|
for i in [1, None, True, False, {}, [], list(), dict()]:
|
2019-04-26 17:22:45 +00:00
|
|
|
ser, name = serialization.serialize(i)
|
2018-12-04 08:54:29 +00:00
|
|
|
assert type(ser) == str
|
2019-04-26 17:22:45 +00:00
|
|
|
des = serialization.deserialize(name, ser)
|
2018-12-04 08:54:29 +00:00
|
|
|
assert i == des
|
2017-06-20 15:45:43 +00:00
|
|
|
|
2022-10-06 13:49:10 +00:00
|
|
|
def test_serialize_agent_class(self):
|
2022-10-16 15:54:03 +00:00
|
|
|
"""A class from soil.agents should be serialized without the module part"""
|
2022-10-17 19:36:21 +00:00
|
|
|
ser = agents._serialize_type(CustomAgent)
|
2022-10-16 15:54:03 +00:00
|
|
|
assert ser == "test_main.CustomAgent"
|
2022-10-17 19:36:21 +00:00
|
|
|
ser = agents._serialize_type(agents.BaseAgent)
|
2022-10-16 15:54:03 +00:00
|
|
|
assert ser == "BaseAgent"
|
2018-12-09 15:38:18 +00:00
|
|
|
pickle.dumps(ser)
|
2022-10-16 15:54:03 +00:00
|
|
|
|
2020-10-19 11:14:48 +00:00
|
|
|
def test_until(self):
|
2022-10-20 07:14:50 +00:00
|
|
|
n_runs = 0
|
|
|
|
|
|
|
|
class CheckRun(agents.BaseAgent):
|
|
|
|
def step(self):
|
|
|
|
nonlocal n_runs
|
|
|
|
n_runs += 1
|
|
|
|
|
|
|
|
n_trials = 50
|
|
|
|
max_time = 2
|
2022-10-20 12:12:10 +00:00
|
|
|
s = simulation.Simulation(
|
2023-04-09 02:19:24 +00:00
|
|
|
model_params=dict(agents=dict(agent_classes=[CheckRun], k=1)),
|
2022-10-20 12:12:10 +00:00
|
|
|
num_trials=n_trials,
|
|
|
|
max_time=max_time,
|
|
|
|
)
|
2023-04-14 17:41:24 +00:00
|
|
|
runs = list(s.run_simulation(dump=False))
|
2022-10-13 20:43:16 +00:00
|
|
|
over = list(x.now for x in runs if x.now > 2)
|
2022-10-20 07:14:50 +00:00
|
|
|
assert len(runs) == n_trials
|
2020-10-19 11:14:48 +00:00
|
|
|
assert len(over) == 0
|
2021-10-15 11:36:39 +00:00
|
|
|
|
|
|
|
def test_fsm(self):
|
2022-10-16 15:54:03 +00:00
|
|
|
"""Basic state change"""
|
|
|
|
|
2021-10-15 11:36:39 +00:00
|
|
|
class ToggleAgent(agents.FSM):
|
|
|
|
@agents.default_state
|
|
|
|
@agents.state
|
|
|
|
def ping(self):
|
|
|
|
return self.pong
|
|
|
|
|
|
|
|
@agents.state
|
|
|
|
def pong(self):
|
|
|
|
return self.ping
|
|
|
|
|
|
|
|
a = ToggleAgent(unique_id=1, model=Environment())
|
2021-10-15 18:15:17 +00:00
|
|
|
assert a.state_id == a.ping.id
|
2021-10-15 11:36:39 +00:00
|
|
|
a.step()
|
2021-10-15 18:15:17 +00:00
|
|
|
assert a.state_id == a.pong.id
|
2021-10-15 11:36:39 +00:00
|
|
|
a.step()
|
2021-10-15 18:15:17 +00:00
|
|
|
assert a.state_id == a.ping.id
|
2021-10-15 11:36:39 +00:00
|
|
|
|
|
|
|
def test_fsm_when(self):
|
2022-10-16 15:54:03 +00:00
|
|
|
"""Basic state change"""
|
|
|
|
|
2021-10-15 11:36:39 +00:00
|
|
|
class ToggleAgent(agents.FSM):
|
|
|
|
@agents.default_state
|
|
|
|
@agents.state
|
|
|
|
def ping(self):
|
|
|
|
return self.pong, 2
|
|
|
|
|
|
|
|
@agents.state
|
|
|
|
def pong(self):
|
|
|
|
return self.ping
|
|
|
|
|
|
|
|
a = ToggleAgent(unique_id=1, model=Environment())
|
|
|
|
when = a.step()
|
|
|
|
assert when == 2
|
|
|
|
when = a.step()
|
|
|
|
assert when == Delta(a.interval)
|
2023-04-14 17:41:24 +00:00
|
|
|
|
|
|
|
def test_load_sim(self):
|
|
|
|
"""Make sure at least one of the examples can be loaded"""
|
|
|
|
sims = from_file(os.path.join(EXAMPLES, "newsspread", "newsspread_sim.py"))
|
|
|
|
assert len(sims) == 3*3*2
|
|
|
|
for sim in sims:
|
|
|
|
assert sim
|
|
|
|
assert sim.name == "newspread_sim"
|
|
|
|
assert sim.num_trials == 5
|
|
|
|
assert sim.max_steps == 300
|
|
|
|
assert not sim.dump
|
|
|
|
assert sim.model_params
|
|
|
|
assert "ratio_dumb" in sim.model_params
|
|
|
|
assert "ratio_herd" in sim.model_params
|
|
|
|
assert "ratio_wise" in sim.model_params
|
|
|
|
assert "network_generator" in sim.model_params
|
|
|
|
assert "network_params" in sim.model_params
|
|
|
|
assert "prob_neighbor_spread" in sim.model_params
|