aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Tests/BasicInventoryTest.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Added Expression based ignores to the PropertyScrambler, which makes a lot ↵Kunnis2009-08-161-27/+17
| | | | of the tests clearer because I'm not constantly resetting properties.
* * Fixed MySQL/MySQLAssetData.cs to properly do updates * Removed an extra ↵Kunnis2009-08-161-7/+49
| | | | parameter from MySQL/MySQLInventoryData.cs * Fixed a bug in SQLite/SQLiteAssetData.cs that was causing a NRE when updating an asset. * Improved the BasicAssetTest.cs to do full create/update/get testing * Improved the BasicInventoryTest.cs to do full create/update/get of both a folder and an item * Moved the null ref tests to the start of the PropertyCompareConstraint.cs, so that it doesn't throw when passing in a null item
* * Modified SQLite/SQLiteInventoryStore.cs to not throw if the inventory row ↵Kunnis2009-08-161-0/+1
| | | | does not exist, to match the mysql behavior. * Modified SQLite/SQLiteRegionData.cs to only persist temporary items following the same rules mysql uses. * Added another ignore to the inventory test that was missing. * Added a few more ignores to the RegionTest that the first version of my test were missing. * Added ignoring the root Folder ID, which is set by the inventory system. * Added several improvements to the PropertyCompareConstraint: Protection against infinite loops, added IComparable<T> (for UUID) and moved IComparable before the property matching. * Fixed a bug where I was saving the inside of the ignore expression instead of the outside of it.
* Adding in Reflection-based testing, to ensure that all properties are covered.Kunnis2009-08-161-11/+26
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* make the asserts spit out messages about their test namesSean Dague2009-04-131-41/+41
|
* * Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey2009-04-081-1/+1
| | | | | | | | | as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
* * minor: Remove most mono compiler warningsJustin Clarke Casey2009-02-251-1/+1
|
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-221-0/+3
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* * optimized usings.lbsa712009-02-121-5/+3
|
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-1/+1
| | | | | | | | | | | | | | | | | | | | 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!
* - move OpenSim/Framework/IInventoryData.cs toMike Mazur2009-02-031-10/+10
| | | | | | OpenSim/Data/IInventoryData.cs - trim trailing whitespace
* * minor: remove warningsJustin Clarke Casey2008-09-261-1/+1
|
* couple of minor test cleanups to see if this gets us past the bamboo humpSean Dague2008-09-231-1/+1
|
* add in bits to attempt to enable log4net on these tests to help when debuggingSean Dague2008-09-191-0/+9
|
* add an inventory change test.Sean Dague2008-09-161-0/+19
|
* 2 more InventoryItem tests, plus see if I can leave the log4netSean Dague2008-09-131-0/+24
| | | | | | configure in there to help me get debug messages while developing.
* add first round of folder testsSean Dague2008-09-121-44/+98
|
* move the actual [Test] methods for databases to OpenSim.Data.TestsSean Dague2008-09-121-0/+184
classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface.