Add regression TestJsonTestPathJson()
parent
216ef7522a
commit
79dd5f2692
|
@ -262,6 +262,38 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore.Tests
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestJsonTestPathJson()
|
||||||
|
{
|
||||||
|
TestHelpers.InMethod();
|
||||||
|
// TestHelpers.EnableLogging();
|
||||||
|
|
||||||
|
UUID storeId = (UUID)InvokeOp("JsonCreateStore", "{ 'Hello' : { 'World' : 'One' } }");
|
||||||
|
|
||||||
|
{
|
||||||
|
int result = (int)InvokeOp("JsonTestPathJson", storeId, "Hello.World");
|
||||||
|
Assert.That(result, Is.EqualTo(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test for path which does not resolve to a value.
|
||||||
|
{
|
||||||
|
int result = (int)InvokeOp("JsonTestPathJson", storeId, "Hello");
|
||||||
|
Assert.That(result, Is.EqualTo(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
int result2 = (int)InvokeOp("JsonTestPathJson", storeId, "foo");
|
||||||
|
Assert.That(result2, Is.EqualTo(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test with fake store
|
||||||
|
{
|
||||||
|
UUID fakeStoreId = TestHelpers.ParseTail(0x500);
|
||||||
|
int fakeStoreValueRemove = (int)InvokeOp("JsonTestPathJson", fakeStoreId, "Hello");
|
||||||
|
Assert.That(fakeStoreValueRemove, Is.EqualTo(0));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestJsonSetValue()
|
public void TestJsonSetValue()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue