from evennia.contrib.base_systems.components import (
Component,
DBField,
TagField,
signals,
)
from evennia.contrib.base_systems.components.holder import (
ComponentHolderMixin,
ComponentProperty,
)
from evennia.contrib.base_systems.components.signals import as_listener
from evennia.objects.objects import DefaultCharacter
from evennia.utils import create
from evennia.utils.test_resources import BaseEvenniaTest, EvenniaTest
[docs]class ComponentTestA(Component):
name = "test_a"
my_int = DBField(default=1)
my_list = DBField(default=[])
[docs]class ComponentTestB(Component):
name = "test_b"
my_int = DBField(default=1)
my_list = DBField(default=[])
default_tag = TagField(default="initial_value")
single_tag = TagField(enforce_single=True)
multiple_tags = TagField()
default_single_tag = TagField(default="initial_value", enforce_single=True)
[docs]class RuntimeComponentTestC(Component):
name = "test_c"
my_int = DBField(default=6)
my_dict = DBField(default={})
added_tag = TagField(default="added_value")
[docs]class CharacterWithComponents(ComponentHolderMixin, DefaultCharacter):
test_a = ComponentProperty("test_a")
test_b = ComponentProperty("test_b", my_int=3, my_list=[1, 2, 3])
[docs]class InheritedTCWithComponents(CharacterWithComponents):
test_c = ComponentProperty("test_c")
[docs]class TestComponents(EvenniaTest):
character_typeclass = CharacterWithComponents
[docs] def test_character_has_class_components(self):
assert self.char1.test_a
assert self.char1.test_b
[docs] def test_inherited_typeclass_does_not_include_child_class_components(self):
char_with_c = create.create_object(
InheritedTCWithComponents, key="char_with_c", location=self.room1, home=self.room1
)
assert self.char1.test_a
assert not self.char1.cmp.get('test_c')
assert char_with_c.test_c
[docs] def test_character_instances_components_properly(self):
assert isinstance(self.char1.test_a, ComponentTestA)
assert isinstance(self.char1.test_b, ComponentTestB)
[docs] def test_character_assigns_default_value(self):
assert self.char1.test_a.my_int == 1
assert self.char1.test_a.my_list == []
[docs] def test_character_assigns_default_provided_values(self):
assert self.char1.test_b.my_int == 3
assert self.char1.test_b.my_list == [1, 2, 3]
[docs] def test_character_can_register_runtime_component(self):
rct = RuntimeComponentTestC.create(self.char1)
self.char1.components.add(rct)
test_c = self.char1.components.get("test_c")
assert test_c
assert test_c.my_int == 6
assert test_c.my_dict == {}
[docs] def test_handler_can_add_default_component(self):
self.char1.components.add_default("test_c")
test_c = self.char1.components.get("test_c")
assert test_c
assert test_c.my_int == 6
[docs] def test_handler_has_returns_true_for_any_components(self):
rct = RuntimeComponentTestC.create(self.char1)
handler = self.char1.components
handler.add(rct)
assert handler.has("test_a")
assert handler.has("test_b")
assert handler.has("test_c")
[docs] def test_can_remove_component(self):
rct = RuntimeComponentTestC.create(self.char1)
handler = self.char1.components
handler.add(rct)
handler.remove(rct)
assert handler.has("test_a")
assert handler.has("test_b")
assert not handler.has("test_c")
[docs] def test_can_remove_component_by_name(self):
rct = RuntimeComponentTestC.create(self.char1)
handler = self.char1.components
handler.add(rct)
handler.remove_by_name("test_c")
assert handler.has("test_a")
assert handler.has("test_b")
assert not handler.has("test_c")
[docs] def test_cannot_replace_component(self):
with self.assertRaises(Exception):
self.char1.test_a = None
[docs] def test_can_get_component(self):
rct = RuntimeComponentTestC.create(self.char1)
handler = self.char1.components
handler.add(rct)
assert handler.get("test_c") is rct
[docs] def test_can_access_component_regular_get(self):
assert self.char1.cmp.test_a is self.char1.components.get("test_a")
[docs] def test_returns_none_with_regular_get_when_no_attribute(self):
assert self.char1.cmp.does_not_exist is None
[docs]class CharWithSignal(ComponentHolderMixin, DefaultCharacter):
[docs] @signals.as_listener
def my_signal(self):
setattr(self, "my_signal_is_called", True)
[docs] @signals.as_listener
def my_other_signal(self):
setattr(self, "my_other_signal_is_called", True)
[docs] @signals.as_responder
def my_response(self):
return 1
[docs] @signals.as_responder
def my_other_response(self):
return 2
[docs]class ComponentWithSignal(Component):
name = "test_signal_a"
[docs] @signals.as_listener
def my_signal(self):
setattr(self, "my_signal_is_called", True)
[docs] @signals.as_listener
def my_other_signal(self):
setattr(self, "my_other_signal_is_called", True)
[docs] @signals.as_responder
def my_response(self):
return 1
[docs] @signals.as_responder
def my_other_response(self):
return 2
[docs] @signals.as_responder
def my_component_response(self):
return 3
[docs]class TestComponentSignals(BaseEvenniaTest):
[docs] def setUp(self):
super().setUp()
self.char1 = create.create_object(
CharWithSignal,
key="Char",
)
[docs] def test_host_can_register_as_listener(self):
self.char1.signals.trigger("my_signal")
assert self.char1.my_signal_is_called
assert not getattr(self.char1, "my_other_signal_is_called", None)
[docs] def test_host_can_register_as_responder(self):
responses = self.char1.signals.query("my_response")
assert 1 in responses
assert 2 not in responses
[docs] def test_component_can_register_as_listener(self):
char = self.char1
char.components.add(ComponentWithSignal.create(char))
char.signals.trigger("my_signal")
component = char.cmp.test_signal_a
assert component.my_signal_is_called
assert not getattr(component, "my_other_signal_is_called", None)
[docs] def test_component_can_register_as_responder(self):
char = self.char1
char.components.add(ComponentWithSignal.create(char))
responses = char.signals.query("my_response")
assert 1 in responses
assert 2 not in responses
[docs] def test_signals_can_add_listener(self):
result = []
def my_fake_listener():
result.append(True)
self.char1.signals.add_listener("my_fake_signal", my_fake_listener)
self.char1.signals.trigger("my_fake_signal")
assert result
[docs] def test_signals_can_add_responder(self):
def my_fake_responder():
return 1
self.char1.signals.add_responder("my_fake_response", my_fake_responder)
responses = self.char1.signals.query("my_fake_response")
assert 1 in responses
[docs] def test_signals_can_remove_listener(self):
result = []
def my_fake_listener():
result.append(True)
self.char1.signals.add_listener("my_fake_signal", my_fake_listener)
self.char1.signals.remove_listener("my_fake_signal", my_fake_listener)
self.char1.signals.trigger("my_fake_signal")
assert not result
[docs] def test_signals_can_remove_responder(self):
def my_fake_responder():
return 1
self.char1.signals.add_responder("my_fake_response", my_fake_responder)
self.char1.signals.remove_responder("my_fake_response", my_fake_responder)
responses = self.char1.signals.query("my_fake_response")
assert not responses
[docs] def test_signals_can_trigger_with_args(self):
result = []
def my_fake_listener(arg1, kwarg1):
result.append((arg1, kwarg1))
self.char1.signals.add_listener("my_fake_signal", my_fake_listener)
self.char1.signals.trigger("my_fake_signal", 1, kwarg1=2)
assert (1, 2) in result
[docs] def test_signals_can_query_with_args(self):
def my_fake_responder(arg1, kwarg1):
return (arg1, kwarg1)
self.char1.signals.add_responder("my_fake_response", my_fake_responder)
responses = self.char1.signals.query("my_fake_response", 1, kwarg1=2)
assert (1, 2) in responses
[docs] def test_signals_trigger_does_not_fail_without_listener(self):
self.char1.signals.trigger("some_unknown_signal")
[docs] def test_signals_query_does_not_fail_wihout_responders(self):
self.char1.signals.query("no_responders_allowed")
[docs] def test_signals_query_with_aggregate(self):
def my_fake_responder(arg1, kwarg1):
return (arg1, kwarg1)
self.char1.signals.add_responder("my_fake_response", my_fake_responder)
responses = self.char1.signals.query("my_fake_response", 1, kwarg1=2)
assert (1, 2) in responses
[docs] def test_signals_can_add_object_listeners_and_responders(self):
result = []
class FakeObj:
@as_listener
def my_signal(self):
result.append(True)
self.char1.signals.add_object_listeners_and_responders(FakeObj())
self.char1.signals.trigger("my_signal")
assert result
[docs] def test_signals_can_remove_object_listeners_and_responders(self):
result = []
class FakeObj:
@as_listener
def my_signal(self):
result.append(True)
obj = FakeObj()
self.char1.signals.add_object_listeners_and_responders(obj)
self.char1.signals.remove_object_listeners_and_responders(obj)
self.char1.signals.trigger("my_signal")
assert not result
[docs] def test_component_handler_signals_connected_when_adding_default_component(self):
char = self.char1
char.components.add_default("test_signal_a")
responses = char.signals.query("my_component_response")
assert 3 in responses
[docs] def test_component_handler_signals_disconnected_when_removing_component(self):
char = self.char1
comp = ComponentWithSignal.create(char)
char.components.add(comp)
char.components.remove(comp)
responses = char.signals.query("my_component_response")
assert not responses
[docs] def test_component_handler_signals_disconnected_when_removing_component_by_name(self):
char = self.char1
char.components.add_default("test_signal_a")
char.components.remove_by_name("test_signal_a")
responses = char.signals.query("my_component_response")
assert not responses