Skip to content

Latest commit

 

History

History
194 lines (145 loc) · 8.53 KB

controllers.md

File metadata and controls

194 lines (145 loc) · 8.53 KB

Controllers

In this section we will dive a bit deeper into controller testing. By understanding it, you will get familiar with the fundamentals of My Tested ASP.NET Core MVC and see how other components from a typical MVC web application can be asserted in a similar manner. Of course, we will use the classical AAA (Arrange, Act, Assert) approach.

Arrange

Go to the "ManageController" again and analyse the "ChangePassword" action. You will notice that with invalid model state this action returns view result with the same model provided as a request parameter:

public async Task<IActionResult> ChangePassword(ChangePasswordViewModel model)
{
    if (!ModelState.IsValid)
    {
        return View(model);
    }
	
	// action code skipped for brevity
}

My Tested ASP.NET Core MVC provides a very easy way to arrange the model state, but we will ignore it for now. What we want is to add a model error to the action call manually. Go to the "ManageControllerTest" class, add the new test and start with the typical selection of a controller to test:

[Fact]
public void ChangePasswordShouldReturnViewWithSameModelWithInvalidModelState()
{
    MyController<ManageController>
        .Instance()
}

We will now examine three different ways to arrange the model state on the tested "ManageController". Since the model state is part of the controller (action) context (see HERE), you may instantiate one (after adding the "Microsoft.AspNetCore.Mvc" using) and provide it by using the "WithControllerContext" ("WithActionContext") method:

var controllerContext = new ControllerContext();
controllerContext.ModelState.AddModelError("TestError", "TestErrorMessage");

MyController<ManageController>
    .Instance()
    .WithControllerContext(controllerContext)

The testing framework prepares for you every detail of the tested component before running the actual test case by using the global test service provider. Therefore, you may skip the instantiation and use the other overload of the method using an action delegate:

MyController<ManageController>
    .Instance()
    .WithControllerContext(context => context.ModelState
        .AddModelError("TestError", "TestErrorMessage"))

These are fine but the model state dictionary can be accessed directly from the controller itself, so we can just skip the whole "ControllerContext" class by using the "WithSetup" method:

MyController<ManageController>
    .Instance()
    .WithSetup(controller => controller.ModelState
        .AddModelError("TestError", "TestErrorMessage"))

The "WithSetup" method will come in handy wherever the fluent API does not provide a specific arrange method. As a side note - My Tested ASP.NET Core MVC provides an easy way to set up the model state dictionary, but we will cover it later in this tutorial.

Each one of these three ways for arranging the controller is fine, but we will stick with the third option.

Act

We need to act! In other words, we need to call the action method. We do not need an actual request model to test the desired logic, so let's pass a null value as a parameter. Add this line to the test:

.Calling(c => c.ChangePassword(null))

You should be familiar with the "Calling" method from the previous sections. Again, if you prefer to be more expressive, you may use the "With" class:

// needs the MusicStore.Models namespace
.Calling(c => c.ChangePassword(With.No<ChangePasswordViewModel>()))

Well, this was easy! :)

Assert

The final part of our test is asserting the action result. You should know how to assert a view result too, so add these to the test:

.ShouldReturn()
.View();

We now need to test the returned model. It should be the same as the one provided through the action parameter. If you look through the IntelliSense around the "View" call, you will not find anything related to models. The reason is simple - model testing is available in a separate package which we will install in the next section.

For now, let's use the tools we have already imported in our test project. One option is to use the "Passing" method, which can be called on every action result like so:

.ShouldReturn()
.View(result => result
    .Passing(view => Assert.Null(view.Model)));

However, we will use another feature of the library. Introducing the magical "ShouldPassForThe" method! I know developers do not like magic code but this one is cool, trust me! :)

Add the following lines to the test after the "View()" call:

// needs the Microsoft.AspNetCore.Mvc namespace
.AndAlso()
.ShouldPassForThe<ViewResult>(viewResult 
    => Assert.Null(viewResult.Model))

Now rebuild the project, then run the test, and our work here is done - a successful pass! :)

But before moving on with our lives, let's explain the last two lines.

First - the "AndAlso" method. It's there just for better readability and expressiveness. It is available in various places of the fluent API, but it actually does nothing most of the time. You may remove it from your code now, then recompile it and run the test again and it will still pass. Of course, it is up to you whether or not to use the "AndAlso" method but admit it - it's a nice little addition to the test! :)

Second - the magical "ShouldPassForThe" call. To make sure it works correctly, let's change the "Assert.Null" to "Assert.NotNull" and run the test. It should fail loud and clear with the original "xUnit" message:

Assert.NotNull() Failure

Return the "Null" assertion call so that the test passes again. The "ShouldPassForThe" method obviously works. What is interesting here is that the generic parameter "TComponent" can be anything you like, as long it is recognized by My Tested ASP.NET Core MVC. Seriously, add the following to the test and run it again:

.ShouldReturn()
.View()
.AndAlso()
.ShouldPassForThe<Controller>(controller =>
{
    Assert.NotNull(controller);
    Assert.True(controller.ModelState.ContainsKey("TestError"));
})
.AndAlso()
.ShouldPassForThe<ViewResult>(viewResult => Assert.Null(viewResult.Model));

Of course, the first "ShouldPassForThe" call does not make any sense for our purposes at all, but it proves that everything related to the test can be asserted by using the method. You may even put a breakpoint into the action delegate and debug it if you like.

I guess you already know it, but if you put an invalid and unrecognizable type for the generic parameter, it will not work. For example, using "XunitProjectAssembly" will throw an exception:

XunitProjectAssembly could not be resolved for the 'ShouldPassForThe<TComponent>' method call.

To continue, let's bring back the test to its last passing state:

[Fact]
public void ChangePasswordShouldReturnViewWithSameModelWithInvalidModelState()
    => MyController<ManageController>
        .Instance()
        .WithSetup(controller => controller.ModelState
            .AddModelError("TestError", "TestErrorMessage"))
        .Calling(c => c.ChangePassword(With.No<ChangePasswordViewModel>()))
        .ShouldReturn()
        .View()
        .AndAlso()
        .ShouldPassForThe<ViewResult>(viewResult 
            => Assert.Null(viewResult.Model));

We are still not asserting whether the view model is the same object as the provided method parameter. Let's change that by instantiating a "ChangePasswordViewModel" and test the action with it:

[Fact]
public void ChangePasswordShouldReturnViewWithSameModelWithInvalidModelState()
{
    var model = new ChangePasswordViewModel
    {
        OldPassword = "OldPass",
        NewPassword = "NewPass",
        ConfirmPassword = "NewPass"
    };

    MyController<ManageController>
        .Instance()
        .WithSetup(controller => controller.ModelState
            .AddModelError("TestError", "TestErrorMessage"))
        .Calling(c => c.ChangePassword(model))
        .ShouldReturn()
        .View()
        .AndAlso()
        .ShouldPassForThe<ViewResult>(viewResult 
            => Assert.Same(model, viewResult.Model));
}

Our work here is done (for now)! :)

Section summary

In this section we saw the AAA approach collaborating gracefully with My Tested ASP.NET Core MVC. However, I know you remember reading earlier about an easier way of arranging the model state and additional fluent testing options for the view result models. You can learn about them in the Models section!