Extend TestJsonTestPath() for non-terminating section of path (i.e. one that does not point to a value/leaf)

0.7.4-extended
Justin Clark-Casey (justincc) 2013-02-11 22:44:25 +00:00
parent 182c66cea1
commit ccd1bac994
1 changed files with 20 additions and 8 deletions

View File

@ -224,18 +224,30 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore.Tests
TestHelpers.InMethod(); TestHelpers.InMethod();
// TestHelpers.EnableLogging(); // TestHelpers.EnableLogging();
UUID storeId = (UUID)InvokeOp("JsonCreateStore", "{ 'Hello' : 'World' }"); UUID storeId = (UUID)InvokeOp("JsonCreateStore", "{ 'Hello' : { 'World' : 'One' } }");
int result = (int)InvokeOp("JsonTestPath", storeId, "Hello"); {
Assert.That(result, Is.EqualTo(1)); int result = (int)InvokeOp("JsonTestPath", storeId, "Hello.World");
Assert.That(result, Is.EqualTo(1));
}
int result2 = (int)InvokeOp("JsonTestPath", storeId, "foo"); // Test for path which does not resolve to a value.
Assert.That(result2, Is.EqualTo(0)); {
int result = (int)InvokeOp("JsonTestPath", storeId, "Hello");
Assert.That(result, Is.EqualTo(0));
}
{
int result2 = (int)InvokeOp("JsonTestPath", storeId, "foo");
Assert.That(result2, Is.EqualTo(0));
}
// Test with fake store // Test with fake store
UUID fakeStoreId = TestHelpers.ParseTail(0x500); {
int fakeStoreValueRemove = (int)InvokeOp("JsonTestPath", fakeStoreId, "Hello"); UUID fakeStoreId = TestHelpers.ParseTail(0x500);
Assert.That(fakeStoreValueRemove, Is.EqualTo(0)); int fakeStoreValueRemove = (int)InvokeOp("JsonTestPath", fakeStoreId, "Hello");
Assert.That(fakeStoreValueRemove, Is.EqualTo(0));
}
} }
[Test] [Test]