* Add create folder userinfo test
parent
d943abea57
commit
30213e141b
|
@ -66,7 +66,7 @@ namespace OpenSim.Framework.Communications.Cache
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Create a new subfolder. This exists only in the cache.
|
||||
/// Create a new subfolder.
|
||||
/// </summary>
|
||||
/// <param name="folderID"></param>
|
||||
/// <param name="folderName"></param>
|
||||
|
|
|
@ -89,8 +89,28 @@ namespace OpenSim.Framework.Communications.Tests
|
|||
/// Test moving an inventory folder
|
||||
/// </summary>
|
||||
[Test]
|
||||
public void TestMoveFolder()
|
||||
public void TestCreateFolder()
|
||||
{
|
||||
UUID userId = UUID.Parse("00000000-0000-0000-0000-000000000004");
|
||||
|
||||
CommunicationsManager commsManager = new TestCommunicationsManager();
|
||||
LocalUserServices lus = (LocalUserServices)commsManager.UserService;
|
||||
lus.AddPlugin(new TestUserDataPlugin());
|
||||
TestInventoryDataPlugin inventoryDataPlugin = new TestInventoryDataPlugin();
|
||||
((LocalInventoryService)commsManager.InventoryService).AddPlugin(inventoryDataPlugin);
|
||||
|
||||
lus.AddUser("Bill", "Bailey", "troll", "bill@bailey.com", 1000, 1000, userId);
|
||||
|
||||
commsManager.UserProfileCacheService.RequestInventoryForUser(userId);
|
||||
|
||||
CachedUserInfo userInfo = commsManager.UserProfileCacheService.GetUserDetails(userId);
|
||||
|
||||
UUID folderId = UUID.Parse("00000000-0000-0000-0000-000000000010");
|
||||
Assert.That(userInfo.RootFolder.SubFolders.ContainsKey(folderId), Is.False);
|
||||
|
||||
userInfo.CreateFolder("testFolder", folderId, (ushort)AssetType.Animation, userInfo.RootFolder.ID);
|
||||
Assert.That(inventoryDataPlugin.getInventoryFolder(folderId), Is.Not.Null);
|
||||
Assert.That(userInfo.RootFolder.SubFolders.ContainsKey(folderId), Is.True);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue