StandaloneTeleportTests.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSim Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using Nini.Config;
  28. using NUnit.Framework;
  29. using NUnit.Framework.SyntaxHelpers;
  30. using OpenMetaverse;
  31. using OpenSim.Framework;
  32. using OpenSim.Framework.Communications;
  33. using OpenSim.Region.Environment;
  34. using OpenSim.Region.Environment.Interfaces;
  35. using OpenSim.Region.Environment.Modules.Communications.REST;
  36. using OpenSim.Tests.Common.Mock;
  37. using OpenSim.Tests.Common.Setup;
  38. namespace OpenSim.Region.Environment.Scenes.Tests
  39. {
  40. /// <summary>
  41. /// Teleport tests in a standalone OpenSim
  42. /// </summary>
  43. [TestFixture]
  44. public class StandaloneTeleportTests
  45. {
  46. /// <summary>
  47. /// Test a teleport between two regions that are not neighbours and do not share any neighbours in common.
  48. /// </summary>
  49. /// Does not yet do what is says on the tin.
  50. [Test]
  51. public void TestSimpleNotNeighboursTeleport()
  52. {
  53. //log4net.Config.XmlConfigurator.Configure();
  54. UUID sceneAId = UUID.Parse("00000000-0000-0000-0000-000000000100");
  55. UUID sceneBId = UUID.Parse("00000000-0000-0000-0000-000000000200");
  56. CommunicationsManager cm = new TestCommunicationsManager();
  57. // shared module
  58. IRegionModule interregionComms = new RESTInterregionComms();
  59. Scene sceneA = SceneSetupHelpers.SetupScene("sceneA", sceneAId, 1000, 1000, cm);
  60. SceneSetupHelpers.SetupSceneModules(sceneA, new IniConfigSource(), interregionComms);
  61. sceneA.RegisterRegionWithGrid();
  62. Scene sceneB = SceneSetupHelpers.SetupScene("sceneB", sceneBId, 1010, 1010, cm);
  63. SceneSetupHelpers.SetupSceneModules(sceneB, new IniConfigSource(), interregionComms);
  64. sceneB.RegisterRegionWithGrid();
  65. UUID agentId = UUID.Parse("00000000-0000-0000-0000-000000000041");
  66. TestClient client = SceneSetupHelpers.AddRootAgent(sceneA, agentId);
  67. ICapabilitiesModule sceneACapsModule = sceneA.RequestModuleInterface<ICapabilitiesModule>();
  68. Assert.That(
  69. sceneACapsModule.GetCapsPath(agentId),
  70. Is.EqualTo(client.CapsSeedUrl),
  71. "Incorrect caps object path set up in sceneA");
  72. // FIXME: This is a hack to get the test working - really the normal OpenSim mechanisms should be used.
  73. client.TeleportTargetScene = sceneB;
  74. client.Teleport(sceneB.RegionInfo.RegionHandle, new Vector3(100, 100, 100), new Vector3(40, 40, 40));
  75. Assert.That(sceneB.GetScenePresence(agentId), Is.Not.Null, "Client does not have an agent in sceneB");
  76. Assert.That(sceneA.GetScenePresence(agentId), Is.Null, "Client still had an agent in sceneA");
  77. ICapabilitiesModule sceneBCapsModule = sceneB.RequestModuleInterface<ICapabilitiesModule>();
  78. // Temporary assertion - caps url construction should at least be doable through a method.
  79. Assert.That(
  80. "http://" + sceneB.RegionInfo.ExternalHostName + ":" + sceneB.RegionInfo.HttpPort + "/CAPS/" + sceneBCapsModule.GetCapsPath(agentId) + "0000/",
  81. Is.EqualTo(client.CapsSeedUrl),
  82. "Incorrect caps object path set up in sceneB");
  83. // This assertion will currently fail since we don't remove the caps paths when no longer needed
  84. //Assert.That(sceneACapsModule.GetCapsPath(agentId), Is.Null, "sceneA still had a caps object path");
  85. // TODO: Check that more of everything is as it should be
  86. // TODO: test what happens if we try to teleport to a region that doesn't exist
  87. }
  88. }
  89. }