vote up 1 vote down star

I'm trying to mock out the System.net.Sockets.Socket class in C# - I tried using NUnit mocks but it can't mock concrete classes. I also tried using Rhino Mocks but it seemed to use a real version of the class because it threw a SocketException when Send(byte[]) was called. Has anyone successfully created and used a Socket mock using any mocking framework?

flag

8  
Does "You call that a Socket?" count? =] – mdec Aug 11 at 23:52

3 Answers

vote up 4 vote down check

Whenever I run into these kinds of problems with Moq I end up creating an interface to abstract away the thing I can't mock.

So in your instance you might have an ISocket interface that implements the Send method. Then have your mocking framework mock that instead.

In your actual code, you'd have a class like this

public class MySocket : ISocket
{
  System.Net.Sockets.Socket _socket;

  public void MySocket(System.Net.Sockets.Socket theSocket)
  {
    _socket = theSocket;
  }

  public virtual void Send(byte[] stuffToSend)
  {
    _socket.Send(stuffToSend);
  }

}

Not sure if that meets your needs, but it's an option.

link|flag
You should consider making the send method virtual too :) – Chris Missal Aug 12 at 11:58
Good call. Edited to make Send method virtual. – thinkzig Aug 12 at 13:19
But don't stop there. Rather than just echoing the external API, write an interface that describes what your code wants from the communication layer. This might mean that it accepts more structured input, rather than bytes. Or something else, it depends on the context. – Steve Freeman Sep 7 at 11:45
vote up 2 vote down

The reason you get a SocketException when you call the Send method is because Send is not an overridable method. For RhinoMocks to be able to mock the behavior of a property or method, it has to either be defined in an interface (which we then create our mock off) or is overridable.

Your only solution to this is to create a mockable wrapper class (as suggested by thinkzig).

link|flag
vote up 0 vote down

You'd better to create an interface and mock it in your test, and implement a wrapper class in your code, that forward all method calls to .NET socket as thinkzig said. Look at this link, it's same issue: http://stackoverflow.com/questions/1087351/how-do-you-mock-out-the-file-system-in-c-for-unit-testing

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.