aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceAgentTests.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-22* Panda no like LongRunningAttribute, no? Me now reverting minuscule fix, ↵lbsa711-1/+1
yes? Panda happy, eh?
2009-06-22* Added SceneTests and SceneBaseTestslbsa711-1/+1
* Changed some fields to protectesd to enable faking
2009-06-14Renamed Region/CoreModules/ServiceConnectors to ↵diva1-1/+1
Region/CoreModules/ServiceConnectorsOut. No functional changes.
2009-06-07* Reverting the test restructuring as, on second thought, this is not at all ↵lbsa711-0/+0
how the tests are structured. (pt1)
2009-06-05* Restructured Scenes Tests to follow (what I conceive of as being) current ↵lbsa711-0/+0
directory standards. (pt 1 - thank you, svn. not.)
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-07instrument most of the tests with a new InMethod function that may help us ↵Sean Dague1-10/+11
figure out where that pesky deadlock is during test runs.
2009-05-05- moving banned check and public/private check toDr Scofield1-3/+6
Scene.NewUserConnection() - adding reason reporting this enforces estate bans very early on and prevents us from circulating client objects that we'd then have to retract once we realize that the client is not allowed into the region
2009-05-03Some reorganization around service connectors. No functional changeMelanie Thielker1-1/+1
2009-04-14* Make archiver tests pump the asset server manually instead of starting the ↵Justin Clarke Casey1-1/+1
normal runtime thread * This may eliminate the occasional archive test freezes, since they appeared to occur when somehow the asset server didn't pick up on the presence of a request in the asset quque
2009-04-09* Reinstated Scene Crossing tests, now with timeouts to check for race ↵Arthur Valadares1-16/+55
conditions
2009-03-27* Also temporarily disable T032_CrossAttachments() since this relies on the ↵Justin Clarke Casey1-1/+1
execution of T021_TestCroswsToNewRegion()
2009-03-27* Temporarily disable ScenePresenceTests.T021_TestCrossToNewRegion() as this ↵Justin Clarke Casey1-1/+1
has both WaitOnes() which don't time out and tight loops * Going to see if this stops the freeze failures where (though there may also be a separate occasional failure in the save oar test)
2009-03-27* For each test in OpenSim.Region.Framework.Scenes.Tests, tell the console ↵Justin Clarke Casey1-1/+22
when the test starts * This is to help identify which test is freezing, since all the tests in the previous dll (coremodules) succeed * Unfortunately they are not executed in the same order in which the results are listed in Bamboo
2009-02-26* Update ScenePresenceTests to reflect current REST communication workflow.Sean Dague1-11/+27
* Fixed an issue with AssetCache where it would break unit tests randomly. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-02-13Commented the tests for region crossings for now -- they need to be ↵diva1-2/+4
substantially changed because of the callback from region B triggered by the client.
2009-02-13Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames1-5/+5
warnings. Fix some m_log declarations.
2009-02-12Fixes a bug in the ScenePresence test itself.diva1-1/+1
2009-02-12Makes region crossings asynchronous. Moved the bulk of the original code out ↵diva1-5/+9
of ScenePresence and into SceneCommunicationService, where it should be (next to RequestTeleportToLocation). No changes in the crossing mechanism itself, yet. But this change opens the way to doing crossings as slowly as it needs to be, outside the simulator Update loop. Note: weirdnesses may occur!
2009-02-12Sending this to Justin, so that he can see what's wrong with the ↵diva1-3/+11
StandaloneTeleportTests when we add RESTInterregionComms module to the ScenePresenceTests.
2009-02-10this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield1-2/+2
NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator
2009-02-10Commented out a problematic test that needs more careful revision.diva1-1/+2
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-3/+3
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2009-01-30* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+0
2009-01-28* Enhanced ScenePresenceTests. Now tests for region and prim crossing.Sean Dague1-30/+230
From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-01-23* refactor: move scene setup code into common test code assemblyJustin Clarke Casey1-3/+4
2009-01-16* Rig up enough infrastructure to actually perform a successful 'standalone' ↵Justin Clarke Casey1-1/+1
teleport unit test with checks that the scene presence disappeared from sceneA and appeared in sceneB * However, I'm not convinced that the actual process in the test completely reflects reality, and a lot of stuff had to be rigged up (which should get resolved over time)
2008-12-11* Fold mock classes into existing OpenSim/Tests/Common assembly rather than ↵Justin Clarke Casey1-1/+1
sprouting another one
2008-12-11* minor: Move mock test classes into mock namespaceJustin Clarke Casey1-1/+1
2008-12-10* refactor: Move test infrastructure code to its own package so that it can ↵Justin Clarke Casey1-0/+1
be reused by more than Environment tests * This shuffles the test packages in prebuild.xml below it so they can all potentially reference it
2008-11-28* simplify AddNewClient since making this root without using MakeRootAgent() ↵Justin Clarke Casey1-1/+1
no longer sets everything up properly
2008-11-28* test: Add a wodge of code in order to be able to slightly extend a test to ↵Justin Clarke Casey1-14/+1
deliver a taken object to a user inventory folder without throwing an exception * test doesn't actually double check for the presence of the item yet
2008-11-27* test: Add the ability to add a plugin directory to the user and inventory ↵Justin Clarke Casey1-2/+2
services in order to extend unit tests for user and inventory information * I can't spend any longer in trying to get Mono.Addins to work with the unit tests, so this is not a proper plugin at this time
2008-11-20* Add a scratch test for removing a client from a sceneJustin Clarke Casey1-0/+18
2008-11-20* Add enough infrastructure code to run an extremely basic and flaky add ↵Justin Clarke Casey1-4/+11
root agent scene test
2008-11-19* Add just enough to allow the scene presences test to establish a new user ↵Justin Clarke Casey1-3/+2
connection (though not yet an actual ScenePresence)
2008-11-17cleaning up warningDr Scofield1-1/+2
2008-11-14* test: Add scene root agent test stub, since I'll be picking up with ↵Justin Clarke Casey1-31/+24
something else the next time I start coding on OpenSim
2008-11-14* Move test scene construction infrastructure methods to a separate class ↵Justin Clarke Casey1-42/+4
for future common use
2008-11-12* Rename scene tests to scene object tests since that is what they are ↵Justin Clarke Casey1-2/+2
actually concerned with
2008-11-12* test: Add basic synchronous object remove testJustin Clarke Casey1-4/+10
2008-11-11* Create TestScene to get at the async object deleter for use in a future testJustin Clarke Casey1-2/+2
2008-11-11* Put an Enabled switch on the async object deleter for future testing purposesJustin Clarke Casey1-0/+8
2008-11-11minor: refactor some SceneTests code for future testsJustin Clarke Casey1-7/+24
2008-11-10* minor: remove useless exception catchJustin Clarke Casey1-1/+1
2008-11-10* refactor: Expose SOG.SetRootPart for outsiders to use rather than setting ↵Justin Clarke Casey1-4/+2
RootPart and adding the part separately * Make RootPart read only
2008-11-10* Extend basic scene test to retrieve the object from the scene and match uuidsJustin Clarke Casey1-1/+14
* Decouple sog and sop by removing the need to pass the sog to the sop when it is created - most of the code was doing this operation (and hence duplicating it) anyway * Remove unused constructors
2008-11-07* Stop requiring local ids in the SOG constructors.Justin Clarke Casey1-1/+1
* These are assigned when the object is attached to the scene
2008-11-06* refactor: Attach a scene object to a scene separately from its constructionJustin Clarke Casey1-2/+2
2008-11-06* minor: remove some mono compiler warningsJustin Clarke Casey1-0/+3