Scenario:

I have a base controller which disables caching within the OnActionExecuting override.

protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
    filterContext.HttpContext.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1));
    filterContext.HttpContext.Response.Cache.SetValidUntilExpires(false);
    filterContext.HttpContext.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);
    filterContext.HttpContext.Response.Cache.SetCacheability(HttpCacheability.NoCache); //IE
    filterContext.HttpContext.Response.Cache.SetNoStore(); //FireFox 
}

How can I create a Unit Test to test this behavior?

link|improve this question

25% accept rate
1  
Unit testing is a waste of time, spend your life doing something worthwhile. – Al Katawazi Feb 17 '10 at 22:14
feedback

1 Answer

Trying to do the same. The best I have so far is this...

    [TestCase]
    public void ResponseNotFromCache()
    {

            System.Net.WebRequest rq = System.Net.WebRequest.Create("testmethod");
            System.Net.HttpWebResponse rs = rq.GetResponse() as System.Net.HttpWebResponse;

            Assert.IsFalse(rs.IsFromCache);
    }

There must be a better way!

Update: http://stackoverflow.com/questions/1678927/how-can-i-test-an-event-of-a-mvc-controller

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.