aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-25removal of more dead alter table codeSean Dague1-39/+2
2008-09-24light mysql user testsSean Dague1-0/+88
2008-09-24expose it for real, missed the public keywordSean Dague1-1/+1
2008-09-24expose MySQLUserData class so that it can be testedSean Dague1-1/+1
2008-09-24remove configurable table names from the mysql user driver. ThatSean Dague1-24/+3
doesn't work in a world of migrations anyway, and is only cruft that will confuse people.
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz4-0/+65
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-24light the mysql region testsSean Dague1-0/+97
2008-09-24let the asset tests run on MySQL. Interesting difference here, theSean Dague4-4/+102
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-24remove a bunch of out of date inline ALTER table commands that would onlySean Dague1-84/+17
confuse people.
2008-09-23couple of minor test cleanups to see if this gets us past the bamboo humpSean Dague5-12/+4
2008-09-23create the first attempted mysql test. This only runs locally if youSean Dague1-8/+19
have a database configured as opensim-nunit with user opensim-nunit / password opensim-nunit that has full perms on the database.
2008-09-23remove log4net references, see if that helps fix bambooSean Dague1-9/+1
2008-09-23check in stubbing for mysql tests. This is ignored withSean Dague1-0/+74
Assert.Ignore() for now, so it won't change anything, but I want to make sure it doesn't break the bamboo infrastructure in it's current state.
2008-09-21* minor: warnings removalJustin Clarke Casey1-1/+1
2008-09-20remove some extraneous debug messages from migrationsSean Dague1-2/+0
2008-09-19Small formatting cleanup, before chi11ken notices. Me bad.Homer Horwitz3-20/+39
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-19convert to using proper .net tempfiles, should have done thisSean Dague4-4/+13
initially.
2008-09-18Add a db.Dispose before calling Delete on the SQLite database.Homer Horwitz4-1/+5
On Windows, you are not able to delete a file while there is still a handle to it open.
2008-09-18- Add Dispose method to IRegionDataStoreHomer Horwitz8-10/+110
- Add necessary dummy Dispose-methods where they are missing - Implement the SQLite Dispose-methods (currently only used for unit tests, in the next commit)
2008-09-18* Updates the SQLite region database to support the same properties that the ↵Teravus Ovares3-1/+190
MySQL version does for the table, prims. * If this causes any unit tests to fail, the tests need to be updated.
2008-09-18adds support to delete a region completely and offers thatDr Scofield1-1/+0
functionality via the console command "delete-region" and also via RemoteAdminPlugin. minor typo fix.
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-17Adding currentLookAt to useragents table in SQLite. This complements theHomer Horwitz2-0/+15
MySQL change from http://opensimulator.org/mantis/view.php?id=2073
2008-09-16Added some terrain tests, and found a fun race condition in the sqliteSean Dague3-26/+97
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-16Mantis #904: Thanks jonc, for a patch that adds "useragents" table toHomer Horwitz2-67/+84
SQLite and stores the logout position in standalone mode. Note: This adds a migration for SQLite, so do your runprebuild
2008-09-16add an inventory change test.Sean Dague1-0/+19
2008-09-15Update svn properties, minor formatting cleanup, fix a compiler warning.Jeff Ames1-3/+6
2008-09-14Mantis #2124Melanie Thielker24-1717/+2573
Thank you, RuudL, for a patch that brings MSSQL up to the same implementation level as MySQL.
2008-09-14Thank you kindly, CMickeyb for a patch that:Charles Krinke1-0/+6
Moved intialization of appearance from the SendInitialData event handler into CompleteMovement handler. That ensures that m_appearance is initialized before the inventory is retrieved (so there is a place to check on attachments).
2008-09-13* Adds regiondata and estatedata persistence in Sqlite. This commit is ↵Teravus Ovares1-0/+3
actually an assist. 99% of the work was already done by Melanie.
2008-09-13Formatting cleanup.Jeff Ames1-1/+1
2008-09-13* Fixes SQLite load crash. Teravus Ovares1-2/+3
* added primary key to regionsettings table in the cached table * initialized the data adapter. * Still untested fully, so watch out!
2008-09-13Add region settings support to SQLite (untested!)Melanie Thielker1-1/+183
2008-09-13wrap log4net configure in try block so that it will run if you don't have aSean Dague1-1/+5
.config (which no one does). Dropping in the .config lets you see that debug messages, which is handy while writing tests and figuring out why things don't behave like you would guess.
2008-09-132 more InventoryItem tests, plus see if I can leave the log4netSean Dague2-0/+26
configure in there to help me get debug messages while developing.
2008-09-12* minor: spelling mistake and message tidying on Migration messagesJustin Clarke Casey1-5/+5
2008-09-12add first round of folder testsSean Dague1-44/+98
2008-09-12* Make fix to MSSQLRegionData.cs in LoadLandObjects as recommended by ↵Justin Clarke Casey1-1/+1
Garrett Hussey in Re: [Opensim-dev] MSSQL runtime error in latest build.. * Thanks!
2008-09-12* Add userstore sql upgrade I carelessly forgot to check in a couple of ↵Justin Clarke Casey1-0/+5
revisions ago * Hopefully there wasn't a problem anyway, since the look at stuff isn't enabled yet
2008-09-12* Patch http://opensimulator.org/mantis/view.php?id=2163Justin Clarke Casey2-0/+12
* Add prim ClickAction persistence to SQLite * This will require a prebuild * Thanks nlin!
2008-09-12* Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey1-3/+6
* This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
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 Dague7-167/+308
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 Dague2-140/+187
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.
2008-09-11more inventory folder testsSean Dague1-10/+55