Fix tests broken in 88771aeed3
Adds MockUserAccountService and connects it up Stops services being carried over between tests since this leads to hard to find bugs Improves information and error reporting when loading pluginsslimupdates
parent
db61d66e74
commit
f2de50bb14
|
@ -73,33 +73,31 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.UserAccounts
|
||||||
IConfig userConfig = source.Configs["UserAccountService"];
|
IConfig userConfig = source.Configs["UserAccountService"];
|
||||||
if (userConfig == null)
|
if (userConfig == null)
|
||||||
{
|
{
|
||||||
m_log.Error("[USER CONNECTOR]: UserAccountService missing from OpenSim.ini");
|
m_log.Error("[LOCAL USER ACCOUNT SERVICE CONNECTOR]: UserAccountService missing from OpenSim.ini");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
string serviceDll = userConfig.GetString("LocalServiceModule",
|
string serviceDll = userConfig.GetString("LocalServiceModule", String.Empty);
|
||||||
String.Empty);
|
|
||||||
|
|
||||||
if (serviceDll == String.Empty)
|
if (serviceDll == String.Empty)
|
||||||
{
|
{
|
||||||
m_log.Error("[USER CONNECTOR]: No LocalServiceModule named in section UserService");
|
m_log.Error("[LOCAL USER ACCOUNT SERVICE CONNECTOR]: No LocalServiceModule named in section UserService");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Object[] args = new Object[] { source };
|
Object[] args = new Object[] { source };
|
||||||
m_UserService =
|
m_UserService = ServerUtils.LoadPlugin<IUserAccountService>(serviceDll, args);
|
||||||
ServerUtils.LoadPlugin<IUserAccountService>(serviceDll,
|
|
||||||
args);
|
|
||||||
|
|
||||||
if (m_UserService == null)
|
if (m_UserService == null)
|
||||||
{
|
{
|
||||||
m_log.Error("[USER CONNECTOR]: Can't load user account service");
|
m_log.ErrorFormat(
|
||||||
|
"[LOCAL USER ACCOUNT SERVICE CONNECTOR]: Cannot load user account service specified as {0}", serviceDll);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
m_Enabled = true;
|
m_Enabled = true;
|
||||||
m_Cache = new UserAccountCache();
|
m_Cache = new UserAccountCache();
|
||||||
|
|
||||||
m_log.Info("[USER CONNECTOR]: Local user connector enabled");
|
m_log.Info("[LOCAL USER ACCOUNT SERVICE CONNECTOR]: Local user connector enabled");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -134,6 +132,8 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.UserAccounts
|
||||||
{
|
{
|
||||||
if (!m_Enabled)
|
if (!m_Enabled)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
m_log.InfoFormat("[LOCAL USER ACCOUNT SERVICE CONNECTOR]: Enabled local user accounts for region {0}", scene.RegionInfo.RegionName);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
|
@ -86,6 +86,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests
|
||||||
public void TestDeleteSceneObjectAsync()
|
public void TestDeleteSceneObjectAsync()
|
||||||
{
|
{
|
||||||
TestHelper.InMethod();
|
TestHelper.InMethod();
|
||||||
|
//log4net.Config.XmlConfigurator.Configure();
|
||||||
|
|
||||||
UUID agentId = UUID.Parse("00000000-0000-0000-0000-000000000001");
|
UUID agentId = UUID.Parse("00000000-0000-0000-0000-000000000001");
|
||||||
|
|
||||||
|
@ -97,15 +98,9 @@ namespace OpenSim.Region.Framework.Scenes.Tests
|
||||||
|
|
||||||
SceneObjectPart part = SceneSetupHelpers.AddSceneObject(scene);
|
SceneObjectPart part = SceneSetupHelpers.AddSceneObject(scene);
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
IClientAPI client = SceneSetupHelpers.AddRootAgent(scene, agentId);
|
IClientAPI client = SceneSetupHelpers.AddRootAgent(scene, agentId);
|
||||||
scene.DeRezObject(client, part.LocalId, UUID.Zero, DeRezAction.Delete, UUID.Zero);
|
scene.DeRezObject(client, part.LocalId, UUID.Zero, DeRezAction.Delete, UUID.Zero);
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
Console.WriteLine("Exception: " + e.StackTrace);
|
|
||||||
}
|
|
||||||
SceneObjectPart retrievedPart = scene.GetSceneObjectPart(part.LocalId);
|
SceneObjectPart retrievedPart = scene.GetSceneObjectPart(part.LocalId);
|
||||||
|
|
||||||
Assert.That(retrievedPart, Is.Not.Null);
|
Assert.That(retrievedPart, Is.Not.Null);
|
||||||
|
|
|
@ -57,6 +57,12 @@ namespace OpenSim.Server.Base
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Load a plugin from a dll with the given class or interface
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="dllName"></param>
|
||||||
|
/// <param name="args">The arguments which control which constructor is invoked on the plugin</param>
|
||||||
|
/// <returns></returns>
|
||||||
public static T LoadPlugin<T>(string dllName, Object[] args) where T:class
|
public static T LoadPlugin<T>(string dllName, Object[] args) where T:class
|
||||||
{
|
{
|
||||||
string[] parts = dllName.Split(new char[] {':'});
|
string[] parts = dllName.Split(new char[] {':'});
|
||||||
|
@ -71,6 +77,13 @@ namespace OpenSim.Server.Base
|
||||||
return LoadPlugin<T>(dllName, className, args);
|
return LoadPlugin<T>(dllName, className, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Load a plugin from a dll with the given class or interface
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="dllName"></param>
|
||||||
|
/// <param name="className"></param>
|
||||||
|
/// <param name="args">The arguments which control which constructor is invoked on the plugin</param>
|
||||||
|
/// <returns></returns>
|
||||||
public static T LoadPlugin<T>(string dllName, string className, Object[] args) where T:class
|
public static T LoadPlugin<T>(string dllName, string className, Object[] args) where T:class
|
||||||
{
|
{
|
||||||
string interfaceName = typeof(T).ToString();
|
string interfaceName = typeof(T).ToString();
|
||||||
|
@ -83,28 +96,15 @@ namespace OpenSim.Server.Base
|
||||||
{
|
{
|
||||||
if (pluginType.IsPublic)
|
if (pluginType.IsPublic)
|
||||||
{
|
{
|
||||||
if (className != String.Empty &&
|
if (className != String.Empty
|
||||||
pluginType.ToString() !=
|
&& pluginType.ToString() != pluginType.Namespace + "." + className)
|
||||||
pluginType.Namespace + "." + className)
|
|
||||||
continue;
|
continue;
|
||||||
Type typeInterface =
|
|
||||||
pluginType.GetInterface(interfaceName, true);
|
Type typeInterface = pluginType.GetInterface(interfaceName, true);
|
||||||
|
|
||||||
if (typeInterface != null)
|
if (typeInterface != null)
|
||||||
{
|
{
|
||||||
T plug = null;
|
return (T)Activator.CreateInstance(pluginType, args);
|
||||||
try
|
|
||||||
{
|
|
||||||
plug = (T)Activator.CreateInstance(pluginType,
|
|
||||||
args);
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
if (!(e is System.MissingMethodException))
|
|
||||||
m_log.ErrorFormat("Error loading plugin from {0}, exception {1}", dllName, e.InnerException);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return plug;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -113,7 +113,7 @@ namespace OpenSim.Server.Base
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
m_log.ErrorFormat("Error loading plugin from {0}, exception {1}", dllName, e);
|
m_log.Error(string.Format("Error loading plugin from {0}", dllName), e);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -140,14 +140,20 @@ namespace OpenSim.Services.Interfaces
|
||||||
UserAccount GetUserAccount(UUID scopeID, UUID userID);
|
UserAccount GetUserAccount(UUID scopeID, UUID userID);
|
||||||
UserAccount GetUserAccount(UUID scopeID, string FirstName, string LastName);
|
UserAccount GetUserAccount(UUID scopeID, string FirstName, string LastName);
|
||||||
UserAccount GetUserAccount(UUID scopeID, string Email);
|
UserAccount GetUserAccount(UUID scopeID, string Email);
|
||||||
// Returns the list of avatars that matches both the search
|
|
||||||
// criterion and the scope ID passed
|
/// <summary>
|
||||||
//
|
/// Returns the list of avatars that matches both the search criterion and the scope ID passed
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="scopeID"></param>
|
||||||
|
/// <param name="query"></param>
|
||||||
|
/// <returns></returns>
|
||||||
List<UserAccount> GetUserAccounts(UUID scopeID, string query);
|
List<UserAccount> GetUserAccounts(UUID scopeID, string query);
|
||||||
|
|
||||||
// Store the data given, wich replaces the sotred data, therefore
|
/// <summary>
|
||||||
// must be complete.
|
/// Store the data given, wich replaces the sotred data, therefore must be complete.
|
||||||
//
|
/// </summary>
|
||||||
|
/// <param name="data"></param>
|
||||||
|
/// <returns></returns>
|
||||||
bool StoreUserAccount(UserAccount data);
|
bool StoreUserAccount(UserAccount data);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -0,0 +1,45 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) Contributors, http://opensimulator.org/
|
||||||
|
* See CONTRIBUTORS.TXT for a full list of copyright holders.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* * Neither the name of the OpenSimulator Project nor the
|
||||||
|
* names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
|
||||||
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
|
||||||
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using Nini.Config;
|
||||||
|
using OpenMetaverse;
|
||||||
|
using OpenSim.Services.Interfaces;
|
||||||
|
|
||||||
|
namespace OpenSim.Tests.Common.Mock
|
||||||
|
{
|
||||||
|
public class MockUserAccountService : IUserAccountService
|
||||||
|
{
|
||||||
|
public MockUserAccountService(IConfigSource config) {}
|
||||||
|
|
||||||
|
public UserAccount GetUserAccount(UUID scopeID, UUID userID) { return new UserAccount(); }
|
||||||
|
public UserAccount GetUserAccount(UUID scopeID, string FirstName, string LastName) { return new UserAccount(); }
|
||||||
|
public UserAccount GetUserAccount(UUID scopeID, string Email) { return new UserAccount(); }
|
||||||
|
public List<UserAccount> GetUserAccounts(UUID scopeID, string query) { return new List<UserAccount>(); }
|
||||||
|
public bool StoreUserAccount(UserAccount data) { return true; }
|
||||||
|
}
|
||||||
|
}
|
|
@ -179,15 +179,16 @@ namespace OpenSim.Tests.Common.Setup
|
||||||
StartAssetService(testScene, true);
|
StartAssetService(testScene, true);
|
||||||
else
|
else
|
||||||
StartAssetService(testScene, false);
|
StartAssetService(testScene, false);
|
||||||
|
|
||||||
if (realServices.Contains("inventory"))
|
if (realServices.Contains("inventory"))
|
||||||
StartInventoryService(testScene, true);
|
StartInventoryService(testScene, true);
|
||||||
else
|
else
|
||||||
StartInventoryService(testScene, false);
|
StartInventoryService(testScene, false);
|
||||||
|
|
||||||
if (realServices.Contains("grid"))
|
if (realServices.Contains("grid"))
|
||||||
StartGridService(testScene, true);
|
StartGridService(testScene, true);
|
||||||
if (realServices.Contains("useraccounts"))
|
|
||||||
StartUserAccountService(testScene, true);
|
|
||||||
|
|
||||||
|
StartUserAccountService(testScene, realServices.Contains("useraccounts"));
|
||||||
}
|
}
|
||||||
// If not, make sure the shared module gets references to this new scene
|
// If not, make sure the shared module gets references to this new scene
|
||||||
else
|
else
|
||||||
|
@ -196,9 +197,13 @@ namespace OpenSim.Tests.Common.Setup
|
||||||
m_assetService.RegionLoaded(testScene);
|
m_assetService.RegionLoaded(testScene);
|
||||||
m_inventoryService.AddRegion(testScene);
|
m_inventoryService.AddRegion(testScene);
|
||||||
m_inventoryService.RegionLoaded(testScene);
|
m_inventoryService.RegionLoaded(testScene);
|
||||||
|
m_userAccountService.AddRegion(testScene);
|
||||||
|
m_userAccountService.RegionLoaded(testScene);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_inventoryService.PostInitialise();
|
m_inventoryService.PostInitialise();
|
||||||
m_assetService.PostInitialise();
|
m_assetService.PostInitialise();
|
||||||
|
m_userAccountService.PostInitialise();
|
||||||
|
|
||||||
testScene.SetModuleInterfaces();
|
testScene.SetModuleInterfaces();
|
||||||
|
|
||||||
|
@ -210,6 +215,11 @@ namespace OpenSim.Tests.Common.Setup
|
||||||
testScene.PhysicsScene
|
testScene.PhysicsScene
|
||||||
= physicsPluginManager.GetPhysicsScene("basicphysics", "ZeroMesher", new IniConfigSource(), "test");
|
= physicsPluginManager.GetPhysicsScene("basicphysics", "ZeroMesher", new IniConfigSource(), "test");
|
||||||
|
|
||||||
|
m_assetService = null;
|
||||||
|
m_inventoryService = null;
|
||||||
|
m_gridService = null;
|
||||||
|
m_userAccountService = null;
|
||||||
|
|
||||||
return testScene;
|
return testScene;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -273,6 +283,11 @@ namespace OpenSim.Tests.Common.Setup
|
||||||
//testScene.AddRegionModule(m_gridService.Name, m_gridService);
|
//testScene.AddRegionModule(m_gridService.Name, m_gridService);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Start a user account service, whether real or mock
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="testScene"></param>
|
||||||
|
/// <param name="real">Starts a real service if true, a mock service if not</param>
|
||||||
private static void StartUserAccountService(Scene testScene, bool real)
|
private static void StartUserAccountService(Scene testScene, bool real)
|
||||||
{
|
{
|
||||||
IConfigSource config = new IniConfigSource();
|
IConfigSource config = new IniConfigSource();
|
||||||
|
@ -280,8 +295,14 @@ namespace OpenSim.Tests.Common.Setup
|
||||||
config.AddConfig("UserAccountService");
|
config.AddConfig("UserAccountService");
|
||||||
config.Configs["Modules"].Set("UserAccountServices", "LocalUserAccountServicesConnector");
|
config.Configs["Modules"].Set("UserAccountServices", "LocalUserAccountServicesConnector");
|
||||||
config.Configs["UserAccountService"].Set("StorageProvider", "OpenSim.Data.Null.dll");
|
config.Configs["UserAccountService"].Set("StorageProvider", "OpenSim.Data.Null.dll");
|
||||||
|
|
||||||
if (real)
|
if (real)
|
||||||
config.Configs["UserAccountService"].Set("LocalServiceModule", "OpenSim.Services.UserAccountService.dll:UserAccountService");
|
config.Configs["UserAccountService"].Set(
|
||||||
|
"LocalServiceModule", "OpenSim.Services.UserAccountService.dll:UserAccountService");
|
||||||
|
else
|
||||||
|
config.Configs["UserAccountService"].Set(
|
||||||
|
"LocalServiceModule", "OpenSim.Tests.Common.dll:MockUserAccountService");
|
||||||
|
|
||||||
if (m_userAccountService == null)
|
if (m_userAccountService == null)
|
||||||
{
|
{
|
||||||
ISharedRegionModule userAccountService = new LocalUserAccountServicesConnector();
|
ISharedRegionModule userAccountService = new LocalUserAccountServicesConnector();
|
||||||
|
@ -292,10 +313,9 @@ namespace OpenSim.Tests.Common.Setup
|
||||||
// config.Configs["GridService"].Set("LocalServiceModule", "OpenSim.Tests.Common.dll:TestGridService");
|
// config.Configs["GridService"].Set("LocalServiceModule", "OpenSim.Tests.Common.dll:TestGridService");
|
||||||
m_userAccountService.AddRegion(testScene);
|
m_userAccountService.AddRegion(testScene);
|
||||||
m_userAccountService.RegionLoaded(testScene);
|
m_userAccountService.RegionLoaded(testScene);
|
||||||
//testScene.AddRegionModule(m_gridService.Name, m_gridService);
|
testScene.AddRegionModule(m_userAccountService.Name, m_userAccountService);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Setup modules for a scene using their default settings.
|
/// Setup modules for a scene using their default settings.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue