Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am very new to unit testing even though i have been coding for a very long time. I want to make this a part of my way of development. I run into blocks on how to unit test things like a collection. I generally have my jQuery script calling ASP.Net Server side methods to get data and populate tables and the like. They look like

Get_*Noun*() 

which generally returns a JsonResult. Any ideas on what and how to test these using Unit tests using MSTest?

share|improve this question

7 Answers

up vote -3 down vote accepted

Why would you test JsonResult? Json is just a transport format, and I think it would be wiser to test the data before converting it to JSON. If controller uses some datasource to get data from depending on parameters then that's what you should test. I don't see a point to test standard .NET classes

And as for testing controllers - I would go the isolated tests way (where everything around controller is mocked/stubbed)

share|improve this answer
Good point on the JsonReult. Can you please elaborate on "isolated tests"? – mithun_daa Dec 9 '11 at 21:46
1  
Isolated tests are ones that test only functionality in question and supplies mocks for every step tested object/class needs. Let's say your MVC action accepts id of an object to show on a web page. It first checks cache and if nothing's there gets object from DB. So here, to isolate your controller form "outer world" you need test A mock HttpContext and make it return desired object from cache and make sure you do not call DA layer and test B mock HttpContext and make it NOT return desired object from cache and make sure you call appropriate DA layer method. – Ramunas Dec 12 '11 at 6:49
2  
-1 There are definitely ways to test JsonResult, and there are perfectly valid cases when that's what you want. Unit tests shouldn't be forcing you to change a perfectly valid design. I don't find the "I don't know how to do it so it shouldn't be done" answer very useful. – Zaid Masud Aug 28 '12 at 16:49
@Zaid: I don't know where you found "I don't know..." in my post. You just scored in Failed assumptions category. Also you scored in Perfect Googler's category as I did not know how to find an answer there. But let me dare to give you a hint: "I don't see a point to test standard .NET classes". Explanation: It's not a (standart .NET) class that should be tested but the logic this class participates in. – Ramunas Aug 29 '12 at 12:06
@Ramunas Wow thanks for all those scores :) My question is this: what if the logic is (for example) in a ASP .NET MVC controller action that returns a JSONResult? What should you do to unit test that action? Extracting it just so you can unit test it is not always necessary and in some cases not the best approach, especially if the logic is simple enough but still unit testable. – Zaid Masud Aug 29 '12 at 12:26
show 5 more comments

You should be able to test this just like anything else, provided you can extract the values from the JsonResult. Here's a helper that will do that for you:

private T GetValueFromJsonResult<T>(JsonResult jsonResult, string propertyName)
{
    var property =
        jsonResult.Data.GetType().GetProperties()
        .Where(p => string.Compare(p.Name, propertyName) == 0)
        .FirstOrDefault();

    if (null == property)
        throw new ArgumentException("propertyName not found", "propertyName");
    return (T)property.GetValue(jsonResult.Data, null);
}

Then call your controller as usual, and test the result using that helper.

var jsonResult = yourController.YourAction(params);
bool testValue = GetValueFromJsonResult<bool>(jsonResult, "PropertyName");
Assert.IsFalse(testValue);
share|improve this answer
Although it's not purely proper to test the results of a transport format, sometimes when building tests around legacy code it's temporarily unavoidable. So this is a good solution. – Mark Freedman Apr 23 '12 at 15:46
1  
@MarkFreedman "not purely proper to test the results of a transport format" do you have any references or sources for this claim? – Zaid Masud Aug 29 '12 at 12:33

(Sorry I am using NUnit syntax, but MSUnit shouldn't be far off)

You could test your JsonResult like this:

var json = Get_JsonResult()
dynamic data = json.Data;
Assert.AreEqual("value", data.MyValue)

Be sure to set your AssemblyInfo.cs file to allow the testing assembly access to the anonymous type:

[assembly: InternalsVisibleTo("Tests")]

This is so the dynamic can determine the type of anonymous object being returned from the json.Data value;

share|improve this answer
1  
Just to clarify: [assembly: InternalsVisibleTo("TestProjectNamespace")] should be set at MVC AssemblyInfo.cs project. – Tiago Deliberali Santos Jul 6 '12 at 19:30

You could use PrivateObject to do this.

var jsonResult = yourController.YourAction(params);
var success = (bool)(new PrivateObject(jsonResult.Data, "success")).Target;
Assert.IsTrue(success);

var errors = (IEnumerable<string>)(new PrivateObject(jsonResult.Data, "errors")).Target;
Assert.IsTrue(!errors.Any());

It's uses reflection similar to David Ruttka's answer, however it'll save you a few key strokes.

See http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.testtools.unittesting.privateobject.aspx for more info.

share|improve this answer

This is the best blog I've found on this subject.

My favorite was the 4th approach using dynamics. Note that it requires you to ensure that the internals are visible to your test project using [assembly:InternalsVisibleTo("TestProject")] which I find is a reasonably good idea in general.

[TestMethod]     
public void IndexTestWithDynamic()     
{     
    //arrange     
    HomeController controller = new HomeController();     

    //act     
    var result = controller.Index() as JsonResult;     

    //assert     
    dynamic data = result.Data;  

    Assert.AreEqual(3, data.Count);     
    Assert.IsTrue(data.Success);     
    Assert.AreEqual("Adam", data.People[0].Name);     
}
share|improve this answer
Why dynamic? the .Data property is of type object holding for example a List<Person>. The result.Data can be casted to List<Person>... – Elisa Sep 9 '12 at 18:20
@Elisa the underlying assumption in this thread has been that contents of the .Data property is an anonymous type. – Zaid Masud Sep 9 '12 at 19:15

Here's a small extension to easily convert a Json ActionResult into the object it represents.

using System.Web.Mvc;

public static class WebExtensions
{
     public static T ToJson<T>(this ActionResult actionResult)
     {
         var jsonResult = (JsonResult)actionResult;

         return (T)jsonResult.Data;
     }
}

With this, your 'act' in the test becomes smaller:

var myModel = myController.Action().ToJson<MyViewModel>();
share|improve this answer

My suggestion would be to create a model for the data returned and then cast the result into that model. That way you can verify:

  1. the structure is correct
  2. the data within the model is correct

    // Assert
    var result = action
        .AssertResultIs<JsonResult>();
    
    var model = (UIDSearchResults)result.Data;
    Assert.IsTrue(model.IsValid);
    Assert.AreEqual("ABC", model.UIDType);
    Assert.IsNull(model.CodeID);
    Assert.AreEqual(4, model.PossibleCodes.Count());
    
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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