aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-16 21:56:13 +0000
committerJustin Clarke Casey2009-01-16 21:56:13 +0000
commiteca6442bae4093019bd221e87413c74c77c4ff5d (patch)
treee62245b1cf2a5f0afdde443fba38c2b62d401100 /OpenSim/Region/ClientStack/LindenUDP
parent* minor: Future archiver test stub (diff)
downloadopensim-SC_OLD-eca6442bae4093019bd221e87413c74c77c4ff5d.zip
opensim-SC_OLD-eca6442bae4093019bd221e87413c74c77c4ff5d.tar.gz
opensim-SC_OLD-eca6442bae4093019bd221e87413c74c77c4ff5d.tar.bz2
opensim-SC_OLD-eca6442bae4093019bd221e87413c74c77c4ff5d.tar.xz
* Rig up enough infrastructure to actually perform a successful 'standalone' teleport unit test with checks that the scene presence disappeared from sceneA and appeared in
sceneB * However, I'm not convinced that the actual process in the test completely reflects reality, and a lot of stuff had to be rigged up (which should get resolved over time)
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs5
2 files changed, 3 insertions, 6 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 30f6f0f..146bc63 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -1366,10 +1366,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1366 OutPacket(enablesimpacket, ThrottleOutPacketType.Task); 1366 OutPacket(enablesimpacket, ThrottleOutPacketType.Task);
1367 } 1367 }
1368 1368
1369 /// <summary>
1370 ///
1371 /// </summary>
1372 /// <returns></returns>
1373 public AgentCircuitData RequestClientInfo() 1369 public AgentCircuitData RequestClientInfo()
1374 { 1370 {
1375 AgentCircuitData agentData = new AgentCircuitData(); 1371 AgentCircuitData agentData = new AgentCircuitData();
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs
index 62e6e96..d421f82 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs
@@ -64,9 +64,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
64 TestLLUDPServer testLLUDPServer; 64 TestLLUDPServer testLLUDPServer;
65 TestLLPacketServer testLLPacketServer; 65 TestLLPacketServer testLLPacketServer;
66 AgentCircuitManager acm; 66 AgentCircuitManager acm;
67 SetupStack(new MockScene(), out testLLUDPServer, out testLLPacketServer, out acm); 67 IScene scene = new MockScene();
68 SetupStack(scene, out testLLUDPServer, out testLLPacketServer, out acm);
68 69
69 TestClient testClient = new TestClient(agent); 70 TestClient testClient = new TestClient(agent, scene);
70 71
71 ILLPacketHandler packetHandler 72 ILLPacketHandler packetHandler
72 = new LLPacketHandler(testClient, testLLPacketServer, new ClientStackUserSettings()); 73 = new LLPacketHandler(testClient, testLLPacketServer, new ClientStackUserSettings());