diff options
author | Diva Canto | 2011-04-30 09:24:15 -0700 |
---|---|---|
committer | Diva Canto | 2011-04-30 09:24:15 -0700 |
commit | d8ee0cbe1cf93ca521f52ce39aa2a15cb5784e48 (patch) | |
tree | 4958279e2c75dcfa50021a8e559fb6ddc0a76725 /OpenSim/Region/ClientStack/Linden/UDP/Tests/PacketHandlerTests.cs | |
parent | Delaying starting the scripts on TPs and crossings until the agent is root. (diff) | |
download | opensim-SC-d8ee0cbe1cf93ca521f52ce39aa2a15cb5784e48.zip opensim-SC-d8ee0cbe1cf93ca521f52ce39aa2a15cb5784e48.tar.gz opensim-SC-d8ee0cbe1cf93ca521f52ce39aa2a15cb5784e48.tar.bz2 opensim-SC-d8ee0cbe1cf93ca521f52ce39aa2a15cb5784e48.tar.xz |
First stab at cleaning up Caps. Compiles. Untested.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/Tests/PacketHandlerTests.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/Tests/PacketHandlerTests.cs | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/Tests/PacketHandlerTests.cs b/OpenSim/Region/ClientStack/Linden/UDP/Tests/PacketHandlerTests.cs new file mode 100644 index 0000000..7d0757f --- /dev/null +++ b/OpenSim/Region/ClientStack/Linden/UDP/Tests/PacketHandlerTests.cs | |||
@@ -0,0 +1,106 @@ | |||
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 | |||
28 | using Nini.Config; | ||
29 | using NUnit.Framework; | ||
30 | using NUnit.Framework.SyntaxHelpers; | ||
31 | using OpenMetaverse; | ||
32 | using OpenMetaverse.Packets; | ||
33 | using OpenSim.Framework; | ||
34 | using OpenSim.Tests.Common.Mock; | ||
35 | using OpenSim.Tests.Common; | ||
36 | |||
37 | namespace OpenSim.Region.ClientStack.LindenUDP.Tests | ||
38 | { | ||
39 | /// <summary> | ||
40 | /// Tests for the LL packet handler | ||
41 | /// </summary> | ||
42 | [TestFixture] | ||
43 | public class PacketHandlerTests | ||
44 | { | ||
45 | [Test] | ||
46 | /// <summary> | ||
47 | /// More a placeholder, really | ||
48 | /// </summary> | ||
49 | public void InPacketTest() | ||
50 | { | ||
51 | TestHelper.InMethod(); | ||
52 | |||
53 | AgentCircuitData agent = new AgentCircuitData(); | ||
54 | agent.AgentID = UUID.Random(); | ||
55 | agent.firstname = "testfirstname"; | ||
56 | agent.lastname = "testlastname"; | ||
57 | agent.SessionID = UUID.Zero; | ||
58 | agent.SecureSessionID = UUID.Zero; | ||
59 | agent.circuitcode = 123; | ||
60 | agent.BaseFolder = UUID.Zero; | ||
61 | agent.InventoryFolder = UUID.Zero; | ||
62 | agent.startpos = Vector3.Zero; | ||
63 | agent.CapsPath = "http://wibble.com"; | ||
64 | |||
65 | TestLLUDPServer testLLUDPServer; | ||
66 | TestLLPacketServer testLLPacketServer; | ||
67 | AgentCircuitManager acm; | ||
68 | IScene scene = new MockScene(); | ||
69 | SetupStack(scene, out testLLUDPServer, out testLLPacketServer, out acm); | ||
70 | |||
71 | TestClient testClient = new TestClient(agent, scene); | ||
72 | |||
73 | LLPacketHandler packetHandler | ||
74 | = new LLPacketHandler(testClient, testLLPacketServer, new ClientStackUserSettings()); | ||
75 | |||
76 | packetHandler.InPacket(new AgentAnimationPacket()); | ||
77 | LLQueItem receivedPacket = packetHandler.PacketQueue.Dequeue(); | ||
78 | |||
79 | Assert.That(receivedPacket, Is.Not.Null); | ||
80 | Assert.That(receivedPacket.Incoming, Is.True); | ||
81 | Assert.That(receivedPacket.Packet, Is.TypeOf(typeof(AgentAnimationPacket))); | ||
82 | } | ||
83 | |||
84 | /// <summary> | ||
85 | /// Add a client for testing | ||
86 | /// </summary> | ||
87 | /// <param name="scene"></param> | ||
88 | /// <param name="testLLUDPServer"></param> | ||
89 | /// <param name="testPacketServer"></param> | ||
90 | /// <param name="acm">Agent circuit manager used in setting up the stack</param> | ||
91 | protected void SetupStack( | ||
92 | IScene scene, out TestLLUDPServer testLLUDPServer, out TestLLPacketServer testPacketServer, | ||
93 | out AgentCircuitManager acm) | ||
94 | { | ||
95 | IConfigSource configSource = new IniConfigSource(); | ||
96 | ClientStackUserSettings userSettings = new ClientStackUserSettings(); | ||
97 | testLLUDPServer = new TestLLUDPServer(); | ||
98 | acm = new AgentCircuitManager(); | ||
99 | |||
100 | uint port = 666; | ||
101 | testLLUDPServer.Initialise(null, ref port, 0, false, configSource, acm); | ||
102 | testPacketServer = new TestLLPacketServer(testLLUDPServer, userSettings); | ||
103 | testLLUDPServer.LocalScene = scene; | ||
104 | } | ||
105 | } | ||
106 | } | ||