문제

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 "SomeController.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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top