aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Fix for hanging on "Connecting to region".. caused by packets being ↵Melanie2010-11-051-4/+0
| | | | | | | | | | | | processed before the presence has bound to receive events. Fixed this by adding packets to a queue and then processing them when the presence is ready." This reverts commit 91b1d17e5bd3ff6ed006744bc529b53a67af1a64. Conflicts: OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs OpenSim/Region/Framework/Scenes/ScenePresence.cs
* Merge branch 'master' into careminster-presence-refactorMelanie2010-11-031-1/+9
|\
| * Add lsClearWindlightScene() to the lightshare module to remove WL settingsMelanie2010-11-031-1/+9
| | | | | | | | from a region and allow normal day cycles to be reestablished
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-10-291-1/+1
|\ \ | |/
| * Major refactoring of appearance handling.Master ScienceSim2010-10-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AvatarService -- add two new methods, GetAppearance and SetAppearance to get around the lossy encoding in AvatarData. Preseve the old functions to avoid changing the behavior for ROBUST services. AvatarAppearance -- major refactor, moved the various encoding methods used by AgentCircuitData, ClientAgentUpdate and ScenePresence into one location. Changed initialization. AvatarAttachments -- added a class specifically to handle attachments in preparation for additional functionality that will be needed for viewer 2. AvatarFactory -- removed a number of unused or methods duplicated in other locations. Moved in all appearance event handling from ScenePresence. Required a change to IClientAPI that propogated throughout all the IClientAPI implementations.
| * Plumb the path for multiple object deletesMelanie2010-10-061-1/+1
| |
* | Make SendKillObject send multiple localIDs in one packet. This avoids theMelanie2010-10-081-1/+1
| | | | | | | | halting visual behavior of large group deletes and eliminates the packet flood
* | Plumb the path for multiple object deletesMelanie2010-10-061-1/+1
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-172-4/+4
|\ \ | |/ | | | | | | | | Integrate the next large patch. Don't use this version, it has a ghost avatar issue. Next push will fix it.
| * Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJohn Hurliman2010-09-161-3/+3
| |\
| | * minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2010-09-161-3/+3
| | |
| * | Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman2010-09-161-1/+1
| |/ | | | | | | MapAndArray collection
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-141-1/+1
|\ \ | |/
| * fix OpenSim.Tests.ConfigurationLoaderTest to satisfy requirement that ↵Justin Clark-Casey (justincc)2010-09-141-1/+1
| | | | | | | | | | | | OpenSimDefaults.ini is present this should allow the testsuite to run again and the autobuild to complete
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-136-42/+112
|\ \ | |/ | | | | | | The modules will need to be updated for this to compile and run again. Please don't use until I do the companion commit to modules later on.
| * Fix unit test SceneSetupHelpers to load the mock simulation data storeJohn Hurliman2010-09-122-1/+76
| |
| * MergedJohn Hurliman2010-09-126-31/+30
| |\
| | * Formatting cleanup.Jeff Ames2010-09-126-31/+30
| | |
| * | * Added ISimulationDataService and IEstateDataServiceJohn Hurliman2010-09-122-9/+6
| |/ | | | | | | | | * Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings
| * Changed all string references of "IRegionDataStore" to "ISimulationDataStore"John Hurliman2010-09-111-1/+0
| |
| * Fixed the naming mess around data connectors for simulation dataJohn Hurliman2010-09-111-1/+1
| |
| * Fix deletion persistence when freshly delinked prims are removedJustin Clark-Casey (justincc)2010-09-073-15/+69
| | | | | | | | | | | | | | | | | | | | Previously, Scene.Inventory.DeRezObjects() forced the persistence of prims before deletion. This is necessary so that freshly delinked prims can be deleted (otherwise they remain as parts of their old group and reappear on server restart). However, DeRezObjects() deleted to user inventory, which is required by llDie() or direct region module unlink and deletion. Therefore, forced persistence has been pushed down into Scene.UnlinkSceneObject() to be more general, this is still on the DeRezObjects() path. Uncommented TestDelinkPersistence() since this now passes. Tests required considerable elaboration of MockRegionDataPlugin to reflect underlying storing of parts.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-075-5/+212
|\ \
| * | Fix deletion persistence when freshly delinked prims are removedJustin Clark-Casey (justincc)2010-09-073-15/+69
| |/ | | | | | | | | | | | | | | | | | | Previously, Scene.Inventory.DeRezObjects() forced the persistence of prims before deletion. This is necessary so that freshly delinked prims can be deleted (otherwise they remain as parts of their old group and reappear on server restart). However, DeRezObjects() deleted to user inventory, which is not required by llDie() or direct region module unlink and deletion. Therefore, forced persistence has been pushed down into Scene.UnlinkSceneObject() to be more general, this is still on the DeRezObjects() path. Uncommented TestDelinkPersistence() since this now passes. Tests required considerable elaboration of MockRegionDataPlugin to reflect underlying storing of parts.
| * Add test to check persistence of newly added pre-linked objectsJustin Clark-Casey (justincc)2010-09-063-3/+156
| | | | | | | | | | Added a MockRegionDataPlugin to do in-memory persistence for tests since adding this to OpenSim.Data.Null.NullDataStore doesn't seem appropriate NullDataStore can do nothing because OpenSim only ever retrieve region objects from the database on startup. Adding an in-memory store here would be unecessary overhead.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-302-16/+23
|\ \ | |/
| * allow inventory path specified in "load iar" to start with a / (e.g. ↵Justin Clark-Casey (justincc)2010-08-271-12/+12
| | | | | | | | /Objects is now valid where it wasn't before)
| * refactor: Make IAR tests set up standard iar for loadingJustin Clark-Casey (justincc)2010-08-271-4/+11
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-253-13/+36
|\ \ | |/
| * Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)2010-08-243-13/+36
| | | | | | | | | | | | goes to the correct directory Also removes some mono compiler warnings
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-211-8/+48
|\ \ | |/
| * Unit test breakage fix.Diva Canto2010-08-201-8/+48
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-183-2/+149
|\ \ | |/
| * Added SendTeleportProgress to IClientAPI. Ya know what that means... 8 files ↵Diva Canto2010-08-161-0/+4
| | | | | | | | affected.
| * Work on TeleportStart: renamed method from TeleportLocationStart to ↵Diva Canto2010-08-161-1/+1
| | | | | | | | TeleportStart, and now sending this upon all teleports, not just some, and in the right place (EntityTransferModule).
| * Unit test for ConfigurationLoader.Marck2010-08-131-0/+143
| | | | | | | | Adds a new test assembly for OpenSim.
| * minor: remove mono compiler warningJustin Clark-Casey (justincc)2010-08-131-1/+1
| |
| * Major attachments cleanup. Remove unused AttachObject ClientView methodMelanie2010-07-141-4/+0
| | | | | | | | | | Clean up use of AttachObject throughout, reduce number of overloads and number of parameters
* | Implement CreateNewOutfitAttachments. This addresses mantis #199.Tom2010-08-061-1/+1
| |
* | Major attachments cleanup. Remove unused AttachObject ClientView methodMelanie Thielker2010-07-141-4/+0
| | | | | | | | | | Clean up use of AttachObject throughout, reduce number of overloads and number of parameters
* | Provide the interface for StoreAsset to report success or failureTom Grimshaw2010-06-281-1/+2
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-06-181-6/+6
|\ \ | |/
| * Fix problem where iar load would duplicate huge number of foldersJustin Clark-Casey (justincc)2010-06-181-6/+6
| | | | | | | | | | This was http://opensimulator.org/mantis/view.php?id=4770 Extend unit tests to check for this scenario too
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-06-121-0/+4
|\ \ | |/
| * Move "StopFlying()" into LLSpace. Try to reinstate the carefully crafted packetMelanie2010-06-121-0/+4
| | | | | | | | we used to send before slimupdates and explicitly send it
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-06-122-12/+52
|\ \ | |/
| * Revert "Allow IInventoryService.GetFolder(folderId, userId) as well as ↵Justin Clark-Casey (justincc)2010-06-111-5/+0
| | | | | | | | | | | | GetFolder(InventoryFolderBase folder)" This reverts commit 3525195bc9b5fdfd9799411edd452981ef1f4ebd.
| * Allow IInventoryService.GetFolder(folderId, userId) as well as ↵Justin Clark-Casey (justincc)2010-06-111-0/+5
| | | | | | | | | | | | | | GetFolder(InventoryFolderBase folder) This involves no wire changes since the methods often just construct an InventoryFolderBase under the hood. This is in line with other methods that alraedy allow requests via uuid
| * create inactive test for iar folders/items merged with existing pathsJustin Clark-Casey (justincc)2010-06-112-12/+52
| | | | | | | | add various helper functions for simplifying test readability
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-06-043-61/+11
|\ \ | |/