Given an System.Object, how do I get a dynamic object with which to access any members it might have.
Specifically, I want to unit test an ASP.NET MVC 3 controller action which returns a JsonResult. The JsonResult has a Data property of type object. I'm populating this object with an anonymous type:
return Json(new { Success = "Success" });
In my test, I want to do something like
var result = controller.Foo();
Assert.That(((SomeDynamicType)result.Data).Success, Is.EqualTo("Success"));
How is this done?
UPDATE
Though result.Data is of type object, inspecting it in the Watch window shows it has the following type:
{
Name = "<>f__AnonymousType6`1"
FullName = "<>f__AnonymousType6`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]"
}
System.Type {System.RuntimeType}
result.Data? Is itnew {...}or theJsonobject or astringor...? It should work assuming result.Data is what is expected, here is a LINQPad example that does work:var x = new { X = 1 }; var y = (dynamic)x; ((object)y.X).Dump();. – pst Aug 31 '11 at 21:48result.Datais typed asobjectbut it is populated by thenew {Success = "Success"}being passed into thereturn Json(...)call. – Greg B Aug 31 '11 at 21:51JsonResultis created? I see aJsonwrapping thenew {}... (what is the fullJsontype used?) Try to break on the exception and view the data/type info of the object in Data. Compare thenew {...}object (by reference as well) and the object in Data. – pst Aug 31 '11 at 21:54