aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Helpers/UserInventoryHelpers.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-06-04 00:20:54 +0100
committerJustin Clark-Casey (justincc)2011-06-04 00:20:54 +0100
commit1543fd7fff3b3f3a7ce07caa3ed19846b6587df7 (patch)
treed878258728d4f92b48c9e7af8827185ab120491f /OpenSim/Tests/Common/Helpers/UserInventoryHelpers.cs
parentIf an llSensor() is in an attachment, make the detection cone face in the dir... (diff)
downloadopensim-SC_OLD-1543fd7fff3b3f3a7ce07caa3ed19846b6587df7.zip
opensim-SC_OLD-1543fd7fff3b3f3a7ce07caa3ed19846b6587df7.tar.gz
opensim-SC_OLD-1543fd7fff3b3f3a7ce07caa3ed19846b6587df7.tar.bz2
opensim-SC_OLD-1543fd7fff3b3f3a7ce07caa3ed19846b6587df7.tar.xz
extend TestGiveInventoryFolder() to check for the receipt by user 2
Diffstat (limited to '')
-rw-r--r--OpenSim/Tests/Common/Helpers/UserInventoryHelpers.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Helpers/UserInventoryHelpers.cs b/OpenSim/Tests/Common/Helpers/UserInventoryHelpers.cs
index e33145f..03215f2 100644
--- a/OpenSim/Tests/Common/Helpers/UserInventoryHelpers.cs
+++ b/OpenSim/Tests/Common/Helpers/UserInventoryHelpers.cs
@@ -26,8 +26,10 @@
26 */ 26 */
27 27
28using System; 28using System;
29using System.Collections.Generic;
29using OpenMetaverse; 30using OpenMetaverse;
30using OpenSim.Framework; 31using OpenSim.Framework;
32using OpenSim.Region.CoreModules.Avatar.Inventory.Archiver;
31using OpenSim.Region.Framework.Scenes; 33using OpenSim.Region.Framework.Scenes;
32using OpenSim.Services.Interfaces; 34using OpenSim.Services.Interfaces;
33 35
@@ -118,5 +120,24 @@ namespace OpenSim.Tests.Common
118 else 120 else
119 return newFolder; 121 return newFolder;
120 } 122 }
123
124 /// <summary>
125 /// Get the inventory folder that matches the path name. If there are multiple folders then only the first
126 /// is returned.
127 /// </summary>
128 /// <param name="inventoryService"></param>
129 /// <param name="userId"></param>
130 /// <param name="path"></param>
131 /// <returns>null if no folder matching the path was found</returns>
132 public static InventoryFolderBase GetInventoryFolder(IInventoryService inventoryService, UUID userId, string path)
133 {
134 List<InventoryFolderBase> folders
135 = InventoryArchiveUtils.FindFolderByPath(inventoryService, userId, path);
136
137 if (folders.Count != 0)
138 return folders[0];
139 else
140 return null;
141 }
121 } 142 }
122} \ No newline at end of file 143} \ No newline at end of file