diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Tests')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTeleportTests.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTeleportTests.cs b/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTeleportTests.cs index ccfe4ff..a407f01 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTeleportTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTeleportTests.cs | |||
@@ -97,6 +97,9 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
97 | 97 | ||
98 | Assert.That(sp.AbsolutePosition, Is.EqualTo(teleportPosition)); | 98 | Assert.That(sp.AbsolutePosition, Is.EqualTo(teleportPosition)); |
99 | 99 | ||
100 | Assert.That(scene.GetRootAgentCount(), Is.EqualTo(1)); | ||
101 | Assert.That(scene.GetChildAgentCount(), Is.EqualTo(0)); | ||
102 | |||
100 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera | 103 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera |
101 | // position instead). | 104 | // position instead). |
102 | // Assert.That(sp.Lookat, Is.EqualTo(teleportLookAt)); | 105 | // Assert.That(sp.Lookat, Is.EqualTo(teleportLookAt)); |
@@ -158,6 +161,11 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
158 | Assert.That(sceneBSp.Scene.RegionInfo.RegionName, Is.EqualTo(sceneB.RegionInfo.RegionName)); | 161 | Assert.That(sceneBSp.Scene.RegionInfo.RegionName, Is.EqualTo(sceneB.RegionInfo.RegionName)); |
159 | Assert.That(sceneBSp.AbsolutePosition, Is.EqualTo(teleportPosition)); | 162 | Assert.That(sceneBSp.AbsolutePosition, Is.EqualTo(teleportPosition)); |
160 | 163 | ||
164 | Assert.That(sceneA.GetRootAgentCount(), Is.EqualTo(0)); | ||
165 | Assert.That(sceneA.GetChildAgentCount(), Is.EqualTo(0)); | ||
166 | Assert.That(sceneB.GetRootAgentCount(), Is.EqualTo(1)); | ||
167 | Assert.That(sceneB.GetChildAgentCount(), Is.EqualTo(0)); | ||
168 | |||
161 | // TODO: Add assertions to check correct circuit details in both scenes. | 169 | // TODO: Add assertions to check correct circuit details in both scenes. |
162 | 170 | ||
163 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera | 171 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera |
@@ -235,6 +243,11 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
235 | Assert.That(sceneASp.Scene.RegionInfo.RegionName, Is.EqualTo(sceneA.RegionInfo.RegionName)); | 243 | Assert.That(sceneASp.Scene.RegionInfo.RegionName, Is.EqualTo(sceneA.RegionInfo.RegionName)); |
236 | Assert.That(sceneASp.AbsolutePosition, Is.EqualTo(preTeleportPosition)); | 244 | Assert.That(sceneASp.AbsolutePosition, Is.EqualTo(preTeleportPosition)); |
237 | 245 | ||
246 | Assert.That(sceneA.GetRootAgentCount(), Is.EqualTo(1)); | ||
247 | Assert.That(sceneA.GetChildAgentCount(), Is.EqualTo(0)); | ||
248 | Assert.That(sceneB.GetRootAgentCount(), Is.EqualTo(0)); | ||
249 | Assert.That(sceneB.GetChildAgentCount(), Is.EqualTo(0)); | ||
250 | |||
238 | // TODO: Add assertions to check correct circuit details in both scenes. | 251 | // TODO: Add assertions to check correct circuit details in both scenes. |
239 | 252 | ||
240 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera | 253 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera |
@@ -306,6 +319,11 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
306 | Assert.That(sceneASp.Scene.RegionInfo.RegionName, Is.EqualTo(sceneA.RegionInfo.RegionName)); | 319 | Assert.That(sceneASp.Scene.RegionInfo.RegionName, Is.EqualTo(sceneA.RegionInfo.RegionName)); |
307 | Assert.That(sceneASp.AbsolutePosition, Is.EqualTo(preTeleportPosition)); | 320 | Assert.That(sceneASp.AbsolutePosition, Is.EqualTo(preTeleportPosition)); |
308 | 321 | ||
322 | Assert.That(sceneA.GetRootAgentCount(), Is.EqualTo(1)); | ||
323 | Assert.That(sceneA.GetChildAgentCount(), Is.EqualTo(0)); | ||
324 | Assert.That(sceneB.GetRootAgentCount(), Is.EqualTo(0)); | ||
325 | Assert.That(sceneB.GetChildAgentCount(), Is.EqualTo(0)); | ||
326 | |||
309 | // TODO: Add assertions to check correct circuit details in both scenes. | 327 | // TODO: Add assertions to check correct circuit details in both scenes. |
310 | 328 | ||
311 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera | 329 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera |
@@ -382,6 +400,11 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
382 | Assert.That(afterSceneBSp.Scene.RegionInfo.RegionName, Is.EqualTo(sceneB.RegionInfo.RegionName)); | 400 | Assert.That(afterSceneBSp.Scene.RegionInfo.RegionName, Is.EqualTo(sceneB.RegionInfo.RegionName)); |
383 | Assert.That(afterSceneBSp.AbsolutePosition, Is.EqualTo(teleportPosition)); | 401 | Assert.That(afterSceneBSp.AbsolutePosition, Is.EqualTo(teleportPosition)); |
384 | 402 | ||
403 | Assert.That(sceneA.GetRootAgentCount(), Is.EqualTo(0)); | ||
404 | Assert.That(sceneA.GetChildAgentCount(), Is.EqualTo(1)); | ||
405 | Assert.That(sceneB.GetRootAgentCount(), Is.EqualTo(1)); | ||
406 | Assert.That(sceneB.GetChildAgentCount(), Is.EqualTo(0)); | ||
407 | |||
385 | // TODO: Add assertions to check correct circuit details in both scenes. | 408 | // TODO: Add assertions to check correct circuit details in both scenes. |
386 | 409 | ||
387 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera | 410 | // Lookat is sent to the client only - sp.Lookat does not yield the same thing (calculation from camera |