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}
link|improve this question

What is the type of result.Data? Is it new {...} or the Json object or a string or...? 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:48
@pst, result.Data is typed as object but it is populated by the new {Success = "Success"} being passed into the return Json(...) call. – Greg B Aug 31 '11 at 21:51
Can see how the JsonResult is created? I see a Json wrapping the new {}... (what is the full Json type used?) Try to break on the exception and view the data/type info of the object in Data. Compare the new {...} object (by reference as well) and the object in Data. – pst Aug 31 '11 at 21:54
Have a look at the discussion at stackoverflow.com/questions/2634858/… – Eddy Aug 31 '11 at 22:10
feedback

2 Answers

Anonymous types are internal, and the dynamic api's are called by the compiler in such a way to respect that protection. Using ImpromptuInterface, open source available in nuget, it has an ImpromptuGet class that will allow you to wrap your anonymous type and will use the dynamic api's as if from the anonymous type itself so you don't have the protection issue.

//using ImpromptuInterface.Dynamic
Assert.That(ImpromptuGet.Create(result.Data).Success, Is.EqualTo("Success"));
link|improve this answer
feedback

Since you are trying to inspect an object which is Json, why not run result.Data through JsonValueProviderFactory, and then search the backing store for the key named "Success"?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.