如何在动作中对具有私有方法的ASP.Net MVC控制器进行单元测试?

时间:2013-08-24 00:39:30

标签: c# asp.net unit-testing nunit moq

在尝试测试ASP.Net MVC控制器/操作时,我很难绕过单元测试模式。

使用以下代码,我正在尝试为ShowPerson()方法编写测试:

public class PersonController : Controller
{
    private IDataAccessBlock _dab;

    public PersonController()
        : this(new DataAccessBlock())
    { }

    public PersonController(IDataAccessBlock dab)
    {
        _dab = dab;
    }

    public ActionResult ShowPerson(PersonRequestViewModel personRequest)
    {
        var person = GetPersonViewModel(personRequest);
        return View("Person", person);
    }

    private PersonViewModel GetPersonViewModel(PersonRequestViewModel personRequest)
    {
        var personService = new CommonDomainService.PersonService(_dab);
        var dt = personService.GetPersonInfo(personRequest.Id);
        var person = new PersonViewModel();

        if (dt.Rows.Count == 1)
        {
            person.FirstName = dt.Rows[0]r["FIRSTNAME"]);
            person.LastName = dt.Rows[0]["LASTNAME"];
        }
        return person;
    }
}

我正在使用的测试(使用nUnit和Moq):

[Test]
public void ShowPerson_Action_Should_Return_Person_View()
{
    // Arrange
    string expected = "Person";
    Mock<PersonRequestViewModel> personRequestViewModelMock = new Mock<PersonRequestViewModel>();
    personRequestViewModelMock.SetupProperty(f => f.Id, 123456);

    Mock<IDataAccessBlock> mockDab = new Mock<IDataAccessBlock>();
    PersonController personController = new PersonController(mockDab.Object);

    // Act
    ViewResult result = personController.ShowPerson(personRequestViewModelMock.Object) as ViewResult;

    // Assert
    personRequestViewModelMock.Verify();
    result.Should().Not.Be.Null();
    if (result != null) Assert.AreEqual(expected, result.ViewName, "Unexpected view name");
}

一切似乎都没问题,直到遇到if (dt.Rows.Count == 1)行。我得到一个“对象引用未设置为对象的实例。”

我认为必须有类似于以下两行的写法:

var personService = new CommonDomainService.PersonService(_dab);
var dt = personService.GetPersonInfo(personRequest.Id);

但我不知道从哪里开始。我有很多代码看起来像这样。我做错了什么,或者是否有实际的方法来测试它?

感谢您提供任何帮助或指示。

2 个答案:

答案 0 :(得分:1)

您的CommonDomainService.PersonService是否是托管在您的Web应用程序中的某种Web服务,当您运行测试时,您的Web应用程序将无法运行,并且无法访问服务。 理想情况下,您的控制器依赖于您在私有方法中创建的CommonDomainService.PersonService,而应将其注入Controller(就像您执行DataAccess块一样),并在您的测试方法中进行模拟。

答案 1 :(得分:0)

写私有只读IDataAccessBlock _dab;而不是私人IDataAccessBlock _dab;