Use modelbinder to bind iprincipal (User) to simplify ASP. net mvc Unit Testing

Source: Internet
Author: User

I am working on some code like this:

?
123456789101112131415 [Authorize]public ActionResult Edit(int id) {     Dinner dinner = dinnerRepository.FindDinner(id);     if (dinner.HostedBy != User.Identity.Name)        return View("InvalidOwner");     var viewModel = new DinnerFormViewModel {        Dinner = dinner,        Countries = new SelectList(PhoneValidator.Countries, dinner.Country)    };     return View(viewModel);}

It's pretty straight forward, but this controller knows too much. it's reaching into implicit parameters. the ID was passed in, but the user is actually a property of the controller base class and ultimately requires an httpcontext. having this method "know" about the user object, and worse yet, having the user object go reaching into httpcontext. current makes this hard to test.

I 'd like to have the convenience of passing in the user (actually an iprincipal Interface) when I want to test, but when I'm running the app, I 'd like to have the iprincipal get passed into my method automatically. enter the model binder. I need to teach ASP. net MVC what to do when it sees a type as a parameter.

This quickie model binder is now responsible for one thing-it knows how to reach down into the httpcontext and get the current user (iprincipal). It has one single responsibility.

?
1234567891011121314 public class IPrincipalModelBinder : IModelBinder{    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)    {        if (controllerContext == null) {            throw new ArgumentNullException("controllerContext");        }        if (bindingContext == null) {            throw new ArgumentNullException("bindingContext");        }        IPrincipal p = controllerContext.HttpContext.User;        return p;    }}

Now I can release the controller from the emotional baggage of knowing too much about the user object. it can just have that passed in automatically by the framework. I just need to register the binder to tell folks about it. I can either do it on a one-off basis and put an attribute on this one method parameter:

?
1234 public ActionResult Edit(int id,                                                 [ModelBinder(typeof(IPrincipalModelBinder))]                                                 IPrincipal user){...}

But even better, I can just tell the whole application once in the global. asax:

?
1234 void Application_Start() {    RegisterRoutes(RouteTable.Routes); //unrelated, don't sweat this line.    ModelBinders.Binders[typeof(IPrincipal)] = new IPrincipalModelBinder();}

Now that ASP. net mvc knows what to do when it see an iprincipal as a method parameter, my method gets nicer.

?
123456789101112131415 [Authorize]public ActionResult Edit(int id, IPrincipal user) {     Dinner dinner = dinnerRepository.FindDinner(id);     if (dinner.HostedBy != user.Identity.Name)        return View("InvalidOwner");     var viewModel = new DinnerFormViewModel {        Dinner = dinner,        Countries = new SelectList(PhoneValidator.Countries, dinner.Country)    };     return View(viewModel);}

Now I can test my controller more easily by passing in fake users. No need for mocking in this case!

?
1234567891011121314 [TestMethod]public void EditAllowsUsersToEditDinnersTheyOwn(){    // Arrange    DinnersController controller = new DinnersController(new TestDinnerRespository());     // Act    IPrincipal FakeUser = new GenericPrincipal(new GenericIdentity("Scott","Forms"),null);    ViewResult result = controller.Edit(4, FakeUser) as ViewResult;     // Yada yada yada assert etc etc etc    Assert.IsTrue(result.ViewName != "InvalidOwner");}

Fun stuff.

Update:Phil had an interesting idea. He said, why not make method overloads, one for testing and one for without. I can see how this might be controversial, but it's very pragmatic.

?
12345 [Authorize]public ActionResult Edit(int id){    return Edit(id, User); //This one uses HttpContext}

You 'd use this one as before at runtime, and call the overload that takes the iprincipal explicitly for testing.

Yes, I realize I cocould use an IOC container for this also.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.