4

在我的项目中,我使用的是:SL5+ MVVM+ Prism + WCF + Rx + Moq + Silverlight 单元测试框架。

我是单元测试的新手,最近开始研究 DI、模式 (MVVM) 等。因此,以下代码有很大的改进空间(如果你这么认为,请随意拒绝我采用的整个方法)。

为了访问我的 WCF 服务,我创建了一个如下所示的工厂类(同样,它可能存在缺陷,但请看一看):

namespace SomeSolution
{
    public class ServiceClientFactory:IServiceClientFactory
    {
        public CourseServiceClient GetCourseServiceClient()
        {
            var client = new CourseServiceClient();
            client.ChannelFactory.Faulted += (s, e) => client.Abort();
            if(client.State== CommunicationState.Closed){client.InnerChannel.Open();}
            return client;
        }

        public ConfigServiceClient GetConfigServiceClient()
        {
            var client = new ConfigServiceClient();
            client.ChannelFactory.Faulted += (s, e) => client.Abort();
            if (client.State == CommunicationState.Closed) { client.InnerChannel.Open(); }
            return client;
        }

        public ContactServiceClient GetContactServiceClient()
        {
            var client = new ContactServiceClient();
            client.ChannelFactory.Faulted += (s, e) => client.Abort();
            if (client.State == CommunicationState.Closed) { client.InnerChannel.Open(); }
            return client;
        }
    }
}

它实现了一个简单的接口,如下所示:

public interface IServiceClientFactory
{
    CourseServiceClient GetCourseServiceClient();
    ConfigServiceClient GetConfigServiceClient();
    ContactServiceClient GetContactServiceClient();
}

在我的虚拟机中,我正在执行上述类的 DI 并使用 Rx 调用 WCF,如下所示:

var client = _serviceClientFactory.GetContactServiceClient();
try
{

    IObservable<IEvent<GetContactByIdCompletedEventArgs>> observable =
        Observable.FromEvent<GetContactByIdCompletedEventArgs>(client, "GetContactByIdCompleted").Take(1);

    observable.Subscribe(
        e =>
            {
                if (e.EventArgs.Error == null)
                {                                    
                    //some code here that needs to be unit-tested

                }
            },
        ex =>
        {
            _errorLogger.ProcessError(GetType().Name, MethodBase.GetCurrentMethod().Name, ErrorSource.Observable, "", -1, ex);
        }
        );
    client.GetContactByIdAsync(contactid, UserInformation.SecurityToken);
}
catch (Exception ex)
{
    _errorLogger.ProcessError(GetType().Name, MethodBase.GetCurrentMethod().Name, ErrorSource.Code, "", -1, ex);
}

现在我想构建单元测试(是的,它不是 TDD)。但我不明白从哪里开始。使用 Moq 我无法模拟 BlahServiceClient。也没有 svcutil 生成的接口可以提供帮助,因为异步方法不是自动生成的 IBlahService 接口的一部分。我可能更喜欢扩展(通过部分类等)任何自动生成的类,但我不愿意选择手动构建 svcutil 可以生成的所有代码(坦率地说,考虑到时间和预算)。

有人可以帮忙吗?任何指向正确方向的指针都会对我有很大帮助。

4

1 回答 1

9

在模拟您的服务客户端时,您实际上是在模拟它实现的接口之一。所以在你的情况下它可能是IContactService

生成的代码同时实现System.ServiceModel.ClientBase<IContactService>IContactService。您的依赖提供者(在您的情况下是工厂)正在返回ContactServiceClient- 将其更改IContactService为初学者。这将在现在和将来帮助您的 DI。

好的,您已经有了一个抽象工厂,现在它们返回您的服务接口IContactService。您现在才使用接口,所以模拟非常简单。

首先对您尝试使用的代码进行一些假设。代码片段提供了抽象工厂和服务客户​​端的消息。假设此处需要进行单元测试的 //some code 部分不会与任何其他依赖项交互,那么您希望模拟工厂和服务客户​​端,以便您的测试仅与方法隔离正文代码。

为了举例,我做了一个调整。您的界面:

public class Contact {
    public string Name { get; set; }
}

public interface IContactService {
    Contact GetContactById(int contactid);
}

public interface IContactServiceFactory {
    IContactService GetContactService();
}

然后你的测试看起来像这样总结:

public void WhateverIsToBeTested_ActuallyDoesWhatItMustDo() {

    // Arrange
    var mockContactService = new Mock<IContactService>();
    mockContactService.Setup(cs => cs.GetContactById(It.IsAny<int>()))
        .Returns(new Contact { Name = "Frank Borland" });

    var fakeFactory = new Mock<IContactServiceFactory>();
    fakeFactory.Setup(f => f.GetContactService())
        .Returns(mockContactService.Object);

    /* i'm assuming here that you're injecting the dependency intoto your factory via the contructor - but 
     * assumptions had to be made as not all the code was provided
     */
    var yourObjectUnderTest = new MysteryClass(fakeFactory.Object);

    // Act
    yourObjectUnderTest.yourMysteryMethod();

    // Assert
    /* something mysterious, but expected, happened */            

}

编辑:模拟异步方法

异步生成的方法不是您的服务方法的一部分,而是由 WCF 作为 Client 类的一部分创建的。要将它们模拟为接口,请执行以下操作:

  1. 提取ContactServiceClient类的接口。在 VS 中,只需右键单击(在类名上)、重构、提取接口。并且只选择适用的方法。

  2. 该类ContactServiceClient是部分的,因此创建一个新的类文件并重新定义 ContactServiceClient 类以实现IContactServiceClient您刚刚提取的新接口。

    public partial class ContactServiceClient : IContactServiceClient {
    }
    

像这样,现在客户端类也使用选定的异步方法实现新接口。当刷新您的服务接口并重新生成服务类时 - 您不必重新提取接口,因为您已经使用接口引用创建了一个单独的部分类。

  1. 新建工厂返回新界面

    public interface IContactServiceClientFactory {
        IContactServiceClient GetContactServiceClient();
    }
    
  2. 修改测试以使用该接口。

于 2012-12-29T15:55:39.213 回答