aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Permissions/Common.cs365
-rw-r--r--OpenSim/Tests/Permissions/DirectTransferTests.cs146
-rw-r--r--OpenSim/Tests/Permissions/IndirectTransferTests.cs123
3 files changed, 634 insertions, 0 deletions
diff --git a/OpenSim/Tests/Permissions/Common.cs b/OpenSim/Tests/Permissions/Common.cs
new file mode 100644
index 0000000..f93c120
--- /dev/null
+++ b/OpenSim/Tests/Permissions/Common.cs
@@ -0,0 +1,365 @@
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 */
27using System;
28using System.Collections.Generic;
29using System.Threading;
30using Nini.Config;
31using NUnit.Framework;
32using OpenMetaverse;
33using OpenSim.Framework;
34using OpenSim.Region.Framework.Scenes;
35using OpenSim.Region.CoreModules.World.Permissions;
36using OpenSim.Region.CoreModules.Avatar.Inventory.Transfer;
37using OpenSim.Region.CoreModules.Framework.InventoryAccess;
38using OpenSim.Services.Interfaces;
39using OpenSim.Tests.Common;
40using PermissionMask = OpenSim.Framework.PermissionMask;
41
42namespace OpenSim.Tests.Permissions
43{
44 [SetUpFixture]
45 public class Common : OpenSimTestCase
46 {
47 public static Common TheInstance;
48
49 public static TestScene TheScene
50 {
51 get { return TheInstance.m_Scene; }
52 }
53
54 public static ScenePresence[] TheAvatars
55 {
56 get { return TheInstance.m_Avatars; }
57 }
58
59 private static string Perms = "Owner: {0}; Group: {1}; Everyone: {2}; Next: {3}";
60 private TestScene m_Scene;
61 private ScenePresence[] m_Avatars = new ScenePresence[3];
62
63 [SetUp]
64 public override void SetUp()
65 {
66 if (TheInstance == null)
67 TheInstance = this;
68
69 base.SetUp();
70 TestHelpers.EnableLogging();
71
72 IConfigSource config = new IniConfigSource();
73 config.AddConfig("Messaging");
74 config.Configs["Messaging"].Set("InventoryTransferModule", "InventoryTransferModule");
75 config.AddConfig("Modules");
76 config.Configs["Modules"].Set("InventoryAccessModule", "BasicInventoryAccessModule");
77 config.AddConfig("InventoryService");
78 config.Configs["InventoryService"].Set("LocalServiceModule", "OpenSim.Services.InventoryService.dll:XInventoryService");
79 config.Configs["InventoryService"].Set("StorageProvider", "OpenSim.Tests.Common.dll:TestXInventoryDataPlugin");
80
81 m_Scene = new SceneHelpers().SetupScene("Test", UUID.Random(), 1000, 1000, config);
82 // Add modules
83 SceneHelpers.SetupSceneModules(m_Scene, config, new DefaultPermissionsModule(), new InventoryTransferModule(), new BasicInventoryAccessModule());
84
85 SetUpBasicEnvironment();
86 }
87
88 /// <summary>
89 /// The basic environment consists of:
90 /// - 3 avatars: A1, A2, A3
91 /// - 6 simple boxes inworld belonging to A0 and with Next Owner perms:
92 /// C, CT, MC, MCT, MT, T
93 /// - Copies of all of these boxes in A0's inventory in the Objects folder
94 /// - One additional box inworld and in A0's inventory which is a copy of MCT, but
95 /// with C removed in inventory. This one is called MCT-C
96 /// </summary>
97 private void SetUpBasicEnvironment()
98 {
99 Console.WriteLine("===> SetUpBasicEnvironment <===");
100
101 // Add 3 avatars
102 for (int i = 0; i < 3; i++)
103 {
104 UUID id = TestHelpers.ParseTail(i + 1);
105
106 m_Avatars[i] = AddScenePresence("Bot", "Bot_" + (i+1), id);
107 Assert.That(m_Avatars[i], Is.Not.Null);
108 Assert.That(m_Avatars[i].IsChildAgent, Is.False);
109 Assert.That(m_Avatars[i].UUID, Is.EqualTo(id));
110 Assert.That(m_Scene.GetScenePresences().Count, Is.EqualTo(i + 1));
111 }
112
113 AddA1Object("Box C", 10, PermissionMask.Copy);
114 AddA1Object("Box CT", 11, PermissionMask.Copy | PermissionMask.Transfer);
115 AddA1Object("Box MC", 12, PermissionMask.Modify | PermissionMask.Copy);
116 AddA1Object("Box MCT", 13, PermissionMask.Modify | PermissionMask.Copy | PermissionMask.Transfer);
117 AddA1Object("Box MT", 14, PermissionMask.Modify | PermissionMask.Transfer);
118 AddA1Object("Box T", 15, PermissionMask.Transfer);
119
120 // MCT-C
121 AddA1Object("Box MCT-C", 16, PermissionMask.Modify | PermissionMask.Copy | PermissionMask.Transfer);
122
123 Thread.Sleep(5000);
124
125 InventoryFolderBase objsFolder = UserInventoryHelpers.GetInventoryFolder(m_Scene.InventoryService, m_Avatars[0].UUID, "Objects");
126 List<InventoryItemBase> items = m_Scene.InventoryService.GetFolderItems(m_Avatars[0].UUID, objsFolder.ID);
127 Assert.That(items.Count, Is.EqualTo(7));
128
129 RevokePermission(0, "Box MCT-C", PermissionMask.Copy);
130 }
131
132 private ScenePresence AddScenePresence(string first, string last, UUID id)
133 {
134 UserAccount ua1 = UserAccountHelpers.CreateUserWithInventory(m_Scene, first, last, id, "pw");
135 ScenePresence sp = SceneHelpers.AddScenePresence(m_Scene, id);
136 Assert.That(m_Scene.AuthenticateHandler.GetAgentCircuitData(id), Is.Not.Null);
137
138 return sp;
139 }
140
141 private void AddA1Object(string name, int suffix, PermissionMask nextOwnerPerms)
142 {
143 // Create a Box. Default permissions are just T
144 SceneObjectGroup box = AddSceneObject(name, suffix, 1, m_Avatars[0].UUID);
145 Assert.True((box.RootPart.NextOwnerMask & (int)PermissionMask.Copy) == 0);
146 Assert.True((box.RootPart.NextOwnerMask & (int)PermissionMask.Modify) == 0);
147 Assert.True((box.RootPart.NextOwnerMask & (int)PermissionMask.Transfer) != 0);
148
149 // field = 16 is NextOwner
150 // set = 1 means add the permission; set = 0 means remove permission
151
152 if ((nextOwnerPerms & PermissionMask.Copy) != 0)
153 m_Scene.HandleObjectPermissionsUpdate((IClientAPI)m_Avatars[0].ClientView, m_Avatars[0].UUID,
154 ((IClientAPI)(m_Avatars[0].ClientView)).SessionId, 16, box.LocalId, (uint)PermissionMask.Copy, 1);
155
156 if ((nextOwnerPerms & PermissionMask.Modify) != 0)
157 m_Scene.HandleObjectPermissionsUpdate((IClientAPI)m_Avatars[0].ClientView, m_Avatars[0].UUID,
158 ((IClientAPI)(m_Avatars[0].ClientView)).SessionId, 16, box.LocalId, (uint)PermissionMask.Modify, 1);
159
160 if ((nextOwnerPerms & PermissionMask.Transfer) == 0)
161 m_Scene.HandleObjectPermissionsUpdate((IClientAPI)m_Avatars[0].ClientView, m_Avatars[0].UUID,
162 ((IClientAPI)(m_Avatars[0].ClientView)).SessionId, 16, box.LocalId, (uint)PermissionMask.Transfer, 0);
163
164 PrintPerms(box);
165 AssertPermissions(nextOwnerPerms, (PermissionMask)box.RootPart.NextOwnerMask, box.OwnerID.ToString().Substring(34) + " : " + box.Name);
166
167 TakeCopyToInventory(0, box);
168
169 }
170
171 public void RevokePermission(int ownerIndex, string name, PermissionMask perm)
172 {
173 InventoryItemBase item = Common.TheInstance.GetItemFromInventory(m_Avatars[ownerIndex].UUID, "Objects", name);
174 Assert.That(item, Is.Not.Null);
175
176 // Clone it, so to avoid aliasing -- just like the viewer does.
177 InventoryItemBase clone = Common.TheInstance.CloneInventoryItem(item);
178 // Revoke the permission in this copy
179 clone.NextPermissions &= ~(uint)perm;
180 Common.TheInstance.AssertPermissions((PermissionMask)clone.NextPermissions & ~perm,
181 (PermissionMask)clone.NextPermissions, Common.TheInstance.IdStr(clone));
182 Assert.That(clone.ID == item.ID);
183
184 // Update properties of the item in inventory. This should affect the original item above.
185 Common.TheScene.UpdateInventoryItemAsset(m_Avatars[ownerIndex].ControllingClient, UUID.Zero, clone.ID, clone);
186
187 item = Common.TheInstance.GetItemFromInventory(m_Avatars[ownerIndex].UUID, "Objects", name);
188 Assert.That(item, Is.Not.Null);
189 Common.TheInstance.PrintPerms(item);
190 Common.TheInstance.AssertPermissions((PermissionMask)item.NextPermissions & ~perm,
191 (PermissionMask)item.NextPermissions, Common.TheInstance.IdStr(item));
192
193 }
194
195 public void PrintPerms(SceneObjectGroup sog)
196 {
197 Console.WriteLine("SOG " + sog.Name + " (" + sog.OwnerID.ToString().Substring(34) + "): " +
198 String.Format(Perms, (PermissionMask)sog.EffectiveOwnerPerms,
199 (PermissionMask)sog.EffectiveGroupPerms, (PermissionMask)sog.EffectiveEveryOnePerms, (PermissionMask)sog.RootPart.NextOwnerMask));
200
201 }
202
203 public void PrintPerms(InventoryItemBase item)
204 {
205 Console.WriteLine("Inv " + item.Name + " (" + item.Owner.ToString().Substring(34) + "): " +
206 String.Format(Perms, (PermissionMask)item.BasePermissions,
207 (PermissionMask)item.GroupPermissions, (PermissionMask)item.EveryOnePermissions, (PermissionMask)item.NextPermissions));
208
209 }
210
211 public void AssertPermissions(PermissionMask desired, PermissionMask actual, string message)
212 {
213 if ((desired & PermissionMask.Copy) != 0)
214 Assert.True((actual & PermissionMask.Copy) != 0, message);
215 else
216 Assert.True((actual & PermissionMask.Copy) == 0, message);
217
218 if ((desired & PermissionMask.Modify) != 0)
219 Assert.True((actual & PermissionMask.Modify) != 0, message);
220 else
221 Assert.True((actual & PermissionMask.Modify) == 0, message);
222
223 if ((desired & PermissionMask.Transfer) != 0)
224 Assert.True((actual & PermissionMask.Transfer) != 0, message);
225 else
226 Assert.True((actual & PermissionMask.Transfer) == 0, message);
227
228 }
229
230 public SceneObjectGroup AddSceneObject(string name, int suffix, int partsToTestCount, UUID ownerID)
231 {
232 SceneObjectGroup so = SceneHelpers.CreateSceneObject(partsToTestCount, ownerID, name, suffix);
233 so.Name = name;
234 so.Description = name;
235
236 Assert.That(m_Scene.AddNewSceneObject(so, false), Is.True);
237 SceneObjectGroup retrievedSo = m_Scene.GetSceneObjectGroup(so.UUID);
238
239 // If the parts have the same UUID then we will consider them as one and the same
240 Assert.That(retrievedSo.PrimCount, Is.EqualTo(partsToTestCount));
241
242 return so;
243 }
244
245 public void TakeCopyToInventory(int userIndex, SceneObjectGroup sog)
246 {
247 InventoryFolderBase objsFolder = UserInventoryHelpers.GetInventoryFolder(m_Scene.InventoryService, m_Avatars[userIndex].UUID, "Objects");
248 Assert.That(objsFolder, Is.Not.Null);
249
250 List<uint> localIds = new List<uint>(); localIds.Add(sog.LocalId);
251 // This is an async operation
252 m_Scene.DeRezObjects((IClientAPI)m_Avatars[userIndex].ClientView, localIds, m_Avatars[userIndex].UUID, DeRezAction.TakeCopy, objsFolder.ID);
253 }
254
255 public InventoryItemBase GetItemFromInventory(UUID userID, string folderName, string itemName)
256 {
257 InventoryFolderBase objsFolder = UserInventoryHelpers.GetInventoryFolder(m_Scene.InventoryService, userID, folderName);
258 Assert.That(objsFolder, Is.Not.Null);
259 List<InventoryItemBase> items = m_Scene.InventoryService.GetFolderItems(userID, objsFolder.ID);
260 InventoryItemBase item = items.Find(i => i.Name == itemName);
261 Assert.That(item, Is.Not.Null);
262
263 return item;
264 }
265
266 public InventoryItemBase CloneInventoryItem(InventoryItemBase item)
267 {
268 InventoryItemBase clone = new InventoryItemBase(item.ID);
269 clone.Name = item.Name;
270 clone.Description = item.Description;
271 clone.AssetID = item.AssetID;
272 clone.AssetType = item.AssetType;
273 clone.BasePermissions = item.BasePermissions;
274 clone.CreatorId = item.CreatorId;
275 clone.CurrentPermissions = item.CurrentPermissions;
276 clone.EveryOnePermissions = item.EveryOnePermissions;
277 clone.Flags = item.Flags;
278 clone.Folder = item.Folder;
279 clone.GroupID = item.GroupID;
280 clone.GroupOwned = item.GroupOwned;
281 clone.GroupPermissions = item.GroupPermissions;
282 clone.InvType = item.InvType;
283 clone.NextPermissions = item.NextPermissions;
284 clone.Owner = item.Owner;
285
286 return clone;
287 }
288
289 public void DeleteObjectsFolders()
290 {
291 // Delete everything in A2 and A3's Objects folders, so we can restart
292 for (int i = 1; i < 3; i++)
293 {
294 InventoryFolderBase objsFolder = UserInventoryHelpers.GetInventoryFolder(Common.TheScene.InventoryService, Common.TheAvatars[i].UUID, "Objects");
295 Assert.That(objsFolder, Is.Not.Null);
296
297 List<InventoryItemBase> items = Common.TheScene.InventoryService.GetFolderItems(Common.TheAvatars[i].UUID, objsFolder.ID);
298 List<UUID> ids = new List<UUID>();
299 foreach (InventoryItemBase it in items)
300 ids.Add(it.ID);
301
302 Common.TheScene.InventoryService.DeleteItems(Common.TheAvatars[i].UUID, ids);
303 items = Common.TheScene.InventoryService.GetFolderItems(Common.TheAvatars[i].UUID, objsFolder.ID);
304 Assert.That(items.Count, Is.EqualTo(0), "A" + (i + 1));
305 }
306
307 }
308
309 public string IdStr(InventoryItemBase item)
310 {
311 return item.Owner.ToString().Substring(34) + " : " + item.Name;
312 }
313
314 public string IdStr(SceneObjectGroup sog)
315 {
316 return sog.OwnerID.ToString().Substring(34) + " : " + sog.Name;
317 }
318
319 public void GiveInventoryItem(UUID itemId, ScenePresence giverSp, ScenePresence receiverSp)
320 {
321 TestClient giverClient = (TestClient)giverSp.ControllingClient;
322 TestClient receiverClient = (TestClient)receiverSp.ControllingClient;
323
324 UUID initialSessionId = TestHelpers.ParseTail(0x10);
325 byte[] giveImBinaryBucket = new byte[17];
326 byte[] itemIdBytes = itemId.GetBytes();
327 Array.Copy(itemIdBytes, 0, giveImBinaryBucket, 1, itemIdBytes.Length);
328
329 GridInstantMessage giveIm
330 = new GridInstantMessage(
331 m_Scene,
332 giverSp.UUID,
333 giverSp.Name,
334 receiverSp.UUID,
335 (byte)InstantMessageDialog.InventoryOffered,
336 false,
337 "inventory offered msg",
338 initialSessionId,
339 false,
340 Vector3.Zero,
341 giveImBinaryBucket,
342 true);
343
344 giverClient.HandleImprovedInstantMessage(giveIm);
345
346 // These details might not all be correct.
347 GridInstantMessage acceptIm
348 = new GridInstantMessage(
349 m_Scene,
350 receiverSp.UUID,
351 receiverSp.Name,
352 giverSp.UUID,
353 (byte)InstantMessageDialog.InventoryAccepted,
354 false,
355 "inventory accepted msg",
356 initialSessionId,
357 false,
358 Vector3.Zero,
359 null,
360 true);
361
362 receiverClient.HandleImprovedInstantMessage(acceptIm);
363 }
364 }
365}
diff --git a/OpenSim/Tests/Permissions/DirectTransferTests.cs b/OpenSim/Tests/Permissions/DirectTransferTests.cs
new file mode 100644
index 0000000..c68bbdf
--- /dev/null
+++ b/OpenSim/Tests/Permissions/DirectTransferTests.cs
@@ -0,0 +1,146 @@
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 NUnit.Framework;
29using OpenMetaverse;
30using OpenSim.Framework;
31using OpenSim.Region.Framework.Scenes;
32using OpenSim.Tests.Common;
33using PermissionMask = OpenSim.Framework.PermissionMask;
34
35namespace OpenSim.Tests.Permissions
36{
37 /// <summary>
38 /// Basic scene object tests (create, read and delete but not update).
39 /// </summary>
40 [TestFixture]
41 public class DirectTransferTests
42 {
43
44 [SetUp]
45 public void SetUp()
46 {
47 Common.TheInstance.DeleteObjectsFolders();
48 }
49
50 /// <summary>
51 /// Test giving simple objecta with various combinations of next owner perms.
52 /// </summary>
53 [Test]
54 public void TestGiveBox()
55 {
56 TestHelpers.InMethod();
57
58 // C, CT, MC, MCT, MT, T
59 string[] names = new string[6] { "Box C", "Box CT", "Box MC", "Box MCT", "Box MT", "Box T" };
60 PermissionMask[] perms = new PermissionMask[6] {
61 PermissionMask.Copy,
62 PermissionMask.Copy | PermissionMask.Transfer,
63 PermissionMask.Modify | PermissionMask.Copy,
64 PermissionMask.Modify | PermissionMask.Copy | PermissionMask.Transfer,
65 PermissionMask.Modify | PermissionMask.Transfer,
66 PermissionMask.Transfer
67 };
68
69 for (int i = 0; i < 6; i++)
70 TestOneBox(names[i], perms[i]);
71 }
72
73 private void TestOneBox(string name, PermissionMask mask)
74 {
75 InventoryItemBase item = Common.TheInstance.GetItemFromInventory(Common.TheAvatars[0].UUID, "Objects", name);
76
77 Common.TheInstance.GiveInventoryItem(item.ID, Common.TheAvatars[0], Common.TheAvatars[1]);
78
79 item = Common.TheInstance.GetItemFromInventory(Common.TheAvatars[1].UUID, "Objects", name);
80
81 // Check the receiver
82 Common.TheInstance.PrintPerms(item);
83 Common.TheInstance.AssertPermissions(mask, (PermissionMask)item.BasePermissions, item.Owner.ToString().Substring(34) + " : " + item.Name);
84
85 int nObjects = Common.TheScene.GetSceneObjectGroups().Count;
86 // Rez it and check perms in scene too
87 Common.TheScene.RezObject(Common.TheAvatars[1].ControllingClient, item.ID, UUID.Zero, Vector3.One, Vector3.Zero, UUID.Zero, 0, false, false, false, UUID.Zero);
88 Assert.That(Common.TheScene.GetSceneObjectGroups().Count, Is.EqualTo(nObjects + 1));
89
90 SceneObjectGroup box = Common.TheScene.GetSceneObjectGroups().Find(sog => sog.OwnerID == Common.TheAvatars[1].UUID && sog.Name == name);
91 Common.TheInstance.PrintPerms(box);
92 Assert.That(box, Is.Not.Null);
93
94 // Check Owner permissions
95 Common.TheInstance.AssertPermissions(mask, (PermissionMask)box.EffectiveOwnerPerms, box.OwnerID.ToString().Substring(34) + " : " + box.Name);
96
97 // Check Next Owner permissions
98 Common.TheInstance.AssertPermissions(mask, (PermissionMask)box.RootPart.NextOwnerMask, box.OwnerID.ToString().Substring(34) + " : " + box.Name);
99
100 }
101
102 /// <summary>
103 /// Test giving simple objecta with variour combinations of next owner perms.
104 /// </summary>
105 [Test]
106 public void TestDoubleGiveWithChange()
107 {
108 TestHelpers.InMethod();
109
110 string name = "Box MCT-C";
111 InventoryItemBase item = Common.TheInstance.GetItemFromInventory(Common.TheAvatars[0].UUID, "Objects", name);
112
113 // Now give the item to A2. We give the original item, not a clone.
114 // The giving methods are supposed to duplicate it.
115 Common.TheInstance.GiveInventoryItem(item.ID, Common.TheAvatars[0], Common.TheAvatars[1]);
116
117 item = Common.TheInstance.GetItemFromInventory(Common.TheAvatars[1].UUID, "Objects", name);
118
119 // Check the receiver
120 Common.TheInstance.PrintPerms(item);
121 Common.TheInstance.AssertPermissions(PermissionMask.Modify | PermissionMask.Transfer,
122 (PermissionMask)item.BasePermissions, Common.TheInstance.IdStr(item));
123
124 // ---------------------------
125 // Second transfer
126 //----------------------------
127
128 // A2 revokes M
129 Common.TheInstance.RevokePermission(1, name, PermissionMask.Modify);
130
131 item = Common.TheInstance.GetItemFromInventory(Common.TheAvatars[1].UUID, "Objects", name);
132
133 // Now give the item to A3. We give the original item, not a clone.
134 // The giving methods are supposed to duplicate it.
135 Common.TheInstance.GiveInventoryItem(item.ID, Common.TheAvatars[1], Common.TheAvatars[2]);
136
137 item = Common.TheInstance.GetItemFromInventory(Common.TheAvatars[2].UUID, "Objects", name);
138
139 // Check the receiver
140 Common.TheInstance.PrintPerms(item);
141 Common.TheInstance.AssertPermissions(PermissionMask.Transfer,
142 (PermissionMask)item.BasePermissions, Common.TheInstance.IdStr(item));
143
144 }
145 }
146} \ No newline at end of file
diff --git a/OpenSim/Tests/Permissions/IndirectTransferTests.cs b/OpenSim/Tests/Permissions/IndirectTransferTests.cs
new file mode 100644
index 0000000..7d8027f
--- /dev/null
+++ b/OpenSim/Tests/Permissions/IndirectTransferTests.cs
@@ -0,0 +1,123 @@
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.Collections.Generic;
29using System.Threading;
30using NUnit.Framework;
31using OpenMetaverse;
32using OpenSim.Framework;
33using OpenSim.Region.Framework.Scenes;
34using OpenSim.Tests.Common;
35using PermissionMask = OpenSim.Framework.PermissionMask;
36
37namespace OpenSim.Tests.Permissions
38{
39 /// <summary>
40 /// Basic scene object tests (create, read and delete but not update).
41 /// </summary>
42 [TestFixture]
43 public class IndirectTransferTests
44 {
45
46 [SetUp]
47 public void SetUp()
48 {
49 Common.TheInstance.DeleteObjectsFolders();
50 }
51
52 /// <summary>
53 /// Test giving simple objecta with various combinations of next owner perms.
54 /// </summary>
55 [Test]
56 public void SimpleTakeCopy()
57 {
58 TestHelpers.InMethod();
59
60 // The Objects folder of A2
61 InventoryFolderBase objsFolder = UserInventoryHelpers.GetInventoryFolder(Common.TheScene.InventoryService, Common.TheAvatars[1].UUID, "Objects");
62
63 // C, CT, MC, MCT, MT, T
64 string[] names = new string[6] { "Box C", "Box CT", "Box MC", "Box MCT", "Box MT", "Box T" };
65 PermissionMask[] perms = new PermissionMask[6] {
66 PermissionMask.Copy,
67 PermissionMask.Copy | PermissionMask.Transfer,
68 PermissionMask.Modify | PermissionMask.Copy,
69 PermissionMask.Modify | PermissionMask.Copy | PermissionMask.Transfer,
70 PermissionMask.Modify | PermissionMask.Transfer,
71 PermissionMask.Transfer
72 };
73
74 // Try A2 takes copies of objects that cannot be copied.
75 for (int i = 0; i < 6; i++)
76 TakeOneBox(Common.TheScene.GetSceneObjectGroups(), names[i], perms[i]);
77 Thread.Sleep(5000);
78
79 List<InventoryItemBase> items = Common.TheScene.InventoryService.GetFolderItems(Common.TheAvatars[1].UUID, objsFolder.ID);
80 Assert.That(items.Count, Is.EqualTo(0));
81
82 // A1 makes the objects copyable
83 for (int i = 0; i < 6; i++)
84 MakeCopyable(Common.TheScene.GetSceneObjectGroups(), names[i]);
85
86 // Try A2 takes copies of objects that can be copied.
87 for (int i = 0; i < 6; i++)
88 TakeOneBox(Common.TheScene.GetSceneObjectGroups(), names[i], perms[i]);
89 Thread.Sleep(5000);
90
91 items = Common.TheScene.InventoryService.GetFolderItems(Common.TheAvatars[1].UUID, objsFolder.ID);
92 Assert.That(items.Count, Is.EqualTo(6));
93
94 for (int i = 0; i < 6; i++)
95 {
96 InventoryItemBase item = Common.TheInstance.GetItemFromInventory(Common.TheAvatars[1].UUID, "Objects", names[i]);
97 Assert.That(item, Is.Not.Null);
98 Common.TheInstance.AssertPermissions(perms[i], (PermissionMask)item.BasePermissions, Common.TheInstance.IdStr(item));
99 }
100 }
101
102 private void TakeOneBox(List<SceneObjectGroup> objs, string name, PermissionMask mask)
103 {
104 SceneObjectGroup box = objs.Find(sog => sog.Name == name && sog.OwnerID == Common.TheAvatars[0].UUID);
105 Assert.That(box, Is.Not.Null, name);
106
107 // A2's inventory (index 1)
108 Common.TheInstance.TakeCopyToInventory(1, box);
109 }
110
111 private void MakeCopyable(List<SceneObjectGroup> objs, string name)
112 {
113 SceneObjectGroup box = objs.Find(sog => sog.Name == name && sog.OwnerID == Common.TheAvatars[0].UUID);
114 Assert.That(box, Is.Not.Null, name);
115
116 // field = 8 is Everyone
117 // set = 1 means add the permission; set = 0 means remove permission
118 Common.TheScene.HandleObjectPermissionsUpdate((IClientAPI)Common.TheAvatars[0].ClientView, Common.TheAvatars[0].UUID,
119 Common.TheAvatars[0].ControllingClient.SessionId, 8, box.LocalId, (uint)PermissionMask.Copy, 1);
120 Common.TheInstance.PrintPerms(box);
121 }
122 }
123} \ No newline at end of file