diff options
author | Justin Clark-Casey (justincc) | 2010-12-14 23:36:34 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-12-14 23:36:34 +0000 |
commit | 81bccd6d132956e2de9e5ad473f87931df76cde8 (patch) | |
tree | cbad88a1bad4b95dd91ad4d02b6762504e17ed2e /OpenSim/Tests/Common/Mock | |
parent | Add mock group services connector and use this in tests (diff) | |
download | opensim-SC_OLD-81bccd6d132956e2de9e5ad473f87931df76cde8.zip opensim-SC_OLD-81bccd6d132956e2de9e5ad473f87931df76cde8.tar.gz opensim-SC_OLD-81bccd6d132956e2de9e5ad473f87931df76cde8.tar.bz2 opensim-SC_OLD-81bccd6d132956e2de9e5ad473f87931df76cde8.tar.xz |
Start implementing a test for 'share with group' object functionality. Not yet complete.
While implementing this, a bug was fixed in scene setup helpers where module RegionLoaded() was called immediately after AddRegion() instead of waiting for all AddRegions() to complete.
Also, XmlRpcGroupsModule non-message functionality will now work without a message transfer module (as indicated in the comments but with a contradictory implementation)
Diffstat (limited to 'OpenSim/Tests/Common/Mock')
-rw-r--r-- | OpenSim/Tests/Common/Mock/MockGroupsServicesConnector.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/MockGroupsServicesConnector.cs b/OpenSim/Tests/Common/Mock/MockGroupsServicesConnector.cs index aa48754..6fb9df1 100644 --- a/OpenSim/Tests/Common/Mock/MockGroupsServicesConnector.cs +++ b/OpenSim/Tests/Common/Mock/MockGroupsServicesConnector.cs | |||
@@ -42,7 +42,7 @@ namespace OpenSim.Tests.Common.Mock | |||
42 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | 42 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] |
43 | public class MockGroupsServicesConnector : ISharedRegionModule, IGroupsServicesConnector | 43 | public class MockGroupsServicesConnector : ISharedRegionModule, IGroupsServicesConnector |
44 | { | 44 | { |
45 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 46 | ||
47 | public string Name | 47 | public string Name |
48 | { | 48 | { |
@@ -64,6 +64,7 @@ namespace OpenSim.Tests.Common.Mock | |||
64 | 64 | ||
65 | public void AddRegion(Scene scene) | 65 | public void AddRegion(Scene scene) |
66 | { | 66 | { |
67 | m_log.DebugFormat("[MOCK GROUPS SERVICES CONNECTOR]: Adding to region {0}", scene.RegionInfo.RegionName); | ||
67 | scene.RegisterModuleInterface<IGroupsServicesConnector>(this); | 68 | scene.RegisterModuleInterface<IGroupsServicesConnector>(this); |
68 | } | 69 | } |
69 | 70 | ||
@@ -174,7 +175,7 @@ namespace OpenSim.Tests.Common.Mock | |||
174 | 175 | ||
175 | public List<GroupMembershipData> GetAgentGroupMemberships(UUID requestingAgentID, UUID AgentID) | 176 | public List<GroupMembershipData> GetAgentGroupMemberships(UUID requestingAgentID, UUID AgentID) |
176 | { | 177 | { |
177 | return null; | 178 | return new List<GroupMembershipData>(); |
178 | } | 179 | } |
179 | 180 | ||
180 | public List<GroupRolesData> GetAgentGroupRoles(UUID requestingAgentID, UUID AgentID, UUID GroupID) | 181 | public List<GroupRolesData> GetAgentGroupRoles(UUID requestingAgentID, UUID AgentID, UUID GroupID) |