开发者

Moq - how to mock the result of a method within a method begin tested

and thank you in advance for any and all your assistance.

I have a method that I'm trying to test.

Within this method is a call to UserMembership.Validate() //custom override but the code isn't functional yet and is outside the scope of the test.

I want to therefore mock (using moq) the return result so that the actual test of the method can succeed.

Here is the code

public LoginResponse Login(LoginRequest request)
{
    var response = new LoginResponse(request.RequestId);

    // Validate client tag and access token
    if (!ValidateRequest(request, response, Validate.ClientTag | Validate.AccessToken))
        return response;

    if (!UserMembership.ValidateUser(request.UserName, request.Password))
    {
        response.Acknowledge = AcknowledgeType.Failure;
        response.Messages = "Invalid username and/or password.";
        //response.MessageCode = -4;
        return response;
    }

    _userName = request.Use开发者_高级运维rName;

    return response;
}

So, my test is for LoginResponse() but I want to 'fake' the UserMembership return value (bool) to true...

Simple enough I'm sure for you guys.

TIA, Hugh.


You could probably re-title your question to "How do you use a mocking framework with unit testing 99% of the time," because you're right on track for doing just that - a very typical usage.

You're going to want to extract an interface from your UserMembership class (right click inside the class, select "refactor" and then "extract interface."), then use Moq to create mock instances of that interface for use within your tests. Then you can use Moq to "setup" the behavior of that mock to do anything you want it to during your test. The syntax would look like this:

var userMembershipMock = new Mock<IUserMembership>();
userMembershipMock.Setup(m=> m.ValidateUser(It.Is<string>(str=> str == "myUserName"), It.Is<string>(str=> str == "myPassword"))).Returns(true);

Then you would create a new instance of your class, passing in your mock instance of IUserMembership (but since you'll make your class's constructor takes an argument of the interface type, your class won't care whether you're passing it a mock or an actual UserMembership instance

 MyClass myClass = new MyClass(userMembershipMock.Object);

after which you could begin actually testing the behavior of your MyClass:

var request = new LoginRequest { UserName = "myUserName", Password = "myPassword" };
LoginResponse response = myClass.Login(request);

And then you can assert that your class's response is what you expect:

Assert.AreEqual(AcknowledgeType.Success, response.Acknowledge);

or you can verify that your mock's method (or property) was invoked as you expected:

userMembershipMock.Verify(m=> m.ValidateUser(It.Is<string>(str=> str == "myUserName"), It.Is<string>(str=> str == "myPassword")), Times.Once());

and so on.

The Moq quick start page is kind of sort of a one-page read, and can teach you 99% of everything that you need to know to use it.


The only way I can think of to mock UserMembership in this case (assuming it's not a property) is to use an IoC framework like Castle Windsor or Ninject. When you use an IoC container you would refactor your calls to UserMembership into an interface (IUserMembership) and use the container to provide an implementation:

if (Container.Resolve<IUserMembership>().ValidateUser(request.UserName, request.Password))

Then in your unit test Setup you would register the implementation of IUserMembership to be the mock object:

var mock = new Mock<IUserMembership>();
Container.Register<IUserMemberhip>().Instance(mock.Object);

You would have to also create a production implementation. If this is the standard UserMembership class, this implementation will probably do nothing other than UserMembership. Although, there are other ways to mimic this kind of duck typing.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜