| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
NOTE that this INI file is currently loaded as a embedded RESOURCE, which is weird and has a
disadvantage of having to rebuild the Tests whenever the conn strings are changed.
The only reason is that I couldn't figure out a reliable way to put this INI into the correct
dir at runtime. If somebody can do it, that would be cool.
|
|
|
|
|
|
|
|
| |
AssetTests: The name has changed to reflect the fact it is no longer a base class,
but the complete asset test for all supported databases.
The test can also check storing of CreatorID, but the feature is
disabled at this commit!
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
The problem was that some tests relied on prior tests
to leave the DB in a particular state, but the test class
cleared the DB every time. The affected tests have been
merged into one to remove the dependencies.
tested on all 3 Dbs, all tests green.
|
|
|
|
|
| |
(added more functions for cleaning up DB from the
derived tests)
|
| |
|
|
|
|
|
|
|
|
|
|
| |
These are some generic classes that simplify writing tests
for any of the data connectors and databases. Among other
things, configuring the connection strings is done once,
in a separate resource file.
Tests based on the new BasicDataServiceTest class require
NUnit 2.5 or better.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Contains a migration.
SQLite: May contain nuts.
The SQLite migration copies the entire asset table. Be prepared for quite a wait. Don't interrupt it. Back up your assets db.
BasicAssetTest checks CreatorID storage, new test for weird CreatorID
(now also checks that non-GUID or empty CreatorID gets stored correctly)
Signed-off-by: Melanie <melanie@t-data.com>
|
|
|
|
|
|
|
|
|
| |
The asset type wasn't in the list of "DontScramble" fields,
so the test assets were stored with randomized type, which
caused exception on reading them.
Also the scrambler was moved from local var to the class level,
so it could be used in the new tests I've added (see the next commit).
|
|
|
|
|
|
|
| |
this seems the least evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was SQLiteNG
MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone)
See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details
This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita.
|
|
|
|
|
| |
defaults. Adding code to facilitate estate creation / managemment as part of
first time start up
|
| |
|
| |
|
|\
| |
| |
| | |
into presence-refactor
|
| |\
| | |
| | |
| | | |
This brings presence-refactor up to master again
|
| | |
| | |
| | |
| | | |
since it's making the tests fail but the cause is not obvious (wrapped up in layers of reflection)
|
| | |
| | |
| | |
| | | |
why that test doesn't show in panda.
|
| |/ |
|
|/
|
|
| |
CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
|
|
|
|
| |
yet.
|
|
|
|
|
|
| |
not even stored in mysql.
Signed-off-by: Melanie <melanie@t-data.com>
|
|
|
|
|
| |
See http://opensimulator.org/mantis/view.php?id=3993
Thanks Kunnis
|
| |
|
|
|
|
| |
unknown asset type, and log an error if it ever does happen
|
|
|
|
| |
* Replaced calls to ThreadPool.QueueUserWorkItem() with ThreadPool.UnsafeQueueUserWorkItem() since OpenSim does not use Code Access Security sandboxing
|
| |
|
| |
|
|
|
|
| |
null checks on m_rootPart
|
|
|
|
| |
to fail occasionally
|
|
|
|
|
|
| |
was private
test appears to work, so method made public to run in tests
|
|
|
|
| |
with Store/Get
|
|
|
|
| |
separate insert and update methods.
|
| |
|
|
|
|
| |
of the tests clearer because I'm not constantly resetting properties.
|
| |
|
|
|
|
| |
parameter from MySQL/MySQLInventoryData.cs * Fixed a bug in SQLite/SQLiteAssetData.cs that was causing a NRE when updating an asset. * Improved the BasicAssetTest.cs to do full create/update/get testing * Improved the BasicInventoryTest.cs to do full create/update/get of both a folder and an item * Moved the null ref tests to the start of the PropertyCompareConstraint.cs, so that it doesn't throw when passing in a null item
|
|
|
|
| |
does not exist, to match the mysql behavior. * Modified SQLite/SQLiteRegionData.cs to only persist temporary items following the same rules mysql uses. * Added another ignore to the inventory test that was missing. * Added a few more ignores to the RegionTest that the first version of my test were missing. * Added ignoring the root Folder ID, which is set by the inventory system. * Added several improvements to the PropertyCompareConstraint: Protection against infinite loops, added IComparable<T> (for UUID) and moved IComparable before the property matching. * Fixed a bug where I was saving the inside of the ignore expression instead of the outside of it.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
LICENSE.txt.
|
| |
|
|
|
|
| |
that in all db tests. *phew*
|
|
|
|
| |
component tests.
|
|
|
|
|
|
|
|
|
| |
as UUIDs
* All existing functionality should be unaffected.
* Database schemas have not been changed.
|
|
|
|
|
|
|
| |
Constants.RegionSize as expected. (Working towards enlarged or smaller regionsizes that arent multiples of 256m)
* Adds minor functionality to MRM Scripting.
|
|
|
|
|
|
|
|
|
|
| |
It's good practice to isolate unit tests so their outcome (pass/fail)
does not depend on whether another test has been run/passed/failed. A
method is used to populate the DB independently for each test, and a
TearDown method cleans up the database after each test.
Also adding extra comment in C-style comment test.
|
| |
|