aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_ApiHttpTests.cs
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-11-03 21:44:39 +1000
committerDavid Walter Seikel2016-11-03 21:44:39 +1000
commit134f86e8d5c414409631b25b8c6f0ee45fbd8631 (patch)
tree216b89d3fb89acfb81be1e440c25c41ab09fa96d /OpenSim/Region/ScriptEngine/Shared/Tests/LSL_ApiHttpTests.cs
parentMore changing to production grid. Double oops. (diff)
downloadopensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.zip
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.gz
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.bz2
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.xz
Initial update to OpenSim 0.8.2.1 source code.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Tests/LSL_ApiHttpTests.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Tests/LSL_ApiHttpTests.cs248
1 files changed, 248 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_ApiHttpTests.cs b/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_ApiHttpTests.cs
new file mode 100644
index 0000000..9a5ebce
--- /dev/null
+++ b/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_ApiHttpTests.cs
@@ -0,0 +1,248 @@
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
28using System;
29using System.Collections.Generic;
30using System.IO;
31using System.Net;
32using System.Reflection;
33using System.Text;
34using log4net;
35using Nini.Config;
36using NUnit.Framework;
37using OpenMetaverse;
38using OpenSim.Framework;
39using OpenSim.Framework.Servers;
40using OpenSim.Framework.Servers.HttpServer;
41using OpenSim.Region.CoreModules.Scripting.LSLHttp;
42using OpenSim.Region.Framework.Scenes;
43using OpenSim.Region.ScriptEngine.Shared;
44using OpenSim.Region.ScriptEngine.Shared.Api;
45using OpenSim.Region.ScriptEngine.Shared.ScriptBase;
46using OpenSim.Services.Interfaces;
47using OpenSim.Tests.Common;
48
49namespace OpenSim.Region.ScriptEngine.Shared.Tests
50{
51 /// <summary>
52 /// Tests for HTTP related functions in LSL
53 /// </summary>
54 [TestFixture]
55 public class LSL_ApiHttpTests : OpenSimTestCase
56 {
57 private Scene m_scene;
58 private MockScriptEngine m_engine;
59 private UrlModule m_urlModule;
60
61 private TaskInventoryItem m_scriptItem;
62 private LSL_Api m_lslApi;
63
64 [TestFixtureSetUp]
65 public void TestFixtureSetUp()
66 {
67 // Don't allow tests to be bamboozled by asynchronous events. Execute everything on the same thread.
68 Util.FireAndForgetMethod = FireAndForgetMethod.RegressionTest;
69 }
70
71 [TestFixtureTearDown]
72 public void TestFixureTearDown()
73 {
74 // We must set this back afterwards, otherwise later tests will fail since they're expecting multiple
75 // threads. Possibly, later tests should be rewritten so none of them require async stuff (which regression
76 // tests really shouldn't).
77 Util.FireAndForgetMethod = Util.DefaultFireAndForgetMethod;
78 }
79
80 [SetUp]
81 public override void SetUp()
82 {
83 base.SetUp();
84
85 // This is an unfortunate bit of clean up we have to do because MainServer manages things through static
86 // variables and the VM is not restarted between tests.
87 uint port = 9999;
88 MainServer.RemoveHttpServer(port);
89
90 BaseHttpServer server = new BaseHttpServer(port, false, 0, "");
91 MainServer.AddHttpServer(server);
92 MainServer.Instance = server;
93
94 server.Start();
95
96 m_engine = new MockScriptEngine();
97 m_urlModule = new UrlModule();
98
99 m_scene = new SceneHelpers().SetupScene();
100 SceneHelpers.SetupSceneModules(m_scene, new IniConfigSource(), m_engine, m_urlModule);
101
102 SceneObjectGroup so = SceneHelpers.AddSceneObject(m_scene);
103 m_scriptItem = TaskInventoryHelpers.AddScript(m_scene.AssetService, so.RootPart);
104
105 // This is disconnected from the actual script - the mock engine does not set up any LSL_Api atm.
106 // Possibly this could be done and we could obtain it directly from the MockScriptEngine.
107 m_lslApi = new LSL_Api();
108 m_lslApi.Initialize(m_engine, so.RootPart, m_scriptItem);
109 }
110
111 [TearDown]
112 public void TearDown()
113 {
114 MainServer.Instance.Stop();
115 }
116
117 [Test]
118 public void TestLlReleaseUrl()
119 {
120 TestHelpers.InMethod();
121
122 m_lslApi.llRequestURL();
123 string returnedUri = m_engine.PostedEvents[m_scriptItem.ItemID][0].Params[2].ToString();
124
125 {
126 // Check that the initial number of URLs is correct
127 Assert.That(m_lslApi.llGetFreeURLs().value, Is.EqualTo(m_urlModule.TotalUrls - 1));
128 }
129
130 {
131 // Check releasing a non-url
132 m_lslApi.llReleaseURL("GARBAGE");
133 Assert.That(m_lslApi.llGetFreeURLs().value, Is.EqualTo(m_urlModule.TotalUrls - 1));
134 }
135
136 {
137 // Check releasing a non-existing url
138 m_lslApi.llReleaseURL("http://example.com");
139 Assert.That(m_lslApi.llGetFreeURLs().value, Is.EqualTo(m_urlModule.TotalUrls - 1));
140 }
141
142 {
143 // Check URL release
144 m_lslApi.llReleaseURL(returnedUri);
145 Assert.That(m_lslApi.llGetFreeURLs().value, Is.EqualTo(m_urlModule.TotalUrls));
146
147 HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(returnedUri);
148
149 bool gotExpectedException = false;
150
151 try
152 {
153 using (HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse())
154 {}
155 }
156 catch (WebException e)
157 {
158 using (HttpWebResponse response = (HttpWebResponse)e.Response)
159 gotExpectedException = response.StatusCode == HttpStatusCode.NotFound;
160 }
161
162 Assert.That(gotExpectedException, Is.True);
163 }
164
165 {
166 // Check releasing the same URL again
167 m_lslApi.llReleaseURL(returnedUri);
168 Assert.That(m_lslApi.llGetFreeURLs().value, Is.EqualTo(m_urlModule.TotalUrls));
169 }
170 }
171
172 [Test]
173 public void TestLlRequestUrl()
174 {
175 TestHelpers.InMethod();
176
177 string requestId = m_lslApi.llRequestURL();
178 Assert.That(requestId, Is.Not.EqualTo(UUID.Zero.ToString()));
179 string returnedUri;
180
181 {
182 // Check that URL is correctly set up
183 Assert.That(m_lslApi.llGetFreeURLs().value, Is.EqualTo(m_urlModule.TotalUrls - 1));
184
185 Assert.That(m_engine.PostedEvents.ContainsKey(m_scriptItem.ItemID));
186
187 List<EventParams> events = m_engine.PostedEvents[m_scriptItem.ItemID];
188 Assert.That(events.Count, Is.EqualTo(1));
189 EventParams eventParams = events[0];
190 Assert.That(eventParams.EventName, Is.EqualTo("http_request"));
191
192 UUID returnKey;
193 string rawReturnKey = eventParams.Params[0].ToString();
194 string method = eventParams.Params[1].ToString();
195 returnedUri = eventParams.Params[2].ToString();
196
197 Assert.That(UUID.TryParse(rawReturnKey, out returnKey), Is.True);
198 Assert.That(method, Is.EqualTo(ScriptBaseClass.URL_REQUEST_GRANTED));
199 Assert.That(Uri.IsWellFormedUriString(returnedUri, UriKind.Absolute), Is.True);
200 }
201
202 {
203 // Check that request to URL works.
204 string testResponse = "Hello World";
205
206 m_engine.ClearPostedEvents();
207 m_engine.PostEventHook
208 += (itemId, evp) => m_lslApi.llHTTPResponse(evp.Params[0].ToString(), 200, testResponse);
209
210// Console.WriteLine("Trying {0}", returnedUri);
211
212 AssertHttpResponse(returnedUri, testResponse);
213
214 Assert.That(m_engine.PostedEvents.ContainsKey(m_scriptItem.ItemID));
215
216 List<EventParams> events = m_engine.PostedEvents[m_scriptItem.ItemID];
217 Assert.That(events.Count, Is.EqualTo(1));
218 EventParams eventParams = events[0];
219 Assert.That(eventParams.EventName, Is.EqualTo("http_request"));
220
221 UUID returnKey;
222 string rawReturnKey = eventParams.Params[0].ToString();
223 string method = eventParams.Params[1].ToString();
224 string body = eventParams.Params[2].ToString();
225
226 Assert.That(UUID.TryParse(rawReturnKey, out returnKey), Is.True);
227 Assert.That(method, Is.EqualTo("GET"));
228 Assert.That(body, Is.EqualTo(""));
229 }
230 }
231
232 private void AssertHttpResponse(string uri, string expectedResponse)
233 {
234 HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(uri);
235
236 using (HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse())
237 {
238 using (Stream stream = webResponse.GetResponseStream())
239 {
240 using (StreamReader reader = new StreamReader(stream))
241 {
242 Assert.That(reader.ReadToEnd(), Is.EqualTo(expectedResponse));
243 }
244 }
245 }
246 }
247 }
248}