aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/InventoryAccess/Tests/InventoryAccessModuleTests.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-31/+33
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-4/+3
2012-12-05minor: Fix more compiler warnings in CoreModules tests by properly ↵Justin Clark-Casey (justincc)1-1/+3
overriding OpenSimTestCase.SetUp()
2012-11-24Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)1-1/+1
automatically turns off any logging enabled between tests
2012-05-01Add regression test for teleporting between neighbouring regions on the same ↵Justin Clark-Casey (justincc)1-3/+4
simulator This adds a non-advertised wait_for_callback option in [EntityTransfer]. Default is always true. Teleport tests disable the wait for callback from the destination region in order to run within a single thread.
2012-04-27Add regression test for teleporting an agent between separated regions on ↵Justin Clark-Casey (justincc)1-1/+1
the same simulator. This involves a large amount of change in test scene setup code to allow test scenes to share shared modules SetupScene is now an instance method that requires an instantiation of SceneHelpers, though other SceneHelpers methods are still static May split these out into separate classes in the future.
2011-08-06rename TestHelper => TestHelpers for consistencyJustin Clark-Casey (justincc)1-2/+2
2011-08-06rename test SceneSetupHelpers -> SceneHelpers for consistencyJustin Clark-Casey (justincc)1-5/+5
2011-05-21Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)1-1/+0
OpenSim.Tests.Common instead
2011-05-21rename UserProfileTestUtils to UserAccountHelpers to be consistent with ↵Justin Clark-Casey (justincc)1-1/+1
other test helper names
2011-04-15get rid of all traces of the now used mock service infrastructureJustin Clark-Casey (justincc)1-1/+1
2011-04-14simplify TestRezObject()Justin Clark-Casey (justincc)1-17/+1
2011-04-14Make scene object parts created by the test utils unit sized.Justin Clark-Casey (justincc)1-3/+1
2011-04-14simplify coalesced object tests by using existing scene object set up utilsJustin Clark-Casey (justincc)1-34/+6
this change makes it possible to set an absolute position on a group before it is put into a scene.
2011-04-13Adjust the quanterions used in the rez coalsced object tests to get sensible ↵Justin Clark-Casey (justincc)1-4/+12
bounding box and offset numbers. Extend test to check position of objects in the rezzed coalescence.
2011-04-13refactor: move code to obtain the coalescence size and object offsets into ↵Justin Clark-Casey (justincc)1-1/+1
CoalescedSceneObjects from the serializer.
2011-04-13Fix bug where rezzing coalesced objects would give all objects the same name ↵Justin Clark-Casey (justincc)1-3/+2
as the item. This now only happens for the first object (which was the item selected last when the coalesce was originally taken) This matches the expected behaviour of the environment as seen on the Linden Labs grid.
2011-04-13Add coalesced scene objects class and serializer. This is currently only ↵Justin Clark-Casey (justincc)1-0/+79
used by the TestRezCoalescedObject() regression test. This structure matches the existing one for SceneObjects and will allow code to be reused by the uuid gatherer, other tests, etc. Test is not yet fully implemented due to a bug in rezzing coalesced objects where they all get the same name as the item. Only one object should get the same name as the item, which appears to be the one selected last when the the objects were coalesced in the first place. This bug will be addressed shortly.
2011-04-13factor out some test code into the SetUp()Justin Clark-Casey (justincc)1-14/+15
2011-04-13Add a regression test for rezzing a single object into a scene from user ↵Justin Clark-Casey (justincc)1-70/+48
inventory
2011-03-10refactor: rename test user account fieldsJustin Clark-Casey (justincc)1-8/+8
2011-03-10factor out common scene setup code in InventoryArchiveTestCaseJustin Clark-Casey (justincc)1-1/+1
2011-03-10When setting up default iar for testing, use iar archiving code rather than ↵Justin Clark-Casey (justincc)1-10/+10
constructing the tar manually
2011-03-10Change existing users load iar test so that it fulfills it's original ↵Justin Clark-Casey (justincc)1-1/+6
intention (i.e. OSPA resolution, which is still active). Will need to write a separate test for the simplest case where creator accounts with appropriate uuids exist on iar load.
2011-03-09Make the item created in the default test iar an object rather than a scriptJustin Clark-Casey (justincc)1-2/+27
2011-03-09minor: change the order of some default iar setup in test caseJustin Clark-Casey (justincc)1-5/+7
2011-03-09Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)1-1/+0
This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
2011-03-09Split out path tests from InventoryArchiveTests. Factor common code into ↵Justin Clark-Casey (justincc)1-0/+124
test case parent