* test: Refactor test infrastructure for future client teardown test
parent
b222d11b12
commit
80e87747f3
|
@ -57,25 +57,72 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a client for testing
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="testLLUDPServer"></param>
|
||||||
|
/// <param name="acm">Agent circuit manager used in setting up the stack</param>
|
||||||
|
protected void SetupStack( out TestLLUDPServer testLLUDPServer, out AgentCircuitManager acm)
|
||||||
|
{
|
||||||
|
ClientStackUserSettings userSettings = new ClientStackUserSettings();
|
||||||
|
testLLUDPServer = new TestLLUDPServer();
|
||||||
|
acm = new AgentCircuitManager();
|
||||||
|
|
||||||
|
uint port = 666;
|
||||||
|
testLLUDPServer.Initialise(null, ref port, 0, false, userSettings, null, acm);
|
||||||
|
new LLPacketServer(testLLUDPServer, userSettings);
|
||||||
|
testLLUDPServer.LocalScene = new MockScene();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Set up a client for tests which aren't concerned with this process itself
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="circuitCode"></param>
|
||||||
|
/// <param name="testLLUDPServer"></param>
|
||||||
|
/// <param name="acm"></param>
|
||||||
|
protected void AddClient(uint circuitCode, TestLLUDPServer testLLUDPServer, AgentCircuitManager acm)
|
||||||
|
{
|
||||||
|
UUID myAgentUuid = UUID.Parse("00000000-0000-0000-0000-000000000001");
|
||||||
|
UUID mySessionUuid = UUID.Parse("00000000-0000-0000-0000-000000000002");
|
||||||
|
|
||||||
|
AgentCircuitData acd = new AgentCircuitData();
|
||||||
|
acd.AgentID = myAgentUuid;
|
||||||
|
acd.SessionID = mySessionUuid;
|
||||||
|
|
||||||
|
UseCircuitCodePacket uccp = new UseCircuitCodePacket();
|
||||||
|
|
||||||
|
UseCircuitCodePacket.CircuitCodeBlock uccpCcBlock
|
||||||
|
= new OpenMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock();
|
||||||
|
uccpCcBlock.Code = circuitCode;
|
||||||
|
uccpCcBlock.ID = myAgentUuid;
|
||||||
|
uccpCcBlock.SessionID = mySessionUuid;
|
||||||
|
uccp.CircuitCode = uccpCcBlock;
|
||||||
|
|
||||||
|
EndPoint testEp = new IPEndPoint(IPAddress.Loopback, 999);
|
||||||
|
|
||||||
|
acm.AddNewCircuit(circuitCode, acd);
|
||||||
|
|
||||||
|
testLLUDPServer.LoadReceive(uccp, testEp);
|
||||||
|
testLLUDPServer.ReceiveData(null);
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
/// <summary>
|
||||||
|
/// Test adding a client to the stack
|
||||||
|
/// </summary>
|
||||||
public void TestAddClient()
|
public void TestAddClient()
|
||||||
{
|
{
|
||||||
uint myCircuitCode = 123456;
|
uint myCircuitCode = 123456;
|
||||||
UUID myAgentUuid = UUID.Parse("00000000-0000-0000-0000-000000000001");
|
UUID myAgentUuid = UUID.Parse("00000000-0000-0000-0000-000000000001");
|
||||||
UUID mySessionUuid = UUID.Parse("00000000-0000-0000-0000-000000000002");
|
UUID mySessionUuid = UUID.Parse("00000000-0000-0000-0000-000000000002");
|
||||||
|
|
||||||
TestLLUDPServer testLLUDPServer = new TestLLUDPServer();
|
TestLLUDPServer testLLUDPServer;
|
||||||
ClientStackUserSettings userSettings = new ClientStackUserSettings();
|
AgentCircuitManager acm;
|
||||||
|
SetupStack(out testLLUDPServer, out acm);
|
||||||
|
|
||||||
AgentCircuitManager acm = new AgentCircuitManager();
|
|
||||||
AgentCircuitData acd = new AgentCircuitData();
|
AgentCircuitData acd = new AgentCircuitData();
|
||||||
acd.AgentID = myAgentUuid;
|
acd.AgentID = myAgentUuid;
|
||||||
acd.SessionID = mySessionUuid;
|
acd.SessionID = mySessionUuid;
|
||||||
|
|
||||||
uint port = 666;
|
|
||||||
testLLUDPServer.Initialise(null, ref port, 0, false, userSettings, null, acm);
|
|
||||||
new LLPacketServer(testLLUDPServer, userSettings);
|
|
||||||
testLLUDPServer.LocalScene = new MockScene();
|
|
||||||
|
|
||||||
UseCircuitCodePacket uccp = new UseCircuitCodePacket();
|
UseCircuitCodePacket uccp = new UseCircuitCodePacket();
|
||||||
|
|
||||||
|
@ -103,5 +150,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
|
||||||
Assert.IsTrue(testLLUDPServer.HasCircuit(myCircuitCode));
|
Assert.IsTrue(testLLUDPServer.HasCircuit(myCircuitCode));
|
||||||
Assert.IsFalse(testLLUDPServer.HasCircuit(101));
|
Assert.IsFalse(testLLUDPServer.HasCircuit(101));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
/// <summary>
|
||||||
|
/// Test removing a client from the stack
|
||||||
|
/// </summary>
|
||||||
|
public void TestRemoveClient()
|
||||||
|
{
|
||||||
|
TestLLUDPServer testLLUDPServer;
|
||||||
|
AgentCircuitManager acm;
|
||||||
|
SetupStack(out testLLUDPServer, out acm);
|
||||||
|
|
||||||
|
AddClient(123457, testLLUDPServer, acm);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue