aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiverTests.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * Make archiver tests pump the asset server manually instead of starting the ↵Justin Clarke Casey2009-04-141-1/+5
| | | | | | | | | 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
* * Tagged long running tests with LongRunningAttribute.lbsa712009-04-091-1/+2
| | | | | | * Now, the 144 unit tests takes roughly as long time to run (16s on my laptop) that the 10 long running takes. The database tests takes forever. * Feel free to run the unit tests as you code, and the rest before commit.
* Rename OpenSim.Framework.Archive to OpenSim.Framework.SerializationMike Mazur2009-03-161-1/+1
| | | | | Update using statements and prebuild.xml. Also trim trailing whitespace.
* Move ArchiveConstants to OpenSim.Framework.ArchiveMike Mazur2009-03-121-38/+38
| | | | | | | | | | - move a couple constants from InventoryArchiveConstants to ArchiveConstants, now only one of these is needed - change InventoryArchiveConstants references to ArchiveConstants - remove InventoryArchive AssetInventoryServer plugin dependency on OpenSim.Region.CodeModules - trim trailing whitespace
* Moving TarArchive to OpenSim.Framework.ArchiveMike Mazur2009-03-121-1/+2
| | | | | | | We now build OpenSim.Framework.Archive.dll which aims to contain code used for archiving various things in OpenSim. Also remove trailing whitespace.
* * Add the abilty to load and save iar item nodes where folders have ↵Justin Clarke Casey2009-03-041-3/+9
| | | | identical names
* * Fix my own unit testJustin Clarke Casey2009-02-251-2/+3
| | | | | | * Disable folder iar creation code for now (though this wasn't actually causing the test failure)
* * Assign incoming items with a random UUID so that archives can be loaded ↵Justin Clarke Casey2009-02-171-2/+0
| | | | | | | | more than once * Also remove a duplicate write archive call in the unit test which might be causing test failures for people using mono 2.2 (though not 1.9.1, it would seem)
* * extend inventory archive save test to check for the presence of the item ↵Justin Clarke Casey2009-02-171-26/+32
| | | | file in the saved archive
* * switch to pulsing monitors to perform test sync instead of events, since ↵Justin Clarke Casey2009-02-171-5/+11
| | | | this doesn't allow one to accidentally forget to reset the event
* * Establish InventoryArchiveSaved event for unit testsJustin Clarke Casey2009-02-171-7/+16
| | | | | | * This is done on the inventory archiver module directly rather than Scene.EventManager - the module seems the more appropriate location
* * Iniital inventory archive test code. Doesn't actually do any testing yetJustin Clarke Casey2009-02-161-0/+159