aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-05-23Removed MySql and SQLite-specific asset test filesAlexRa1-92/+0
2010-05-23All data tests made DBMS-independentAlexRa3-327/+0
2010-02-21Deleted obsolete files in the Data layer. Compiles.Diva Canto6-235/+103
2010-02-05Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim1-2/+7
This should accommodate various timeout problems that exist with the current connection pool code in a more general and standard way.
2009-08-16Adding in Reflection-based testing, to ensure that all properties are covered.Kunnis2-3/+17
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames6-6/+6
LICENSE.txt.
2009-04-22add if exists to the drop tableSean Dague2-30/+30
2009-04-22add cleardb to estate testsSean Dague1-16/+24
2009-04-22ensure we've got a clean data environment prior to running the regionSean Dague1-17/+24
tests
2009-04-09* Moved the DatabaseTestAttribute to Test.Common, and thus included ref to ↵lbsa716-0/+6
that in all db tests. *phew*
2009-04-09* tagged some more database tests as suchlbsa715-5/+5
2009-04-09* Added custom DatabaseTestAttribute to help separating unit tests from ↵lbsa711-1/+1
component tests.
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke6-10/+29
* 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.
2009-02-12* optimized usings.lbsa716-49/+6
2009-02-09Update svn properties, minor formatting cleanup.Jeff Ames1-99/+99
2009-02-09Thank you kindly, TLaukkan (Timmil) for a patch that:Charles Krinke1-0/+99
* Fixed and added athursv's BasicEstateTest * Added MySQLEstateTest * Added SQLiteEstateTest
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield5-5/+5
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!
2009-01-14* Added MySQL Grid unit testsSean Dague1-0/+83
From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-01-05change the drop order to see if this affects unit test failsSean Dague1-1/+1
From: Sean Dague <sdague@gmail.com>
2008-09-24light mysql user testsSean Dague1-0/+88
2008-09-24light the mysql region testsSean Dague1-0/+97
2008-09-24let the asset tests run on MySQL. Interesting difference here, theSean Dague2-0/+91
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-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.