开发者

How to unit-test a method that receives a FormCollection to upload a file?

I want to Unit-test a method like the following:

public ActionResult StoreFile(FormCollection form, string _paginaAtual)
{
     Session["MySession"] = 1
     if (Request.Files["uploadedFiles"] != null)
         {
             //do something about the file
         }
     return View()
}

It's inside my "SomeContr开发者_JS百科oller.cs" controller class and it is called when the user submits a file in a simple input type="file" HTML input.

P.S.: Purists beware: I KNOW this is not a "pure" unit testing, I just want to call the method in a test environment and check if it makes de desirable changes in the system.

Thank you all for any light in the subject, Lynx.


Luckily the ASP.Net team thought about this before they started on MVC and created the System.Web.Abstractions namespace. It is a series of base classes that mirror the static classes that are impossible to test traditionally like the HttpWebRequest class.

What you want to do is rely on one of those base classes and do a little bit of dependency injection in order to effectively mock your session.

HttpSessionStateBase _session;
public HttpSessionStateBase Session
{
    get{
        return _session ?? (_session = new HttpSessionStateWrapper(HttpContext.Current.Session));
    }
    set{
        _session = value;
    }
}

As for the FormCollection, you don't have to mock it, as you should be able to create one apart from an HttpContext. There is a good example of that on Marcus Hammarberg's blog.


What you're describing sounds more like integration testing. As for your FormCollection, if you wanted to isolate it, you could use an isolation framework like RhinoMocks, or "hand roll" your own mock for it.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜