模拟静态方法选项

本文关键字:选项 静态方法 模拟 | 更新日期: 2023-09-27 18:28:19

我知道你不能用 moq 模拟静态方法,但我想知道我可能的选择是什么

我定义了控制器类

public class CustomerController : BaseController
{
    private ICustomerManager cm;
    public CustomerController()
        : this(new CustomerManager())
    {
    }
    public CustomerController(ICustomerManager customerMan)
{
    cm = customerMan;
}
    public ActionResult EditContact(ContactVM model,  IEnumerable<HttpPostedFileBase> Files, PageAction pageAction)
    {
        if (ModelState.IsValid)
        {
            InitializeContactVM(model); //throws an error
        }
    }
    private void InitializeContactVM(ContactVM model)
    {
        model.Customer = cm.GetViewFindCustomerDetails((int)model.CustomerId);
        model.ContactClassificationList = AddBlankToList(SelectLists.ContactClassifications(false)); 
        model.ContactSourceList = AddBlankToList(SelectLists.ContactSources(false));
    }
}

我的单元测试看起来像这样:

public void Edit_Contact_Update_Existing_Contact()
{
    var dataManager = new Mock<IReferenceDataManager>();
    //dataManager.Setup(a=>a.GetContactClassifications()).Returns()
    var contact = InitializeContact();
    var contactvm = new ContactVM(contact);
    var fileMock = new Mock<HttpPostedFileBase>();
    var files = new[] {fileMock.Object};
    var mocManager = InitializeMocManagerContact();
    mocManager.Setup(a => a.GetContactById(It.IsAny<int>())).Returns(contact);
    mocManager.Setup(a => a.UpdateContact(It.IsAny<ContactVM>(), It.IsAny<string>())).Returns(contact);
    var controller = new CustomerController(mocManager.Object);
    var controllerContext = InitializeContext();
    controller.ControllerContext = controllerContext.Object;
    //  mocManager.CallBase = true;
    var result = controller.EditContact(contactvm, files, PageAction.Default) as ViewResult;
    var model = result.ViewData.Model as ContactVM;
    Assert.IsTrue(model.ContactId == contact.CONTACT_ID);
}

问题出在私有方法中,它调用SelectLists.ContactClassifications(false(,然后尝试访问数据库。

类的定义如下

public static class SelectLists
{
    private static readonly ReferenceDataManager _dataManager = new ReferenceDataManager();
    public static SelectList ContactClassifications(bool includeDeleted)
    {
        var data = _dataManager.GetContactClassifications();
    }
}

正是它在选择列表中调用 GetContactClassifications 的那一行感觉我应该能够模拟(如果调用它的方法不能被模拟,因为它是静态的(。这个确实实现了一个接口。

即使有某种方式可以模拟控制器(InitialiseContactVM(中的私有方法,它也适合我。

有没有办法实现这些事情?

模拟静态方法选项

理想情况下,DAL 不应由静态方法组成,而应由普通对象组成,这些对象通过接口注入控制器或任何需要它的事物提供服务。

但是,如果您不能/不想更改它,那么让您模拟它的"标准"方法是将静态方法调用与控制器分离。它可以通过将它包装在一个包含静态调用的类中来完成,并实现一个接口,该接口注入控制器中,因此在测试中模拟出来。这有点类似于测试MessageBox调用或当前系统日期/时间。

首先创建一个包含静态方法调用的接口:

public interface ISelectListsWrapper
{
    SelectList ContactClassifications(bool includeDeleted);
}

然后一个类将通过调用实际的静态方法来实现它:

public class SelectListsWrapper : ISelectListsWrapper
{
    public SelectList ContactClassifications(bool includeDeleted)
    {
        return SelectLists.ContactClassifications(includeDeleted);
    }
}

在控制器中,您在构造函数中获取此类的实例,将其保存到局部变量中,并使用它来通过包装器调用静态方法:

private readonly ISelectListsWrapper selectLists;
public CustomerController(ICustomerManager customerMan, ISelectListsWrapper selectLists)
{
    cm = customerMan;
    this.selectLists = selectLists;
}
private void InitializeContactVM(ContactVM model)
{
    model.Customer = cm.GetViewFindCustomerDetails((int)model.CustomerId);
    model.ContactClassificationList = AddBlankToList(this.selectLists.ContactClassifications(false)); 
    model.ContactSourceList = AddBlankToList(this.selectLists.ContactSources(false));
}

最后,在测试中,您只需传递包装器的模拟并将其设置为返回对该测试有意义的任何内容。

SelectLists类应该重构,以允许您注入IReferenceDataManager而不是实例化一个本身。