aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* warnings safari.dr scofield (aka dirk husemann)2009-09-022-6/+6
|
* adding new IniConfigSource() to SceneSetupHelpers to fix emptydr scofield (aka dirk husemann)2009-09-011-1/+1
| | | | | IConfigSource causing grief to region modules expecting it to be non-empty (which a number of them do).
* Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)2009-08-281-1/+11
|
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-221-0/+5
| | | | | | folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
* Fixing a spot I missed in assets. Switching Grid to the new naming schema ↵Kunnis2009-08-191-0/+13
| | | | with Store/Get
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-191-0/+5
| | | | operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
* A better purge of trash folder.Diva Canto2009-08-191-1/+1
|
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-172-5/+52
|\
| * Add copyright headers. Formatting cleanup. Fix a compiler warning.Jeff Ames2009-08-171-1/+28
| |
| * * Added Expression based ignores to the PropertyScrambler, which makes a lot ↵Kunnis2009-08-161-0/+19
| | | | | | | | of the tests clearer because I'm not constantly resetting properties.
| * Merge branch 'master' of ssh://MyConnection/var/git/opensimTeravus Ovares (Dan Olivares)2009-08-161-0/+1
| |\
| * | * ShortVersion, another attempt at fixing the test thread death that ↵Teravus Ovares (Dan Olivares)2009-08-161-5/+6
| | | | | | | | | | | | | | | | | | randomly occurs. * LongVersion nIni may be causing the test thread death. Pausing OpenSimulator during startup causes a nIni error that makes debugging startup operations difficult for users. It might be because when it's in pause mode, something else reads from the nini config passed? If it is, it might not be fixable.. however, if it's concurrency that causes nini death it would make sense to give each section of the tests a new IConfigSource so that they don't read from the same configsource at the same time.
* | | Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim into ↵Diva Canto2009-08-161-0/+1
|\ \ \ | | |/ | |/| | | | inventory-connector
| * | Thanks dmiles for a patch that adds PacketType.RequestMultipleObjects Packet ↵Adam Johnson2009-08-161-0/+1
| |/ | | | | | | Handler - ref mantis #4010
* | Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-141-3/+11
|\ \ | |/
| * Re-enable TestSaveIarV0_1()Justin Clark-Casey (justincc)2009-08-141-3/+11
| | | | | | | | Implement more parts of TestAssetService
* | Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto2009-08-131-0/+5
| |
* | Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto2009-08-131-2/+2
|/ | | | starting to get on my nerves.
* Formatting cleanup. Add copyright headers.Jeff Ames2009-08-131-1/+28
|
* Added new operations to mock inventory service in tests.Diva Canto2009-08-111-0/+15
|
* Establish CachedUserInfo.OnInventoryReceived event so that region/test ↵Justin Clark-Casey (justincc)2009-08-111-6/+36
| | | | inventory code can be written with the async inventory fetch
* Added some needed comments to SceneSetupHelper (actually just retriggering ↵Arthur Valadares2009-08-111-2/+19
| | | | panda)
* * Improves SceneSetupHelper to allow the tester to choose a real or mock, ↵Arthur Valadares2009-08-113-31/+221
| | | | | | | | inventory and asset, service modules. The boolean startServices was replaced with realServices string. If the string contains the word asset, it will start a real asset module, if it contains inventory, it starts a real inventory. Otherwise, it use mock (NullPlugin-like) objects, for tests that don't really need functionality. * SetupScene is now actually sharing the asset and inventory modules if the tester wishes to have multiple regions connected. To link regions, just start SetupScene with the same CommunicationManager for all scenes. SceneSetupHelper will hold a static reference to the modules and won't initialize them again, just run the scenes through the modules AddRegion, RegionLoaded and PostInitialize. * With the recent changes, both asset and inventory (and in the future, user) services should always be asked from the scene, not instantiated alone. The tests should reflect this new behavior and always start a scene.
* First pass at cleaning up old OGS1 and Local Inventory: removed ↵Diva Canto2009-08-101-5/+0
| | | | everything-inventory in CommsManager, which wasn't actively used anymore.
* * Fix test failure by setting up MainConsole.Instance in ↵Justin Clark-Casey (justincc)2009-08-101-0/+4
| | | | SceneSetupHelpers.SetupScene()
* More clean up from asset cache legacy. None of these classes are used anymore.Diva Canto2009-08-101-119/+0
|
* This is the second part of the 'not crash on regionsize changes'. This ↵Teravus Ovares (Dan Olivares)2009-08-071-1/+1
| | | | lets you configure region sizes to be smaller without crashing the region. I remind you that regions are still square, must be a multiple of 4, and the Linden client doesn't like anything other then 256. If you set it bigger or smaller, the terrain doesn't load in the client, the map has issues, and god forbid you connect it to a grid that expects 256m regions.
* test item data storage impementation (unused as of yet)Justin Clark-Casey (justincc)2009-08-051-14/+31
|
* Reinstate TestLoadIarV0_1ExistingUsers(), removing unnecessary waitJustin Clark-Casey (justincc)2009-08-051-1/+1
|
* * Updates RESTInterregionComms and LocalInterregionComms to the new region ↵Arthur Valadares2009-07-231-0/+1
| | | | | | | | | | | | | 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
* * Created a way that the OpenSimulator scene can ask the physics scene to do ↵Teravus Ovares2009-07-191-0/+4
| | | | | | | | | a raycast test safely. * Test for prim obstructions between the avatar and camera. If there are obstructions, inform the client to move the camera closer. This makes it so that walls and objects don't obstruct your view while you're moving around. Try walking inside a hollowed tori. You'll see how much easier it is now because your camera automatically moves closer so you can still see. * Created a way to know if the user's camera is alt + cammed or just following the avatar. * Changes IClientAPI interface by adding SendCameraConstraint(Vector4 CameraConstraint)
* fixed the bug where changing the rotation of a selection of prims in a ↵MW2009-07-171-0/+1
| | | | | | | | | linkset, made each of those prims rotate around its own centre rather than around the geometric centre of the selection like they should do (and like the client expects). This involved adding a new OnUpdatePrimSingleRotationPosition event to IClientAPI so that we can get the changed position from the client. Btw adding new events to IClientAPI is really tedious where you have to copy the change across to at least 5 or 6 other files. [Note this doesn't fix the bug where any rotation changes to the root prim (but not the whole linkset) cause rotation errors on the child prims.]
* Explicitly set up the http server singleton fo the testsMelanie Thielker2009-07-101-0/+2
|
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-1/+1
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* Restore the functionality that was removed in r9928. This lets the loadMelanie Thielker2009-07-011-0/+5
| | | | | | | | | balancer plugin work again. Create a new method, GetClientEP, to retrieve only the EndPoint for script usage. Marked the purpose of the method in IClientAPI.cs with a warning. Also restored the corresponding SetClientInfo functionality.
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-191-1/+1
| | | | | | This patch ensures that the touch positions are set during touch_end events (currently only working for touch_start and touch events).
* Renamed Region/CoreModules/ServiceConnectors to ↵diva2009-06-141-2/+2
| | | | Region/CoreModules/ServiceConnectorsOut. No functional changes.
* * Reinstating UserProfileCacheServiceTests. One test still fails ↵Arthur Valadares2009-06-111-1/+1
| | | | (TestUpdateFolder)
* duh. wrong variable name in SceneSetup.diva2009-06-101-4/+4
|
* The previous commit was still wrong.diva2009-06-101-1/+1
|
* Attempt at fixing the inventory archiver tests.diva2009-06-101-1/+15
|
* Formatting cleanup.Jeff Ames2009-06-102-2/+2
|
* * Fix unit tests so that they correctly handle 404 missing asset responseJustin Clarke Casey2009-06-051-4/+6
| | | | | | * I didn't think there were tests in this area - my bad
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-0114-14/+14
| | | | LICENSE.txt.
* * Add xml2 load testJustin Clarke Casey2009-05-291-3/+5
|
* * So, giving up on my efforts to de-duplicate the asset handlers. I'll just ↵lbsa712009-05-271-4/+33
| | | | | | | service commit my current state, then start over and this time concentrating only on the new handlers. * Fixed some erroneous refs in Tests.Common
* Revert "* Added IntegrationTest Attribute and tagged the ODETestClass"Sean Dague2009-05-271-17/+0
| | | | | | | This reverts commit 8f0096cc7b112fea8f69f391224911f624482747. To get us back to compiling on fresh checkouts.
* * Added IntegrationTest Attribute and tagged the ODETestClasslbsa712009-05-271-0/+17
|
* converting CapabilitiesModule to new region module schemeDr Scofield2009-05-251-3/+4
|
* letting TestClient implement IClientCore as well to fix test caseDr Scofield2009-05-251-1/+22
| | | | | failure due to new NAT code