diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | 41 |
1 files changed, 32 insertions, 9 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs index 07fbf55..c75a5b3 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | |||
@@ -62,7 +62,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
62 | /// </summary> | 62 | /// </summary> |
63 | /// <param name="testLLUDPServer"></param> | 63 | /// <param name="testLLUDPServer"></param> |
64 | /// <param name="acm">Agent circuit manager used in setting up the stack</param> | 64 | /// <param name="acm">Agent circuit manager used in setting up the stack</param> |
65 | protected void SetupStack( out TestLLUDPServer testLLUDPServer, out AgentCircuitManager acm) | 65 | protected void SetupStack(out TestLLUDPServer testLLUDPServer, out AgentCircuitManager acm) |
66 | { | 66 | { |
67 | ClientStackUserSettings userSettings = new ClientStackUserSettings(); | 67 | ClientStackUserSettings userSettings = new ClientStackUserSettings(); |
68 | testLLUDPServer = new TestLLUDPServer(); | 68 | testLLUDPServer = new TestLLUDPServer(); |
@@ -78,9 +78,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
78 | /// Set up a client for tests which aren't concerned with this process itself | 78 | /// Set up a client for tests which aren't concerned with this process itself |
79 | /// </summary> | 79 | /// </summary> |
80 | /// <param name="circuitCode"></param> | 80 | /// <param name="circuitCode"></param> |
81 | /// <param name="epSender"></param> | ||
81 | /// <param name="testLLUDPServer"></param> | 82 | /// <param name="testLLUDPServer"></param> |
82 | /// <param name="acm"></param> | 83 | /// <param name="acm"></param> |
83 | protected void AddClient(uint circuitCode, TestLLUDPServer testLLUDPServer, AgentCircuitManager acm) | 84 | protected void AddClient( |
85 | uint circuitCode, EndPoint epSender, TestLLUDPServer testLLUDPServer, AgentCircuitManager acm) | ||
84 | { | 86 | { |
85 | UUID myAgentUuid = UUID.Parse("00000000-0000-0000-0000-000000000001"); | 87 | UUID myAgentUuid = UUID.Parse("00000000-0000-0000-0000-000000000001"); |
86 | UUID mySessionUuid = UUID.Parse("00000000-0000-0000-0000-000000000002"); | 88 | UUID mySessionUuid = UUID.Parse("00000000-0000-0000-0000-000000000002"); |
@@ -97,19 +99,17 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
97 | uccpCcBlock.ID = myAgentUuid; | 99 | uccpCcBlock.ID = myAgentUuid; |
98 | uccpCcBlock.SessionID = mySessionUuid; | 100 | uccpCcBlock.SessionID = mySessionUuid; |
99 | uccp.CircuitCode = uccpCcBlock; | 101 | uccp.CircuitCode = uccpCcBlock; |
100 | 102 | ||
101 | EndPoint testEp = new IPEndPoint(IPAddress.Loopback, 999); | ||
102 | |||
103 | acm.AddNewCircuit(circuitCode, acd); | 103 | acm.AddNewCircuit(circuitCode, acd); |
104 | 104 | ||
105 | testLLUDPServer.LoadReceive(uccp, testEp); | 105 | testLLUDPServer.LoadReceive(uccp, epSender); |
106 | testLLUDPServer.ReceiveData(null); | 106 | testLLUDPServer.ReceiveData(null); |
107 | } | 107 | } |
108 | 108 | ||
109 | [Test] | ||
110 | /// <summary> | 109 | /// <summary> |
111 | /// Test adding a client to the stack | 110 | /// Test adding a client to the stack |
112 | /// </summary> | 111 | /// </summary> |
112 | [Test] | ||
113 | public void TestAddClient() | 113 | public void TestAddClient() |
114 | { | 114 | { |
115 | uint myCircuitCode = 123456; | 115 | uint myCircuitCode = 123456; |
@@ -151,10 +151,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
151 | Assert.IsFalse(testLLUDPServer.HasCircuit(101)); | 151 | Assert.IsFalse(testLLUDPServer.HasCircuit(101)); |
152 | } | 152 | } |
153 | 153 | ||
154 | [Test] | ||
155 | /// <summary> | 154 | /// <summary> |
156 | /// Test removing a client from the stack | 155 | /// Test removing a client from the stack |
157 | /// </summary> | 156 | /// </summary> |
157 | [Test] | ||
158 | public void TestRemoveClient() | 158 | public void TestRemoveClient() |
159 | { | 159 | { |
160 | uint myCircuitCode = 123457; | 160 | uint myCircuitCode = 123457; |
@@ -162,7 +162,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
162 | TestLLUDPServer testLLUDPServer; | 162 | TestLLUDPServer testLLUDPServer; |
163 | AgentCircuitManager acm; | 163 | AgentCircuitManager acm; |
164 | SetupStack(out testLLUDPServer, out acm); | 164 | SetupStack(out testLLUDPServer, out acm); |
165 | AddClient(myCircuitCode, testLLUDPServer, acm); | 165 | AddClient(myCircuitCode, new IPEndPoint(IPAddress.Loopback, 1000), testLLUDPServer, acm); |
166 | 166 | ||
167 | testLLUDPServer.RemoveClientCircuit(myCircuitCode); | 167 | testLLUDPServer.RemoveClientCircuit(myCircuitCode); |
168 | Assert.IsFalse(testLLUDPServer.HasCircuit(myCircuitCode)); | 168 | Assert.IsFalse(testLLUDPServer.HasCircuit(myCircuitCode)); |
@@ -171,5 +171,28 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
171 | testLLUDPServer.RemoveClientCircuit(101); | 171 | testLLUDPServer.RemoveClientCircuit(101); |
172 | Assert.IsFalse(testLLUDPServer.HasCircuit(101)); | 172 | Assert.IsFalse(testLLUDPServer.HasCircuit(101)); |
173 | } | 173 | } |
174 | |||
175 | /// <summary> | ||
176 | /// Make sure that the client stack reacts okay to malformed packets | ||
177 | /// </summary> | ||
178 | [Test] | ||
179 | public void TestMalformedPacketSend() | ||
180 | { | ||
181 | uint myCircuitCode = 123458; | ||
182 | EndPoint testEp = new IPEndPoint(IPAddress.Loopback, 1001); | ||
183 | |||
184 | TestLLUDPServer testLLUDPServer; | ||
185 | AgentCircuitManager acm; | ||
186 | SetupStack(out testLLUDPServer, out acm); | ||
187 | AddClient(myCircuitCode, testEp, testLLUDPServer, acm); | ||
188 | |||
189 | byte[] data = new byte[] { 0x01, 0x02, 0x03, 0x04 }; | ||
190 | |||
191 | testLLUDPServer.LoadReceive(data, testEp); | ||
192 | testLLUDPServer.ReceiveData(null); | ||
193 | |||
194 | // Check that we are still here | ||
195 | Assert.IsTrue(testLLUDPServer.HasCircuit(myCircuitCode)); | ||
196 | } | ||
174 | } | 197 | } |
175 | } | 198 | } |