PacketHandlerTests.cs 4.6 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 OpenSimulator 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 OpenMetaverse;
  30. using OpenMetaverse.Packets;
  31. using OpenSim.Framework;
  32. using OpenSim.Tests.Common.Mock;
  33. using OpenSim.Tests.Common;
  34. namespace OpenSim.Region.ClientStack.LindenUDP.Tests
  35. {
  36. /// <summary>
  37. /// Tests for the LL packet handler
  38. /// </summary>
  39. [TestFixture]
  40. public class PacketHandlerTests : OpenSimTestCase
  41. {
  42. // [Test]
  43. // /// <summary>
  44. // /// More a placeholder, really
  45. // /// </summary>
  46. // public void InPacketTest()
  47. // {
  48. // TestHelper.InMethod();
  49. //
  50. // AgentCircuitData agent = new AgentCircuitData();
  51. // agent.AgentID = UUID.Random();
  52. // agent.firstname = "testfirstname";
  53. // agent.lastname = "testlastname";
  54. // agent.SessionID = UUID.Zero;
  55. // agent.SecureSessionID = UUID.Zero;
  56. // agent.circuitcode = 123;
  57. // agent.BaseFolder = UUID.Zero;
  58. // agent.InventoryFolder = UUID.Zero;
  59. // agent.startpos = Vector3.Zero;
  60. // agent.CapsPath = "http://wibble.com";
  61. //
  62. // TestLLUDPServer testLLUDPServer;
  63. // TestLLPacketServer testLLPacketServer;
  64. // AgentCircuitManager acm;
  65. // IScene scene = new MockScene();
  66. // SetupStack(scene, out testLLUDPServer, out testLLPacketServer, out acm);
  67. //
  68. // TestClient testClient = new TestClient(agent, scene);
  69. //
  70. // LLPacketHandler packetHandler
  71. // = new LLPacketHandler(testClient, testLLPacketServer, new ClientStackUserSettings());
  72. //
  73. // packetHandler.InPacket(new AgentAnimationPacket());
  74. // LLQueItem receivedPacket = packetHandler.PacketQueue.Dequeue();
  75. //
  76. // Assert.That(receivedPacket, Is.Not.Null);
  77. // Assert.That(receivedPacket.Incoming, Is.True);
  78. // Assert.That(receivedPacket.Packet, Is.TypeOf(typeof(AgentAnimationPacket)));
  79. // }
  80. //
  81. // /// <summary>
  82. // /// Add a client for testing
  83. // /// </summary>
  84. // /// <param name="scene"></param>
  85. // /// <param name="testLLUDPServer"></param>
  86. // /// <param name="testPacketServer"></param>
  87. // /// <param name="acm">Agent circuit manager used in setting up the stack</param>
  88. // protected void SetupStack(
  89. // IScene scene, out TestLLUDPServer testLLUDPServer, out TestLLPacketServer testPacketServer,
  90. // out AgentCircuitManager acm)
  91. // {
  92. // IConfigSource configSource = new IniConfigSource();
  93. // ClientStackUserSettings userSettings = new ClientStackUserSettings();
  94. // testLLUDPServer = new TestLLUDPServer();
  95. // acm = new AgentCircuitManager();
  96. //
  97. // uint port = 666;
  98. // testLLUDPServer.Initialise(null, ref port, 0, false, configSource, acm);
  99. // testPacketServer = new TestLLPacketServer(testLLUDPServer, userSettings);
  100. // testLLUDPServer.LocalScene = scene;
  101. // }
  102. }
  103. }