aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Tests/EstateTests.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-9/+9
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-8/+0
2011-08-06rename TestHelper => TestHelpers for consistencyJustin Clark-Casey (justincc)1-8/+8
2011-03-14Add current method output to all persistence level tests so that we can ↵Justin Clark-Casey (justincc)1-0/+17
track where we are in the test suite
2011-03-09Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)1-14/+1
This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
2010-08-24Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)1-6/+0
goes to the correct directory Also removes some mono compiler warnings
2010-05-23Various minor changes in the data testsAlexRa1-10/+1
2010-05-23Unitests: Asset, Estate, Region (the "legacy" one), InventoryAlexRa1-0/+26
The tests have been modified to work under NUnit 2.4.6 (the one currently used in the project). They will also work with NUnit 2.5+ as is, but will look better if you #define NUNIT25 for them.
2010-05-23Bugfix in tests (must clear db before migrations, not after)AlexRa1-1/+1
2010-05-23EstateData tests passing on all DBsAlexRa1-28/+2
2010-05-23All data tests made DBMS-independentAlexRa1-4/+47
2010-03-22Remove the reading of estate_settings.xml and the associated processing ofMelanie1-12/+12
defaults. Adding code to facilitate estate creation / managemment as part of first time start up
2009-11-27Apply patch that fixes the failing T013_eStateSettingsRandomStorage testJustin Clark-Casey (justincc)1-3/+4
See http://opensimulator.org/mantis/view.php?id=3993 Thanks Kunnis
2009-09-07oops, disable T012_EstateSettingsRandomStorage() again since it does appear ↵Justin Clark-Casey (justincc)1-1/+2
to fail occasionally
2009-09-06T012_EstateSettingsRandomStorage() which wasn't being run because the method ↵Justin Clark-Casey (justincc)1-2/+1
was private test appears to work, so method made public to run in tests
2009-08-16* Added Expression based ignores to the PropertyScrambler, which makes a lot ↵Kunnis1-10/+2
of the tests clearer because I'm not constantly resetting properties.
2009-08-16Adding in Reflection-based testing, to ensure that all properties are covered.Kunnis1-0/+18
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-02-25* minor: Remove most mono compiler warningsJustin Clarke Casey1-1/+1
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-0/+3
* 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-21* Applied a patch that: Added estate ban table to migration scripts and ↵lbsa711-4/+4
nhibernate mapping. Refactored property getters and setters for estate ban object to support NHibernate. * Added estate ban table to migration scripts of all supported databases. * Added nhibernate mapping for EstateBans property of EstateSettings * Refactored property accessors for EstateBan object. * Added comments for EstateBan properties. * Ensured that NHibernate tests pass with NUnitGUI. * Ensured that nant test target passes. This fixes mantis #3210. Thank you, tlaukkan!
2009-02-18Fix estate ban list persistence in MySQL and reenable testsMelanie Thielker1-15/+0
2009-02-14Mantis 3164. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-87/+431
* Added tests for manager, user and group lists. * Added test for ban list. The test had to be left as ignored as native MySQL throws exception when ban is saved. * Added utility class to support parametrized unit tests for range checking.
2009-02-14Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-0/+3
* Created value object for EstateRegionLink for storing the estate region relationship. * Refactored slightly NHibernateManager and NHibernateXXXXData implementations for accesing nhibernate generated ID on insert. ** Changed NHibernateManager.Save method name to Insert as it does Insert. ** Changed NHibernateManager.Save return value object as ID can be both UUID and uint currently. ** Changed NHibernateManager.Load method Id parameter to object as it can be both UUID and uint. * Created NHibernateEstateData implementation. This is the actual estate storage. * Created NHibernate mapping files for both EstateSettings and EstateRegionLink * Created MigrationSyntaxDifferences.txt files to write notes about differences in migration scripts between different databases. * Created estate storage migration scripts for all four databases. * Created estate unit test classes for all four databases. * Updated one missing field to BasicEstateTest.cs * Tested NHibernate unit tests with NUnit GUI. Asset databases fail but that is not related to this patch. * Tested build with both Visual Studio and nant. * Executed build tests with nant succesfully.
2009-02-12* optimized usings.lbsa711-6/+3
2009-02-09Update svn properties, minor formatting cleanup.Jeff Ames1-154/+154
2009-02-09Thank you kindly, TLaukkan (Timmil) for a patch that:Charles Krinke1-0/+154
* Fixed and added athursv's BasicEstateTest * Added MySQLEstateTest * Added SQLiteEstateTest