Should my MVC controller really know about JSON? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T05:19:50Zhttp://stackoverflow.com/feeds/question/482363http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/482363/should-my-mvc-controller-really-know-about-json13Should my MVC controller really know about JSON?Simon2009-01-27T05:07:43Z2009-03-29T20:55:59Z
<p>The JsonResult class is a very useful way to return Json as an action to the client via AJAX.</p>
<pre><code>public JsonResult JoinMailingList(string txtEmail)
{
// ...
return new JsonResult()
{
Data = new { foo = "123", success = true }
};
}
</code></pre>
<p>However (at least according to my first impression) this really isn't a good separation of concerns.</p>
<ul>
<li>Unit test methods are harder to write becasue they don't have nice strongly typed data to test and have to know how to interpret the Json.</li>
<li>Its harder for some other View in future that isn't over HTTP (or any remote protocol involving serialization) to be 'plugged in' because its unnecessary in such cases to be serializing and deserializing the response.</li>
<li>What if you have TWO different places that need the results of that action? One wants Json and another wants XML or perhaps a fully <a href="http://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html">or partially</a> rendered view.</li>
</ul>
<p>I'm wondering why the translation between an object and Json wasn't implemented declaratively via an attribute. In the code below you're essentially telling MVC that <code>this method is convertible to Json</code>, and then if it is called from an AJAX client a check is made for the attribute the <code>new JsonResult()</code> conversion performed internally.</p>
<p>Unit testing can just take the action result (<code>ObjectActionResult</code>) and pull out the strongly typed <code>Foo</code>.</p>
<pre><code>[JsonConvertible]
public ActionResult JoinMailingList(string txtEmail)
{
// ...
return new ObjectActionResult()
{
Data = new Foo(123, true)
};
}
</code></pre>
<p>I was just curious as to people's thoughts and any alternative pattern to follow.</p>
<p>These are also just my initial observations - there are probably more reasons why this is not an ideal design (and probably plenty why its a perfectly acceptable and practical one!) I'm just feeling theoretical and devils-advocatey tonight.</p>
<p> * <em>Disclaimer:</em> I haven't even begun to think about how the attribute would be implemented or what sideeffects or repurcussions etc. it might have. </p>
http://stackoverflow.com/questions/482363/should-my-mvc-controller-really-know-about-json/482425#4824255Answer by Frank Krueger for Should my MVC controller really know about JSON?Frank Krueger2009-01-27T05:52:20Z2009-01-27T06:18:08Z<p>I think you're getting worked up over nothing. So what if the controller knows about JSON in its public interface?</p>
<p>I was once told: "Make your code generic, don't make your application generic."</p>
<p>You're writing an Application Controller here. It's OK for the Application Controller - whose responsibility is to mitigate between the model and views and to invoke changes in the model - to know about a certain view (JSON, HTML, PList, XML, YAML).</p>
<p>In my own projects, I usually have something like:</p>
<pre><code>interface IFormatter {
ActionResult Format(object o);
}
class HtmlFormatter : IFormatter {
// ...
}
class JsonFormatter : IFormatter {
// ...
}
class PlistFormatter : IFormatter {
// ...
}
class XmlFormatter : IFormatter {
// ...
}
</code></pre>
<p>Basically "formatters" that take objects and give them a different representation. The <code>HtmlFormatter</code>s are even smart enough to output tables if their object implements <code>IEnumerable</code>.</p>
<p>Now the controllers that return data (or that can generate parts of the website using <code>HtmlFormatter</code>s) take a "format" argument:</p>
<pre><code>public ActionResult JoinMailingList(string txtEmail, string format) {
// ...
return Formatter.For(format).Format(
new { foo = "123", success = true }
);
}
</code></pre>
<p>You could add your "object" formatter for your unit tests:</p>
<pre><code>class ObjectFormatter : IFormatter {
ActionResult Format(object o) {
return new ObjectActionResult() {
Data = o
};
}
}
</code></pre>
<p>Using this methodology, any of your queries/actions/procedures/ajax calls, whatever you want to call them, can output in a variety of formats.</p>
http://stackoverflow.com/questions/482363/should-my-mvc-controller-really-know-about-json/482487#4824876Answer by Rob Rodi for Should my MVC controller really know about JSON?Rob Rodi2009-01-27T06:37:47Z2009-03-25T17:32:21Z<p>I generally try not to worry about it. The Asp.Net MVC is enough of a separation of concerns to keep leakage to a minimum. You're right though; there is a bit of a hurdle when testing. </p>
<p>Here's a test helper I use, and it's worked well:</p>
<pre><code>protected static Dictionary<string, string> GetJsonProps(JsonResult result)
{
var properties = new Dictionary<string, string>();
if (result != null && result.Data != null)
{
object o = result.Data;
foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(o))
properties.Add(prop.Name, prop.GetValue(o) as string);
}
return properties;
}
</code></pre>
<p>You can use the Request.IsAjaxRequest() extension method to return different ActionResult types:</p>
<pre><code>if (this.Request != null && this.Request.IsAjaxRequest())
return Json(new { Message = "Success" });
else
return RedirectToAction("Some Action");
</code></pre>
<p>Note: you'll need that Request != null to not break your tests.</p>
http://stackoverflow.com/questions/482363/should-my-mvc-controller-really-know-about-json/482958#4829582Answer by mookid for Should my MVC controller really know about JSON?mookid2009-01-27T10:50:53Z2009-01-27T10:50:53Z<p>I think you have a valid point - why not delegate the "accepted response types vs. generated response types resolution" to some place where it actually belongs? </p>
<p>It reminds me of one of the Jeremy Miller's opinions on how to make an ASP.NET MVC application: <a href="http://codebetter.com/blogs/jeremy.miller/archive/2008/10/23/our-opinions-on-the-asp-net-mvc-introducing-the-thunderdome-principle.aspx" rel="nofollow">“Opinions” on the ASP.NET MVC</a></p>
<p>In their application, all controller actions have a lean and simple interface - some view model object enters, another view model object leaves.</p>
http://stackoverflow.com/questions/482363/should-my-mvc-controller-really-know-about-json/483543#4835431Answer by Craig Stuntz for Should my MVC controller really know about JSON?Craig Stuntz2009-01-27T14:18:13Z2009-01-27T14:18:13Z<p>I'm not sure how big of a problem this actually is, but the "alternative pattern" to follow in ASP.NET MVC would be to write a JSON ViewEngine. This wouldn't actually be that difficult, since the JSON functionality built into the framework will do much of the heavy lifting for you.</p>
<p>I do think that this would be a better design, but I'm not sure it's so much better that it's worth going against the "official" way of implementing JSON.</p>
http://stackoverflow.com/questions/482363/should-my-mvc-controller-really-know-about-json/508780#5087801Answer by Simon for Should my MVC controller really know about JSON?Simon2009-02-03T20:26:43Z2009-02-03T20:26:43Z<p>I'm not too worried about returning JSon as I was before. The nature of AJAX seems to be such that the message you want to process in Javascript only applies for that AJAX situation. The AJAX need for performance just has to influence the code somehow. You probably wouldn't want to return the same data to a different client.</p>
<p>Couple things regarding testing of JSonResult that I've noticed (and I still have yet to write any tests for my app) :</p>
<p>1) when you return a JSonResult from your action method that is 'received' by your test method you still have access to the original Data object. This wasn't apparent to me at first (despite being somewhat obvious). Rob's answer above (or maybe below!) uses this fact to take the Data parameter and create a dictionary from it. If Data is of a known type then of course you can cast it to that type. </p>
<p>Personally I've been only returning very very simple messages through AJAX, without any structure. I came up with an extension method which might be useful for testing if you just have a simple message constructed from an anonymous type. If you have more than one 'level' to your object - you're probably better off creating an actual class to represent the JSon object anyway, in which case you just cast <code>jsonResult.Data</code> to that type.</p>
<p>Sample usage first :</p>
<p><strong>Action method:</strong></p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult ContactUsForm(FormCollection formData){
// process formData ...
var result = new JsonResult()
{
Data = new { success = true, message = "Thank you " + firstName }
};
return result;
}
</code></pre>
<p><strong>Unit test:</strong></p>
<pre><code>var result = controller.ContactUsForm(formsData);
if (result is JSonResult) {
var json = result as JsonResult;
bool success = json.GetProperty<bool>("success");
string message = json.GetProperty<string>("message");
// validate message and success are as expected
}
</code></pre>
<p>You can then run assertions or whatever you want in your test. In addition the extension method will throw exceptions if the type is not as expected.</p>
<p><strong>Extension method:</strong></p>
<pre><code>public static TSource GetProperty<TSource>(this JsonResult json, string propertyName)
{
if (propertyName == null)
{
throw new ArgumentNullException("propertyName");
}
if (json.Data == null)
{
throw new ArgumentNullException("JsonResult.Data"); // what exception should this be?
}
// reflection time!
var propertyInfo = json.Data.GetType().GetProperty(propertyName);
if (propertyInfo == null) {
throw new ArgumentException("The property '" + propertyName + "' does not exist on class '" + json.Data.GetType() + "'");
}
if (propertyInfo.PropertyType != typeof(TSource))
{
throw new ArgumentException("The property '" + propertyName + "' was found on class '" + json.Data.GetType() + "' but was not of expected type '" + typeof(TSource).ToString());
}
var reflectedValue = (TSource) propertyInfo.GetValue(json.Data, null);
return reflectedValue;
}
</code></pre>
http://stackoverflow.com/questions/482363/should-my-mvc-controller-really-know-about-json/682049#6820490Answer by 48klocs for Should my MVC controller really know about JSON?48klocs2009-03-25T15:13:54Z2009-03-25T15:13:54Z<p>Alternatively, if you don't want to get into using reflection, you can create a RouteValueDictionary with the result's Data property. Going with the OP's data...</p>
<pre><code>var jsonData = new RouteValueDictionary(result.Data);
Assert.IsNotNull(jsonData);
Assert.AreEqual(2,
jsonData.Keys.Count);
Assert.AreEqual("123",
jsonData["foo"]);
Assert.AreEqual(true,
jsonData["success"]);
</code></pre>
http://stackoverflow.com/questions/482363/should-my-mvc-controller-really-know-about-json/695364#6953641Answer by aleemb for Should my MVC controller really know about JSON?aleemb2009-03-29T20:55:59Z2009-03-29T20:55:59Z<p>I had the same thought and implemented a <a href="http://aleembawany.com/2009/03/27/aspnet-mvc-create-easy-rest-api-with-json-and-xml/" rel="nofollow">JsonPox</a> filter to do just that.</p>