* Add create folder userinfo test
parent
d943abea57
commit
30213e141b
|
@ -66,7 +66,7 @@ namespace OpenSim.Framework.Communications.Cache
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new subfolder. This exists only in the cache.
|
/// Create a new subfolder.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="folderID"></param>
|
/// <param name="folderID"></param>
|
||||||
/// <param name="folderName"></param>
|
/// <param name="folderName"></param>
|
||||||
|
|
|
@ -89,8 +89,28 @@ namespace OpenSim.Framework.Communications.Tests
|
||||||
/// Test moving an inventory folder
|
/// Test moving an inventory folder
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Test]
|
[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