aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs46
1 files changed, 33 insertions, 13 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs
index c524090..7f25864 100644
--- a/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs
@@ -37,10 +37,11 @@ using NUnit.Framework;
37using OpenMetaverse; 37using OpenMetaverse;
38using OpenSim.Framework; 38using OpenSim.Framework;
39using OpenSim.Framework.Communications; 39using OpenSim.Framework.Communications;
40using OpenSim.Region.Framework.Scenes; 40using OpenSim.Region.CoreModules.Avatar.Attachments;
41using OpenSim.Region.Framework.Interfaces;
42using OpenSim.Region.CoreModules.World.Serialiser; 41using OpenSim.Region.CoreModules.World.Serialiser;
43using OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation; 42using OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation;
43using OpenSim.Region.Framework.Scenes;
44using OpenSim.Region.Framework.Interfaces;
44using OpenSim.Tests.Common; 45using OpenSim.Tests.Common;
45using OpenSim.Tests.Common.Mock; 46using OpenSim.Tests.Common.Mock;
46 47
@@ -61,18 +62,25 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments.Tests
61 [SetUp] 62 [SetUp]
62 public void Init() 63 public void Init()
63 { 64 {
64 scene = SceneHelpers.SetupScene("Neighbour x", UUID.Random(), 1000, 1000); 65 // Don't allow tests to be bamboozled by asynchronous events. Execute everything on the same thread.
66 Util.FireAndForgetMethod = FireAndForgetMethod.None;
65 67
66 ISharedRegionModule interregionComms = new LocalSimulationConnectorModule(); 68 scene = SceneHelpers.SetupScene("Neighbour x", UUID.Random(), 1000, 1000);
67 interregionComms.Initialise(new IniConfigSource()); 69 SceneHelpers.SetupSceneModules(scene, new AttachmentsModule());
68 interregionComms.PostInitialise();
69 SceneHelpers.SetupSceneModules(scene, new IniConfigSource(), interregionComms);
70 70
71 agent1 = UUID.Random(); 71 agent1 = UUID.Random();
72 random = new Random(); 72 random = new Random();
73 sog1 = NewSOG(UUID.Random(), scene, agent1); 73 sog1 = NewSOG(UUID.Random(), scene, agent1);
74 sog2 = NewSOG(UUID.Random(), scene, agent1); 74 sog2 = NewSOG(UUID.Random(), scene, agent1);
75 } 75 }
76
77 [TearDown]
78 public void TearDown()
79 {
80 // We must set this back afterwards, otherwise later tests will fail since they're expecting multiple
81 // threads. Possibly, later tests should be rewritten not to worry about such things.
82 Util.FireAndForgetMethod = Util.DefaultFireAndForgetMethod;
83 }
76 84
77 [Test] 85 [Test]
78 public void TestAddAttachments() 86 public void TestAddAttachments()
@@ -100,11 +108,23 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments.Tests
100 Assert.That(presence.HasAttachments(), Is.False); 108 Assert.That(presence.HasAttachments(), Is.False);
101 } 109 }
102 110
103// [Test] 111 [Test]
104// public void TestRezAttachmentsOnAvatarEntrance() 112 public void TestRezAttachmentsOnAvatarEntrance()
105// { 113 {
106// ScenePresence presence = scene.GetScenePresence(agent1); 114 TestHelpers.InMethod();
107// } 115// log4net.Config.XmlConfigurator.Configure();
116
117 UUID spId = TestHelpers.ParseTail(0x1);
118 UUID attItemId = TestHelpers.ParseTail(0x2);
119 UUID attAssetId = TestHelpers.ParseTail(0x3);
120
121 AgentCircuitData acd = SceneHelpers.GenerateAgentData(spId);
122 acd.Appearance = new AvatarAppearance();
123 acd.Appearance.SetAttachment((int)AttachmentPoint.Chest, attItemId, attAssetId);
124 ScenePresence presence = SceneHelpers.AddScenePresence(scene, acd);
125
126// Assert.That(presence.HasAttachments(), Is.True);
127 }
108 128
109 // I'm commenting this test because scene setup NEEDS InventoryService to 129 // I'm commenting this test because scene setup NEEDS InventoryService to
110 // be non-null 130 // be non-null