aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/Tests
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-23 17:16:13 +0000
committerJustin Clarke Casey2008-10-23 17:16:13 +0000
commitee3c428040fd026a92f3dd9a43ab4f88dec38181 (patch)
tree1e165d077d9fe2ba88a9b064c79faa827baf19f7 /OpenSim/Region/ClientStack/LindenUDP/Tests
parentadding documentation for region_master_uuid to XML doc comments (diff)
downloadopensim-SC_OLD-ee3c428040fd026a92f3dd9a43ab4f88dec38181.zip
opensim-SC_OLD-ee3c428040fd026a92f3dd9a43ab4f88dec38181.tar.gz
opensim-SC_OLD-ee3c428040fd026a92f3dd9a43ab4f88dec38181.tar.bz2
opensim-SC_OLD-ee3c428040fd026a92f3dd9a43ab4f88dec38181.tar.xz
* Refactor LLUDPServer slightly so that unit tests can pass in data synchronously. Shouldn't be any functional change
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/Tests')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs4
-rwxr-xr-xOpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs54
2 files changed, 56 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
index 3b3eb91..cf24e58 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
@@ -44,10 +44,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
44 [Test] 44 [Test]
45 public void TestAddClient() 45 public void TestAddClient()
46 { 46 {
47 IClientNetworkServer llUdpServer = new LLUDPServer(); 47 TestLLUDPServer testLLUDPServer = new TestLLUDPServer();
48 48
49 uint port = 666; 49 uint port = 666;
50 llUdpServer.Initialise(null, ref port, -1, false, new ClientStackUserSettings(), null, null); 50 testLLUDPServer.Initialise(null, ref port, -1, false, new ClientStackUserSettings(), null, null);
51 51
52 //UseCircuitCodePacket uccp = new UseCircuitCodePacket(); 52 //UseCircuitCodePacket uccp = new UseCircuitCodePacket();
53 //llUdpServer.epS 53 //llUdpServer.epS
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs
new file mode 100755
index 0000000..5e7cbca
--- /dev/null
+++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs
@@ -0,0 +1,54 @@
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
28using System;
29using System.Net;
30using OpenSim.Framework;
31using OpenSim.Framework.Communications.Cache;
32
33namespace OpenSim.Region.ClientStack.LindenUDP
34{
35 /// <summary>
36 /// This class enables synchronous testing of the LLUDPServer by allowing us to load our own data into the end
37 /// receive event
38 /// </summary>
39 public class TestLLUDPServer : LLUDPServer
40 {
41 protected override void BeginReceive()
42 {
43 // Do nothing
44 }
45
46 protected override bool EndReceive(out int numBytes, IAsyncResult result, ref EndPoint epSender)
47 {
48 // TODO: Return a packet loaded in by a test
49 numBytes = 0;
50
51 return true;
52 }
53 }
54}