aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removed MySql and SQLite-specific asset test filesAlexRa2010-05-231-64/+0
|
* All data tests made DBMS-independentAlexRa2010-05-233-195/+0
|
* Deleted obsolete files in the Data layer. Compiles.Diva Canto2010-02-211-64/+0
|
* skip sqlite tests on z linux, as sqlite doesn't work right on the platformSean Dague2009-08-065-13/+13
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-015-5/+5
| | | | LICENSE.txt.
* silly C# not letting me use a File.Exists test for a directory. Don'tSean Dague2009-04-245-5/+5
| | | | | you know a directory is just a special kind of file on Linux.
* change power linux detection method, the previous method only workedSean Dague2009-04-245-10/+10
| | | | | with interactive logins, not under panda.
* * Moved the DatabaseTestAttribute to Test.Common, and thus included ref to ↵lbsa712009-04-095-0/+5
| | | | that in all db tests. *phew*
* * Added custom DatabaseTestAttribute to help separating unit tests from ↵lbsa712009-04-095-5/+5
| | | | component tests.
* SQLite doesn't work on ppc64, so ignore these tests if we areSean Dague2009-04-085-0/+30
| | | | | on this platform
* * optimized usings.lbsa712009-02-125-40/+4
|
* Update svn properties, minor formatting cleanup.Jeff Ames2009-02-091-65/+65
|
* Thank you kindly, TLaukkan (Timmil) for a patch that:Charles Krinke2009-02-091-0/+65
| | | | | | | * Fixed and added athursv's BasicEstateTest * Added MySQLEstateTest * Added SQLiteEstateTest
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-064-4/+4
| | | | | | | | | | | | | | | | | | | | 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!
* couple of minor test cleanups to see if this gets us past the bamboo humpSean Dague2008-09-231-8/+0
|
* convert to using proper .net tempfiles, should have done thisSean Dague2008-09-194-4/+13
| | | | | | initially.
* Add a db.Dispose before calling Delete on the SQLite database.Homer Horwitz2008-09-184-1/+5
| | | | | | | On Windows, you are not able to delete a file while there is still a handle to it open.
* Added some terrain tests, and found a fun race condition in the sqliteSean Dague2008-09-161-1/+1
| | | | | | terrain driver in the process, which is now fixed. yay for unit tests!
* Update svn properties, minor formatting cleanup, fix a compiler warning.Jeff Ames2008-09-151-3/+6
|
* wrap log4net configure in try block so that it will run if you don't have aSean Dague2008-09-131-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.
* 2 more InventoryItem tests, plus see if I can leave the log4netSean Dague2008-09-131-0/+2
| | | | | | configure in there to help me get debug messages while developing.
* move the actual [Test] methods for databases to OpenSim.Data.TestsSean Dague2008-09-123-167/+9
| | | | | | | classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface.
* be more clever and move the bulk of the db tests for inventory intoSean Dague2008-09-121-140/+3
| | | | | | | | | | | 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.
* more inventory folder testsSean Dague2008-09-111-10/+55
|
* add some folder create and list testsSean Dague2008-09-111-1/+40
|
* added simple add / exists folder checkSean Dague2008-09-111-0/+41
|
* add a few more SQLite Asset tests.Sean Dague2008-09-111-3/+31
|
* added very basic stubs for User and Inventory db creates and emptySean Dague2008-09-102-0/+146
| | | | | | calls to make sure they worked
* fix typo in name of test dbSean Dague2008-09-101-1/+1
|
* add basic sniff tests for SQLite Asset store. Initializes a db,Sean Dague2008-09-101-0/+91
| | | | | | | | stores an asset, fetches that asset, make sure it has the name we gave it. All simple stuff, but should catch the more egregious breaks.
* add a simple update attribute test for SOG & SQLiteSean Dague2008-09-101-2/+22
|
* added in a few more testsSean Dague2008-09-101-6/+40
|
* the explicit log4net configure attempt was maybe breaking bamboo, getSean Dague2008-09-101-4/+0
| | | | | | rid of that.
* added the first couple of sqlite tests. we'll see how bambooSean Dague2008-09-101-1/+52
| | | | | | handles them.
* add shell for SQLite testing. No tests yet.Sean Dague2008-09-101-0/+49
add another nant target for test-xml to get the verbose version