aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add delete prim tests. Found and fixed bugs where regionSean Dague2008-10-011-5/+44
| | | | | | | | is not respected by sqlite or mysql drivers so that deleting and object in a region actually deletes that object from any region.
* add a test for updating region settings and fix a bug in uuidSean Dague2008-09-291-0/+20
| | | | | | translation in sqlite uncovered by this test.
* * minor: remove warningsJustin Clarke Casey2008-09-264-4/+4
|
* let the asset tests run on MySQL. Interesting difference here, theSean Dague2008-09-241-3/+10
| | | | | | | sqlite driver can handle .Data = Null, the mysql driver can not. We should decide which is the right behavior and adjust code for it.
* couple of minor test cleanups to see if this gets us past the bamboo humpSean Dague2008-09-234-4/+4
|
* * minor: warnings removalJustin Clarke Casey2008-09-211-1/+1
|
* add in bits to attempt to enable log4net on these tests to help when debuggingSean Dague2008-09-193-0/+27
|
* add a region settings testSean Dague2008-09-191-0/+13
|
* * Updates the SQLite region database to support the same properties that the ↵Teravus Ovares2008-09-181-1/+10
| | | | | | | MySQL version does for the table, prims. * If this causes any unit tests to fail, the tests need to be updated.
* add some comments and some try blocks around object storageSean Dague2008-09-181-3/+26
| | | | | | in the hopes this will help debug why this is failing for some people.
* Added some terrain tests, and found a fun race condition in the sqliteSean Dague2008-09-161-10/+81
| | | | | | terrain driver in the process, which is now fixed. yay for unit tests!
* we can use equals on strings because they are comparible, andSean Dague2008-09-161-3/+3
| | | | | | this is the prefered way of doing these tests.
* 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
|
* because UUID supports equality, we can do a straight equals instead ofSean Dague2008-09-121-3/+3
| | | | | | convert to string and match.
* use new style asserts. They are much easier to read.Sean Dague2008-09-121-2/+2
|
* move the actual [Test] methods for databases to OpenSim.Data.TestsSean Dague2008-09-124-0/+299
| | | | | | | classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface.
* change order in prebuild.xml so this works in nant on a cleanSean Dague2008-09-121-1/+1
| | | | | | checkout.
* be more clever and move the bulk of the db tests for inventory intoSean Dague2008-09-121-0/+184
OpenSim.Data.Tests, then subclass with custom init bits for sqlite. As I've only been testing the plugin interfaces anyway, this should make it very easy to write only a little bit of code to use these tests for other databases. It will also give us the framework for definining the datastore behavior and making sure that all the databases do the same thing.