LSL_ApiInventoryTests.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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 System;
  28. using System.Collections.Generic;
  29. using System.Reflection;
  30. using System.Text;
  31. using log4net;
  32. using Nini.Config;
  33. using NUnit.Framework;
  34. using OpenMetaverse;
  35. using OpenMetaverse.Assets;
  36. using OpenMetaverse.StructuredData;
  37. using OpenSim.Framework;
  38. using OpenSim.Region.CoreModules.Avatar.AvatarFactory;
  39. using OpenSim.Region.OptionalModules.World.NPC;
  40. using OpenSim.Region.Framework.Scenes;
  41. using OpenSim.Region.ScriptEngine.Shared;
  42. using OpenSim.Region.ScriptEngine.Shared.Api;
  43. using OpenSim.Region.ScriptEngine.Shared.Instance;
  44. using OpenSim.Services.Interfaces;
  45. using OpenSim.Tests.Common;
  46. using PermissionMask = OpenSim.Framework.PermissionMask;
  47. namespace OpenSim.Region.ScriptEngine.Shared.Tests
  48. {
  49. /// <summary>
  50. /// Tests for inventory functions in LSL
  51. /// </summary>
  52. [TestFixture]
  53. public class LSL_ApiInventoryTests : OpenSimTestCase
  54. {
  55. protected Scene m_scene;
  56. protected XEngine.XEngine m_engine;
  57. [SetUp]
  58. public override void SetUp()
  59. {
  60. base.SetUp();
  61. IConfigSource initConfigSource = new IniConfigSource();
  62. IConfig config = initConfigSource.AddConfig("XEngine");
  63. config.Set("Enabled", "true");
  64. m_scene = new SceneHelpers().SetupScene();
  65. SceneHelpers.SetupSceneModules(m_scene, initConfigSource);
  66. m_engine = new XEngine.XEngine();
  67. m_engine.Initialise(initConfigSource);
  68. m_engine.AddRegion(m_scene);
  69. }
  70. /// <summary>
  71. /// Test giving inventory from an object to an object where both are owned by the same user.
  72. /// </summary>
  73. [Test]
  74. public void TestLlGiveInventoryO2OSameOwner()
  75. {
  76. TestHelpers.InMethod();
  77. // log4net.Config.XmlConfigurator.Configure();
  78. UUID userId = TestHelpers.ParseTail(0x1);
  79. string inventoryItemName = "item1";
  80. SceneObjectGroup so1 = SceneHelpers.CreateSceneObject(1, userId, "so1", 0x10);
  81. m_scene.AddSceneObject(so1);
  82. // Create an object embedded inside the first
  83. UUID itemId = TestHelpers.ParseTail(0x20);
  84. TaskInventoryHelpers.AddSceneObject(m_scene, so1.RootPart, inventoryItemName, itemId, userId);
  85. LSL_Api api = new LSL_Api();
  86. api.Initialize(m_engine, so1.RootPart, null, null);
  87. // Create a second object
  88. SceneObjectGroup so2 = SceneHelpers.CreateSceneObject(1, userId, "so2", 0x100);
  89. m_scene.AddSceneObject(so2);
  90. api.llGiveInventory(so2.UUID.ToString(), inventoryItemName);
  91. // Item has copy permissions so original should stay intact.
  92. List<TaskInventoryItem> originalItems = so1.RootPart.Inventory.GetInventoryItems();
  93. Assert.That(originalItems.Count, Is.EqualTo(1));
  94. List<TaskInventoryItem> copiedItems = so2.RootPart.Inventory.GetInventoryItems(inventoryItemName);
  95. Assert.That(copiedItems.Count, Is.EqualTo(1));
  96. Assert.That(copiedItems[0].Name, Is.EqualTo(inventoryItemName));
  97. }
  98. /// <summary>
  99. /// Test giving inventory from an object to an object where they have different owners
  100. /// </summary>
  101. [Test]
  102. public void TestLlGiveInventoryO2ODifferentOwners()
  103. {
  104. TestHelpers.InMethod();
  105. // log4net.Config.XmlConfigurator.Configure();
  106. UUID user1Id = TestHelpers.ParseTail(0x1);
  107. UUID user2Id = TestHelpers.ParseTail(0x2);
  108. string inventoryItemName = "item1";
  109. SceneObjectGroup so1 = SceneHelpers.CreateSceneObject(1, user1Id, "so1", 0x10);
  110. m_scene.AddSceneObject(so1);
  111. LSL_Api api = new LSL_Api();
  112. api.Initialize(m_engine, so1.RootPart, null, null);
  113. // Create an object embedded inside the first
  114. UUID itemId = TestHelpers.ParseTail(0x20);
  115. TaskInventoryHelpers.AddSceneObject(m_scene, so1.RootPart, inventoryItemName, itemId, user1Id);
  116. // Create a second object
  117. SceneObjectGroup so2 = SceneHelpers.CreateSceneObject(1, user2Id, "so2", 0x100);
  118. m_scene.AddSceneObject(so2);
  119. LSL_Api api2 = new LSL_Api();
  120. api2.Initialize(m_engine, so2.RootPart, null, null);
  121. // *** Firstly, we test where llAllowInventoryDrop() has not been called. ***
  122. api.llGiveInventory(so2.UUID.ToString(), inventoryItemName);
  123. {
  124. // Item has copy permissions so original should stay intact.
  125. List<TaskInventoryItem> originalItems = so1.RootPart.Inventory.GetInventoryItems();
  126. Assert.That(originalItems.Count, Is.EqualTo(1));
  127. // Should have not copied
  128. List<TaskInventoryItem> copiedItems = so2.RootPart.Inventory.GetInventoryItems(inventoryItemName);
  129. Assert.That(copiedItems.Count, Is.EqualTo(0));
  130. }
  131. // *** Secondly, we turn on allow inventory drop in the target and retest. ***
  132. api2.llAllowInventoryDrop(1);
  133. api.llGiveInventory(so2.UUID.ToString(), inventoryItemName);
  134. {
  135. // Item has copy permissions so original should stay intact.
  136. List<TaskInventoryItem> originalItems = so1.RootPart.Inventory.GetInventoryItems();
  137. Assert.That(originalItems.Count, Is.EqualTo(1));
  138. // Should now have copied.
  139. List<TaskInventoryItem> copiedItems = so2.RootPart.Inventory.GetInventoryItems(inventoryItemName);
  140. Assert.That(copiedItems.Count, Is.EqualTo(1));
  141. Assert.That(copiedItems[0].Name, Is.EqualTo(inventoryItemName));
  142. }
  143. }
  144. /// <summary>
  145. /// Test giving inventory from an object to an avatar that is not the object's owner.
  146. /// </summary>
  147. [Test]
  148. public void TestLlGiveInventoryO2DifferentAvatar()
  149. {
  150. TestHelpers.InMethod();
  151. // TestHelpers.EnableLogging();
  152. UUID user1Id = TestHelpers.ParseTail(0x1);
  153. UUID user2Id = TestHelpers.ParseTail(0x2);
  154. string inventoryItemName = "item1";
  155. SceneObjectGroup so1 = SceneHelpers.CreateSceneObject(1, user1Id, "so1", 0x10);
  156. m_scene.AddSceneObject(so1);
  157. LSL_Api api = new LSL_Api();
  158. api.Initialize(m_engine, so1.RootPart, null, null);
  159. // Create an object embedded inside the first
  160. UUID itemId = TestHelpers.ParseTail(0x20);
  161. TaskInventoryHelpers.AddSceneObject(m_scene, so1.RootPart, inventoryItemName, itemId, user1Id);
  162. UserAccountHelpers.CreateUserWithInventory(m_scene, user2Id);
  163. api.llGiveInventory(user2Id.ToString(), inventoryItemName);
  164. InventoryItemBase receivedItem
  165. = UserInventoryHelpers.GetInventoryItem(
  166. m_scene.InventoryService, user2Id, string.Format("Objects/{0}", inventoryItemName));
  167. Assert.IsNotNull(receivedItem);
  168. }
  169. /// <summary>
  170. /// Test giving inventory from an object to an avatar that is not the object's owner and where the next
  171. /// permissions do not include mod.
  172. /// </summary>
  173. [Test]
  174. public void TestLlGiveInventoryO2DifferentAvatarNoMod()
  175. {
  176. TestHelpers.InMethod();
  177. // TestHelpers.EnableLogging();
  178. UUID user1Id = TestHelpers.ParseTail(0x1);
  179. UUID user2Id = TestHelpers.ParseTail(0x2);
  180. string inventoryItemName = "item1";
  181. SceneObjectGroup so1 = SceneHelpers.CreateSceneObject(1, user1Id, "so1", 0x10);
  182. m_scene.AddSceneObject(so1);
  183. LSL_Api api = new LSL_Api();
  184. api.Initialize(m_engine, so1.RootPart, null, null);
  185. // Create an object embedded inside the first
  186. UUID itemId = TestHelpers.ParseTail(0x20);
  187. TaskInventoryItem tii
  188. = TaskInventoryHelpers.AddSceneObject(m_scene, so1.RootPart, inventoryItemName, itemId, user1Id);
  189. tii.NextPermissions &= ~((uint)PermissionMask.Modify);
  190. UserAccountHelpers.CreateUserWithInventory(m_scene, user2Id);
  191. api.llGiveInventory(user2Id.ToString(), inventoryItemName);
  192. InventoryItemBase receivedItem
  193. = UserInventoryHelpers.GetInventoryItem(
  194. m_scene.InventoryService, user2Id, string.Format("Objects/{0}", inventoryItemName));
  195. Assert.IsNotNull(receivedItem);
  196. Assert.AreEqual(0, receivedItem.CurrentPermissions & (uint)PermissionMask.Modify);
  197. }
  198. [Test]
  199. public void TestLlRemoteLoadScriptPin()
  200. {
  201. TestHelpers.InMethod();
  202. // TestHelpers.EnableLogging();
  203. UUID user1Id = TestHelpers.ParseTail(0x1);
  204. UUID user2Id = TestHelpers.ParseTail(0x2);
  205. SceneObjectGroup sourceSo = SceneHelpers.AddSceneObject(m_scene, "sourceSo", user1Id);
  206. m_scene.AddSceneObject(sourceSo);
  207. LSL_Api api = new LSL_Api();
  208. api.Initialize(m_engine, sourceSo.RootPart, null, null);
  209. TaskInventoryHelpers.AddScript(m_scene, sourceSo.RootPart, "script", "Hello World");
  210. SceneObjectGroup targetSo = SceneHelpers.AddSceneObject(m_scene, "targetSo", user1Id);
  211. SceneObjectGroup otherOwnedTargetSo = SceneHelpers.AddSceneObject(m_scene, "otherOwnedTargetSo", user2Id);
  212. // Test that we cannot load a script when the target pin has never been set (i.e. it is zero)
  213. api.llRemoteLoadScriptPin(targetSo.UUID.ToString(), "script", 0, 0, 0);
  214. Assert.IsNull(targetSo.RootPart.Inventory.GetInventoryItem("script"));
  215. // Test that we cannot load a script when the given pin does not match the target
  216. targetSo.RootPart.ScriptAccessPin = 5;
  217. api.llRemoteLoadScriptPin(targetSo.UUID.ToString(), "script", 3, 0, 0);
  218. Assert.IsNull(targetSo.RootPart.Inventory.GetInventoryItem("script"));
  219. // Test that we cannot load into a prim with a different owner
  220. otherOwnedTargetSo.RootPart.ScriptAccessPin = 3;
  221. api.llRemoteLoadScriptPin(otherOwnedTargetSo.UUID.ToString(), "script", 3, 0, 0);
  222. Assert.IsNull(otherOwnedTargetSo.RootPart.Inventory.GetInventoryItem("script"));
  223. // Test that we can load a script when given pin and dest pin match.
  224. targetSo.RootPart.ScriptAccessPin = 3;
  225. api.llRemoteLoadScriptPin(targetSo.UUID.ToString(), "script", 3, 0, 0);
  226. TaskInventoryItem insertedItem = targetSo.RootPart.Inventory.GetInventoryItem("script");
  227. Assert.IsNotNull(insertedItem);
  228. // Test that we can no longer load if access pin is unset
  229. targetSo.RootPart.Inventory.RemoveInventoryItem(insertedItem.ItemID);
  230. Assert.IsNull(targetSo.RootPart.Inventory.GetInventoryItem("script"));
  231. targetSo.RootPart.ScriptAccessPin = 0;
  232. api.llRemoteLoadScriptPin(otherOwnedTargetSo.UUID.ToString(), "script", 3, 0, 0);
  233. Assert.IsNull(otherOwnedTargetSo.RootPart.Inventory.GetInventoryItem("script"));
  234. }
  235. }
  236. }