aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-01add delete prim tests. Found and fixed bugs where regionSean Dague1-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.
2008-09-29add a test for updating region settings and fix a bug in uuidSean Dague1-0/+20
translation in sqlite uncovered by this test.
2008-09-26* minor: remove warningsJustin Clarke Casey4-4/+4
2008-09-24let the asset tests run on MySQL. Interesting difference here, theSean Dague1-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.
2008-09-23couple of minor test cleanups to see if this gets us past the bamboo humpSean Dague4-4/+4
2008-09-21* minor: warnings removalJustin Clarke Casey1-1/+1
2008-09-19add in bits to attempt to enable log4net on these tests to help when debuggingSean Dague3-0/+27
2008-09-19add a region settings testSean Dague1-0/+13
2008-09-18* Updates the SQLite region database to support the same properties that the ↵Teravus Ovares1-1/+10
MySQL version does for the table, prims. * If this causes any unit tests to fail, the tests need to be updated.
2008-09-18add some comments and some try blocks around object storageSean Dague1-3/+26
in the hopes this will help debug why this is failing for some people.
2008-09-16Added some terrain tests, and found a fun race condition in the sqliteSean Dague1-10/+81
terrain driver in the process, which is now fixed. yay for unit tests!
2008-09-16we can use equals on strings because they are comparible, andSean Dague1-3/+3
this is the prefered way of doing these tests.
2008-09-16add an inventory change test.Sean Dague1-0/+19
2008-09-132 more InventoryItem tests, plus see if I can leave the log4netSean Dague1-0/+24
configure in there to help me get debug messages while developing.
2008-09-12add first round of folder testsSean Dague1-44/+98
2008-09-12because UUID supports equality, we can do a straight equals instead ofSean Dague1-3/+3
convert to string and match.
2008-09-12use new style asserts. They are much easier to read.Sean Dague1-2/+2
2008-09-12move the actual [Test] methods for databases to OpenSim.Data.TestsSean Dague4-0/+299
classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface.
2008-09-12change order in prebuild.xml so this works in nant on a cleanSean Dague1-1/+1
checkout.
2008-09-12be more clever and move the bulk of the db tests for inventory intoSean Dague1-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.