mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
* 2 warnings in JointDeletion_Test * 1 warning in Collision_Test * 2 warnings in Color_Test (deleted test of deprecated HCY color space) * 1 warning in MapVelocity_Test * 2 warnings in MapManager_Tests * 2 warnings in MapPauseTests * 1 warning in NetDisconnectMessageTest * 1 warning in ContainerTests * Suppress 1 warning in EntityEventBusTests.ComponentEvent * 4 warnings in MapGridMap_Tests * 1 warning in GridDeletion_Test * Remove TryGetContainingContainer foolishness --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
387 lines
16 KiB
C#
387 lines
16 KiB
C#
using System.Collections.Generic;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Log;
|
|
using Robust.Shared.Reflection;
|
|
using Robust.Shared.Serialization.Manager;
|
|
using Robust.UnitTesting.Shared.Reflection;
|
|
|
|
namespace Robust.UnitTesting.Shared.GameObjects
|
|
{
|
|
public sealed partial class EntityEventBusTests
|
|
{
|
|
[Test]
|
|
public void SubscribeCompEvent()
|
|
{
|
|
var compFactory = new ComponentFactory(new DynamicTypeFactory(), new ReflectionManagerTest(), new SerializationManager(), new LogManager());
|
|
|
|
// Arrange
|
|
var entUid = new EntityUid(7);
|
|
var compInstance = new MetaDataComponent();
|
|
|
|
var entManMock = new Mock<IEntityManager>();
|
|
var reflectMock = new Mock<IReflectionManager>();
|
|
|
|
compFactory.RegisterClass<MetaDataComponent>();
|
|
entManMock.Setup(m => m.ComponentFactory).Returns(compFactory);
|
|
|
|
IComponent? outIComponent = compInstance;
|
|
entManMock.Setup(m => m.TryGetComponent(entUid, CompIdx.Index<MetaDataComponent>(), out outIComponent))
|
|
.Returns(true);
|
|
|
|
entManMock.Setup(m => m.GetComponent(entUid, CompIdx.Index<MetaDataComponent>()))
|
|
.Returns(compInstance);
|
|
|
|
entManMock.Setup(m => m.GetComponentInternal(entUid, CompIdx.Index<MetaDataComponent>()))
|
|
.Returns(compInstance);
|
|
|
|
var bus = new EntityEventBus(entManMock.Object, reflectMock.Object);
|
|
bus.OnlyCallOnRobustUnitTestISwearToGodPleaseSomebodyKillThisNightmare();
|
|
|
|
// Subscribe
|
|
int calledCount = 0;
|
|
bus.SubscribeLocalEvent<MetaDataComponent, TestEvent>(HandleTestEvent);
|
|
bus.LockSubscriptions();
|
|
|
|
// add a component to the system
|
|
bus.OnEntityAdded(entUid);
|
|
|
|
var reg = compFactory.GetRegistration(CompIdx.Index<MetaDataComponent>());
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(compInstance, entUid), reg));
|
|
|
|
// Raise
|
|
var evntArgs = new TestEvent(5);
|
|
bus.RaiseLocalEvent(entUid, evntArgs, true);
|
|
|
|
// Assert
|
|
Assert.That(calledCount, Is.EqualTo(1));
|
|
void HandleTestEvent(EntityUid uid, MetaDataComponent component, TestEvent args)
|
|
{
|
|
calledCount++;
|
|
Assert.That(uid, Is.EqualTo(entUid));
|
|
Assert.That(component, Is.EqualTo(compInstance));
|
|
Assert.That(args.TestNumber, Is.EqualTo(5));
|
|
}
|
|
|
|
}
|
|
|
|
[Test]
|
|
public void UnsubscribeCompEvent()
|
|
{
|
|
// Arrange
|
|
var entUid = new EntityUid(7);
|
|
var compInstance = new MetaDataComponent();
|
|
|
|
var entManMock = new Mock<IEntityManager>();
|
|
|
|
var compRegistration = new ComponentRegistration(
|
|
"MetaData",
|
|
typeof(MetaDataComponent),
|
|
CompIdx.Index<MetaDataComponent>());
|
|
|
|
var compFacMock = new Mock<IComponentFactory>();
|
|
var reflectMock = new Mock<IReflectionManager>();
|
|
|
|
compFacMock.Setup(m => m.GetRegistration(CompIdx.Index<MetaDataComponent>())).Returns(compRegistration);
|
|
compFacMock.Setup(m => m.GetAllRegistrations()).Returns(new[] { compRegistration });
|
|
compFacMock.Setup(m => m.GetIndex(typeof(MetaDataComponent))).Returns(CompIdx.Index<MetaDataComponent>());
|
|
entManMock.Setup(m => m.ComponentFactory).Returns(compFacMock.Object);
|
|
|
|
IComponent? outIComponent = compInstance;
|
|
entManMock.Setup(m => m.TryGetComponent(entUid, typeof(MetaDataComponent), out outIComponent))
|
|
.Returns(true);
|
|
|
|
entManMock.Setup(m => m.GetComponent(entUid, typeof(MetaDataComponent)))
|
|
.Returns(compInstance);
|
|
|
|
var bus = new EntityEventBus(entManMock.Object, reflectMock.Object);
|
|
bus.OnlyCallOnRobustUnitTestISwearToGodPleaseSomebodyKillThisNightmare();
|
|
|
|
// Subscribe
|
|
int calledCount = 0;
|
|
bus.SubscribeLocalEvent<MetaDataComponent, TestEvent>(HandleTestEvent);
|
|
bus.UnsubscribeLocalEvent<MetaDataComponent, TestEvent>();
|
|
bus.LockSubscriptions();
|
|
|
|
// add a component to the system
|
|
bus.OnEntityAdded(entUid);
|
|
|
|
var reg = compFacMock.Object.GetRegistration(CompIdx.Index<MetaDataComponent>());
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(compInstance, entUid), reg));
|
|
|
|
// Raise
|
|
var evntArgs = new TestEvent(5);
|
|
bus.RaiseLocalEvent(entUid, evntArgs, true);
|
|
|
|
// Assert
|
|
Assert.That(calledCount, Is.EqualTo(0));
|
|
void HandleTestEvent(EntityUid uid, MetaDataComponent component, TestEvent args)
|
|
{
|
|
calledCount++;
|
|
}
|
|
|
|
}
|
|
|
|
[Test]
|
|
public void SubscribeCompLifeEvent()
|
|
{
|
|
// Arrange
|
|
var entUid = new EntityUid(7);
|
|
var compInstance = new MetaDataComponent();
|
|
|
|
var entManMock = new Mock<IEntityManager>();
|
|
|
|
#pragma warning disable CS0618 // Type or member is obsolete
|
|
compInstance.Owner = entUid;
|
|
#pragma warning restore CS0618 // Type or member is obsolete
|
|
|
|
var compRegistration = new ComponentRegistration(
|
|
"MetaData",
|
|
typeof(MetaDataComponent),
|
|
CompIdx.Index<MetaDataComponent>());
|
|
|
|
var compFacMock = new Mock<IComponentFactory>();
|
|
var reflectMock = new Mock<IReflectionManager>();
|
|
|
|
compFacMock.Setup(m => m.GetRegistration(CompIdx.Index<MetaDataComponent>())).Returns(compRegistration);
|
|
compFacMock.Setup(m => m.GetAllRegistrations()).Returns(new[] { compRegistration });
|
|
compFacMock.Setup(m => m.GetIndex(typeof(MetaDataComponent))).Returns(CompIdx.Index<MetaDataComponent>());
|
|
entManMock.Setup(m => m.ComponentFactory).Returns(compFacMock.Object);
|
|
|
|
IComponent? outIComponent = compInstance;
|
|
entManMock.Setup(m => m.TryGetComponent(entUid, typeof(MetaDataComponent), out outIComponent))
|
|
.Returns(true);
|
|
|
|
entManMock.Setup(m => m.GetComponent(entUid, typeof(MetaDataComponent)))
|
|
.Returns(compInstance);
|
|
|
|
var bus = new EntityEventBus(entManMock.Object, reflectMock.Object);
|
|
bus.OnlyCallOnRobustUnitTestISwearToGodPleaseSomebodyKillThisNightmare();
|
|
|
|
// Subscribe
|
|
int calledCount = 0;
|
|
bus.SubscribeLocalEvent<MetaDataComponent, ComponentInit>(HandleTestEvent);
|
|
bus.LockSubscriptions();
|
|
|
|
// add a component to the system
|
|
entManMock.Raise(m => m.EntityAdded += null, entUid);
|
|
|
|
var reg = compFacMock.Object.GetRegistration<MetaDataComponent>();
|
|
entManMock.Raise(m => m.ComponentAdded += null, new AddedComponentEventArgs(new ComponentEventArgs(compInstance, entUid), reg));
|
|
|
|
// Raise
|
|
((IEventBus)bus).RaiseComponentEvent(entUid, compInstance, new ComponentInit());
|
|
|
|
// Assert
|
|
Assert.That(calledCount, Is.EqualTo(1));
|
|
void HandleTestEvent(EntityUid uid, MetaDataComponent component, ComponentInit args)
|
|
{
|
|
calledCount++;
|
|
Assert.That(uid, Is.EqualTo(entUid));
|
|
Assert.That(component, Is.EqualTo(compInstance));
|
|
}
|
|
}
|
|
|
|
[Test]
|
|
public void CompEventOrdered()
|
|
{
|
|
// Arrange
|
|
var entUid = new EntityUid(7);
|
|
|
|
var entManMock = new Mock<IEntityManager>();
|
|
var compFacMock = new Mock<IComponentFactory>();
|
|
var reflectMock = new Mock<IReflectionManager>();
|
|
|
|
List<ComponentRegistration> allRefTypes = new();
|
|
void Setup<T>(out T instance) where T : IComponent, new()
|
|
{
|
|
IComponent? inst = instance = new T();
|
|
var reg = new ComponentRegistration(
|
|
typeof(T).Name,
|
|
typeof(T),
|
|
CompIdx.Index<T>());
|
|
|
|
compFacMock.Setup(m => m.GetRegistration(CompIdx.Index<T>())).Returns(reg);
|
|
compFacMock.Setup(m => m.GetIndex(typeof(T))).Returns(CompIdx.Index<T>());
|
|
entManMock.Setup(m => m.TryGetComponent(entUid, CompIdx.Index<T>(), out inst)).Returns(true);
|
|
entManMock.Setup(m => m.GetComponent(entUid, CompIdx.Index<T>())).Returns(inst);
|
|
entManMock.Setup(m => m.GetComponentInternal(entUid, CompIdx.Index<T>())).Returns(inst);
|
|
allRefTypes.Add(reg);
|
|
}
|
|
|
|
Setup<OrderAComponent>(out var instA);
|
|
Setup<OrderBComponent>(out var instB);
|
|
Setup<OrderCComponent>(out var instC);
|
|
|
|
compFacMock.Setup(m => m.GetAllRegistrations()).Returns(allRefTypes.ToArray());
|
|
|
|
entManMock.Setup(m => m.ComponentFactory).Returns(compFacMock.Object);
|
|
var bus = new EntityEventBus(entManMock.Object, reflectMock.Object);
|
|
bus.OnlyCallOnRobustUnitTestISwearToGodPleaseSomebodyKillThisNightmare();
|
|
|
|
// Subscribe
|
|
var a = false;
|
|
var b = false;
|
|
var c = false;
|
|
|
|
void HandlerA(EntityUid uid, Component comp, TestEvent ev)
|
|
{
|
|
Assert.That(b, Is.False, "A should run before B");
|
|
Assert.That(c, Is.False, "A should run before C");
|
|
|
|
a = true;
|
|
}
|
|
|
|
void HandlerB(EntityUid uid, Component comp, TestEvent ev)
|
|
{
|
|
Assert.That(c, Is.True, "B should run after C");
|
|
b = true;
|
|
}
|
|
|
|
void HandlerC(EntityUid uid, Component comp, TestEvent ev) => c = true;
|
|
|
|
bus.SubscribeLocalEvent<OrderAComponent, TestEvent>(HandlerA, typeof(OrderAComponent), before: new []{typeof(OrderBComponent), typeof(OrderCComponent)});
|
|
bus.SubscribeLocalEvent<OrderBComponent, TestEvent>(HandlerB, typeof(OrderBComponent), after: new []{typeof(OrderCComponent)});
|
|
bus.SubscribeLocalEvent<OrderCComponent, TestEvent>(HandlerC, typeof(OrderCComponent));
|
|
bus.LockSubscriptions();
|
|
|
|
// add a component to the system
|
|
bus.OnEntityAdded(entUid);
|
|
|
|
var regA = compFacMock.Object.GetRegistration(CompIdx.Index<OrderAComponent>());
|
|
var regB = compFacMock.Object.GetRegistration(CompIdx.Index<OrderBComponent>());
|
|
var regC = compFacMock.Object.GetRegistration(CompIdx.Index<OrderCComponent>());
|
|
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(instA, entUid), regA));
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(instB, entUid), regB));
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(instC, entUid), regC));
|
|
|
|
// Raise
|
|
var evntArgs = new TestEvent(5);
|
|
bus.RaiseLocalEvent(entUid, evntArgs, true);
|
|
|
|
// Assert
|
|
Assert.That(a, Is.True, "A did not fire");
|
|
Assert.That(b, Is.True, "B did not fire");
|
|
Assert.That(c, Is.True, "C did not fire");
|
|
}
|
|
|
|
[Test]
|
|
public void CompEventLoop()
|
|
{
|
|
var entUid = new EntityUid(7);
|
|
|
|
var entManMock = new Mock<IEntityManager>();
|
|
var compFacMock = new Mock<IComponentFactory>();
|
|
var reflectMock = new Mock<IReflectionManager>();
|
|
|
|
List<ComponentRegistration> allRefTypes = new();
|
|
void Setup<T>(out T instance) where T : IComponent, new()
|
|
{
|
|
IComponent? inst = instance = new T();
|
|
var reg = new ComponentRegistration(
|
|
typeof(T).Name,
|
|
typeof(T),
|
|
CompIdx.Index<T>());
|
|
|
|
compFacMock.Setup(m => m.GetRegistration(CompIdx.Index<T>())).Returns(reg);
|
|
compFacMock.Setup(m => m.GetIndex(typeof(T))).Returns(CompIdx.Index<T>());
|
|
entManMock.Setup(m => m.TryGetComponent(entUid, CompIdx.Index<T>(), out inst)).Returns(true);
|
|
entManMock.Setup(m => m.GetComponent(entUid, CompIdx.Index<T>())).Returns(inst);
|
|
entManMock.Setup(m => m.GetComponentInternal(entUid, CompIdx.Index<T>())).Returns(inst);
|
|
allRefTypes.Add(reg);
|
|
}
|
|
|
|
Setup<OrderAComponent>(out var instA);
|
|
Setup<OrderBComponent>(out var instB);
|
|
|
|
compFacMock.Setup(m => m.GetAllRegistrations()).Returns(allRefTypes.ToArray());
|
|
|
|
entManMock.Setup(m => m.ComponentFactory).Returns(compFacMock.Object);
|
|
var bus = new EntityEventBus(entManMock.Object, reflectMock.Object);
|
|
bus.OnlyCallOnRobustUnitTestISwearToGodPleaseSomebodyKillThisNightmare();
|
|
|
|
var regA = compFacMock.Object.GetRegistration(CompIdx.Index<OrderAComponent>());
|
|
var regB = compFacMock.Object.GetRegistration(CompIdx.Index<OrderBComponent>());
|
|
|
|
var handlerACount = 0;
|
|
void HandlerA(EntityUid uid, Component comp, TestEvent ev)
|
|
{
|
|
Assert.That(handlerACount, Is.EqualTo(0));
|
|
handlerACount++;
|
|
|
|
// add and then remove component B
|
|
bus.OnComponentRemoved(new RemovedComponentEventArgs(new ComponentEventArgs(instB, entUid), false, default!, CompIdx.Index<OrderBComponent>()));
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(instB, entUid), regB));
|
|
}
|
|
|
|
var handlerBCount = 0;
|
|
void HandlerB(EntityUid uid, Component comp, TestEvent ev)
|
|
{
|
|
Assert.That(handlerBCount, Is.EqualTo(0));
|
|
handlerBCount++;
|
|
|
|
// add and then remove component A
|
|
bus.OnComponentRemoved(new RemovedComponentEventArgs(new ComponentEventArgs(instA, entUid), false, default!, CompIdx.Index<OrderAComponent>()));
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(instA, entUid), regA));
|
|
}
|
|
|
|
bus.SubscribeLocalEvent<OrderAComponent, TestEvent>(HandlerA, typeof(OrderAComponent));
|
|
bus.SubscribeLocalEvent<OrderBComponent, TestEvent>(HandlerB, typeof(OrderBComponent));
|
|
bus.LockSubscriptions();
|
|
|
|
// add a component to the system
|
|
bus.OnEntityAdded(entUid);
|
|
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(instA, entUid), regA));
|
|
bus.OnComponentAdded(new AddedComponentEventArgs(new ComponentEventArgs(instB, entUid), regB));
|
|
|
|
// Event subscriptions currently use a linked list.
|
|
// Currently expect event subscriptions to be raised in order: handlerB -> handlerA
|
|
// If a component gets removed and added again, it gets moved back to the front of the linked list.
|
|
// I.e., adding and then removing compA changes the linked list order: handlerA -> handlerB
|
|
//
|
|
// This could in principle cause the event raising code to enter an infinite loop.
|
|
// Adding and removing a comp in an event handler may seem silly but:
|
|
// - it doesn't have to be the same component if you had a chain of three or more components
|
|
// - some event handlers raise other events and can lead to convoluted chains of interactions that might inadvertently trigger something like this.
|
|
|
|
// Raise
|
|
bus.RaiseLocalEvent(entUid, new TestEvent(0));
|
|
|
|
// Assert
|
|
Assert.That(handlerACount, Is.LessThanOrEqualTo(1));
|
|
Assert.That(handlerBCount, Is.LessThanOrEqualTo(1));
|
|
Assert.That(handlerACount+handlerBCount, Is.GreaterThan(0));
|
|
}
|
|
|
|
private sealed partial class DummyComponent : Component
|
|
{
|
|
}
|
|
|
|
private sealed partial class OrderAComponent : Component
|
|
{
|
|
}
|
|
|
|
private sealed partial class OrderBComponent : Component
|
|
{
|
|
}
|
|
|
|
private sealed partial class OrderCComponent : Component
|
|
{
|
|
}
|
|
|
|
private sealed class TestEvent : EntityEventArgs
|
|
{
|
|
public int TestNumber { get; }
|
|
|
|
public TestEvent(int testNumber)
|
|
{
|
|
TestNumber = testNumber;
|
|
}
|
|
}
|
|
}
|
|
}
|