aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixes Region.Framework tests. Although these tests don't fail, they need to ↵Diva Canto2010-03-021-5/+13
| | | | be rewritten, because they are doing agent manipulations in the wrong way, so they're fairly meaningless.
* * Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman2010-02-221-1/+1
| | | | CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
* OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-112-2/+2
|
* CommunicationsManager deleted.Diva Canto2010-01-113-9/+6
|
* NetworkServersInfo removed from CommsManager.Diva Canto2010-01-102-2/+0
|
* All Framework.Communications.Clients and Framework.Communications.Services ↵Diva Canto2010-01-102-4/+4
| | | | deleted, including old LoginService.
* * Finished SimulationServiceConnectorDiva Canto2010-01-071-1/+1
| | | | | * Started rerouting calls to UserService. * Compiles. May run.
* Change teleports so the TeleportFlags are sent to the destination sim. ItMelanie2009-12-291-3/+3
| | | | | can now determine if a connection is from login, teleport or crossing. Needed for a meaningful banlines implementation
* Formatting cleanup.Jeff Ames2009-11-231-2/+2
|
* refactor: extract another test asset helper methodJustin Clark-Casey (justincc)2009-11-121-4/+3
|
* Rename test services to mock services, since this is a more accurate descriptionJustin Clark-Casey (justincc)2009-11-121-1/+1
| | | | remove duplicate mock inventory service
* Stop iar save failing on corrupt assetsJustin Clark-Casey (justincc)2009-11-121-4/+27
| | | | Not ideal since one will still have to watch out for big 'corrupt asset' messages in the log, but better than an outright fail
* minor: refactor common setup in uuid gatherer testJustin Clark-Casey (justincc)2009-11-121-3/+10
|
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2009-11-121-0/+1
|
* Add basic new uuid gatherer tests to check behaviour when the gather seed is ↵Justin Clark-Casey (justincc)2009-11-111-0/+58
| | | | a missing asset
* * Fix for a potential race condition in ScenePresence.AbsolutePositionJohn Hurliman2009-10-301-2/+2
| | | | | | | * Unified the way region handles are stored and used in ScenePresence * Fixed camera position for child agents * CheckForSignificantMovement now checks avatar and camera position (both are important for scene prioritization) * Removing debug code from the previous commit
* Merge branch 'master' into vehiclesMelanie2009-10-151-5/+0
|\
| * * Unregister event handlers in LLUDPServer when a client logs out and ↵John Hurliman2009-10-131-5/+0
| | | | | | | | | | | | | | | | disconnects * Move ViewerEffect handling to Scene.PacketHandlers * Removing the unused CloseAllAgents function * Trimming ClientManager down. This class needs to be reworked to keep LLUDP circuit codes from intruding into the abstract OpenSim core code
* | Merge branch 'master' into vehiclesMelanie2009-10-021-12/+19
|\ \ | |/
| * Added messages to assertions in the failing tests, so that we know which ↵Diva Canto2009-10-011-12/+19
| | | | | | | | ones are failing.
* | Merge branch 'master' into vehiclesMelanie2009-10-016-31/+34
|\ \ | |/
| * Formatting cleanup.Jeff Ames2009-10-011-1/+1
| |
| * Formatting cleanup.Jeff Ames2009-10-015-25/+25
| |
| * I think I have fixed something that was broken in the scene setup (tests) ↵Diva Canto2009-09-281-3/+4
| | | | | | | | and that needs to be reflected in all other services setups. But the teleport test still doesn't work. Commenting it for now.
| * Improved the Local grid connector to fetch data from the DB when it doesn't ↵Diva Canto2009-09-281-3/+4
| | | | | | | | | | | | find it in the cache. Commented out the Standalone teleport test because it's failing, and the scene setup is very confusing. I suspect it may be wrong -- the connectors-as-ISharedRegionModules are being instantiated several times when there are several scenes.
| * Unpacking the mess with OtherRegionUp, so we can have a real cache of the ↵Diva Canto2009-09-271-1/+2
| | | | | | | | neighbours in the grid service modules.
* | Commit initial version of KittoFlora's vehicle changesopensim2009-09-301-3/+3
|/
* SceneObjectGroup cleanup. Removes the default constructor and unnecessary ↵John Hurliman2009-09-162-5/+2
| | | | null checks on m_rootPart
* Add copyright headers. Formatting cleanup.Jeff Ames2009-09-031-1/+28
|
* switching SerialiserModule to "new" region module schemedr scofield (aka dirk husemann)2009-09-011-1/+1
|
* Merge branch 'master' of ssh://MyConnection/var/git/opensimTeravus Ovares (Dan Olivares)2009-08-272-0/+17
|\
| * * Another attempt at fixing the random spurious test error.Teravus Ovares (Dan Olivares)2009-08-262-0/+17
| | | | | | | | * This time it might be the listening socket thread from HttpServer aborting with a non blocking thread abort exception. Hopefully calling Stop() on MainServer.Instance will solve that.
* | Merge branch 'master' of ssh://MyConnection/var/git/opensimTeravus Ovares (Dan Olivares)2009-08-201-1/+8
|\ \ | |/
| * Commented T021_TestCrossToNewRegion because (1) it can fail on panda, and ↵Diva Canto2009-08-191-1/+8
| | | | | | | | (2) it is not a meaningful representation of region crossing.
* | * Switch border cross tests over to the new Border class.Teravus Ovares (Dan Olivares)2009-08-201-1/+1
| | | | | | | | * Use List<Border> for each cardinal to allow for irregular regions.
* | Add Border (a virtual border management class)Teravus Ovares (Dan Olivares)2009-08-191-0/+312
|/ | | | Move Cardinals to it's own file.
* Commented 2 tests in ScenePresenceTests, one because things were being done ↵Diva Canto2009-08-171-6/+13
| | | | in the wrong order, and the other because it NEEDS the inventory service set up. Test-writers, please please please do the scene setup properly EVERYWHERE. It's close to impossible to rely on tests that don't setup resource service references!
* * Put the StandaloneTeleportTest in a new thread and call Thread.Join() ↵Teravus Ovares (Dan Olivares)2009-08-141-20/+95
| | | | inside a try/Catch (ThreadAbortException) to try and get around scene code aborting the testing thread. Use a Messenger class to report the results back to the test thread.
* * allocate the dictionary for AgentCircuitData.ChildrenCapSeeds when ↵Teravus Ovares (Dan Olivares)2009-08-141-0/+1
| | | | creating the circuitdata object to see if it's the cause of a null reference exception in the TestAddNeighbourRegio test
* Deal with possible race in TestAddNeighborRegion in ScenePresenceTestsTeravus Ovares (Dan Olivares)2009-08-131-0/+24
|
* * Updates RESTInterregionComms and LocalInterregionComms to the new region ↵Arthur Valadares2009-07-232-5/+3
| | | | | | | | | | | | | module interface. This fixes an issue where region references were being added but weren't being deleted, causing those "unnotified circuit" messages. * Also fixes tests accordingly - Fixes Mantis #3452 - Fixes Mantis #3388 - Fixes Mantis #3871 - Related to Mantis #3493
* minor: remove some mono compiler warningsJustin Clarke Casey2009-07-152-2/+2
|
* Formatting cleanup, ignore some generated files.Jeff Ames2009-06-221-2/+2
|
* Update svn properties.Jeff Ames2009-06-222-218/+218
|
* * Panda no like LongRunningAttribute, no? Me now reverting minuscule fix, ↵lbsa712009-06-221-1/+1
| | | | yes? Panda happy, eh?
* * Added SceneTests and SceneBaseTestslbsa712009-06-223-1/+219
| | | | | | * Changed some fields to protectesd to enable faking
* Renamed Region/CoreModules/ServiceConnectors to ↵diva2009-06-142-2/+2
| | | | Region/CoreModules/ServiceConnectorsOut. No functional changes.
* Formatting cleanup.Jeff Ames2009-06-101-4/+4
|
* * Reverting the test restructuring as, on second thought, this is not at all ↵lbsa712009-06-075-0/+1088
| | | | | | | how the tests are structured. (pt1)
* * Restructured Scenes Tests to follow (what I conceive of as being) current ↵lbsa712009-06-055-1088/+0
| | | | directory standards. (pt 1 - thank you, svn. not.)