使用Moles模拟System.Net.Sockets

时间:2012-02-20 18:22:06

标签: c# .net unit-testing mocking moles

我正在尝试使用Moles来模拟System.Net.Sockets中的Socket类。我已成功生成.moles文件并构建它确实将System.Net.Moles程序集添加到我的引用但它不生成MSocket类。实际上只生成了MIPEndPointCollection类。

这是一个使用System.Net.Sockets.Socket:

的示例类
using System.Text;
using System.Net.Sockets;

namespace MyProject
{
    public static class Communicator
    {
        public static int Send(string messages)
        {
            byte[] bytes = Encoding.ASCII.GetBytes(messages);
            int bytesSent = 0;
            using (Socket socket = new Socket(AddressFamily.InterNetwork,
                SocketType.Stream, ProtocolType.Tcp))
            {
                socket.Connect("localhost", 1234);
                bytesSent = socket.Send(bytes);
            }

            return bytesSent;
        }
    }
}

一个愚蠢的测试课程:

using MyProject;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Net.Moles;
using Microsoft.Moles.Framework;

[assembly: MoledType(typeof(System.Net.Sockets.Socket))]

namespace MyProjectTest
{
    [TestClass()]
    public class CommunicatorTest
    {
        private TestContext testContextInstance;
        public TestContext TestContext
        {
            get { return testContextInstance; }
            set { testContextInstance = value; }
        }

        [TestMethod()]
        [HostType("Moles")]
        public void SendTest()
        {
            //dose not exist in the System.Net.Moles namespace:
            //MSocket.Send = deligate(){ return 0; };
            int bytesSent = Communicator.Send("Test Message");
            Assert.AreEqual(0, bytesSent);
        }
    }
}

我的.moles文件:

<Moles xmlns="http://schemas.microsoft.com/moles/2010/">
  <Assembly Name="System.Net" />
</Moles>

有人可以请求指出这有什么问题,以及如何使其发挥作用。我知道还有其他方法来模拟Socket类,例如使用一个实现我自己的接口的包装类,但我只对使用Moles这样做感兴趣。

- 谢谢Daniel

1 个答案:

答案 0 :(得分:1)

根据我的经验,Moling the System组件很古怪。试试这个.moles文件的第二行:

<Assembly Name="System" ReflectionOnly="true" />