Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i've got an integration test that grabs some json result from a 3rd party server. It's really simple and works great.

I was hoping to stop actually hitting this server and using Moq (or any Mocking library, like ninject, etc) to hijack and force the return result.

is this possible?

Here is some sample code :-

public Foo GoGetSomeJsonForMePleaseKThxBai()
{
    // prep stuff ...

    // Now get json please.
    HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create("Http://some.fancypants.site/api/hiThere);
    httpWebRequest.Method = WebRequestMethods.Http.Get;

    string responseText;

    using (var httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse())
    {
        using (var streamReader = new StreamReader(httpWebResponse.GetResponseStream()))
        {
            json = streamReader.ReadToEnd().ToLowerInvariant();
        }
    }

    // Check the value of the json... etc..
}

and of course, this method is called from my test.

I was thinking that maybe I need to pass into this method (or a property of the class?) a mocked httpWebResponse or something but wasn't too sure if this was the way. Also, the response is a output from an httpWebRequest.GetResponse() method .. so maybe I just need to pass in a mocked HttpWebRequest ?.

any suggestions with some sample code would be most aprreciated!

share|improve this question

5 Answers

up vote 3 down vote accepted

You can, but you may wish to change your consuming code to take in some sort of HttpWebRequest factory, or (better yet) use an interface or class abstraction for requests and responses. That way you can plug in the Mocked factory for testing

public IWebRequestFactory
{
     HttpWebRequest Create(string uri);
}


public class Consumer
{
     public IHttpWebRequestFactory WebRequestFactory { get; private set; }

     public Consumer(IHttpWebRequestFactory webRequestFactory)
     {
        WebRequestFactory = webRequestFactory;
     }

     public Foo GoGetSomeJsonForMePleaseKThxBai()
    {
        // prep stuff ...

        // Now get json please.
        HttpWebRequest httpWebRequest = WebRequestFactory.Create("Http://some.fancypants.site/api/hiThere);
        httpWebRequest.Method = WebRequestMethods.Http.Get;

        string responseText;

        using (var httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse())
        {
            using (var streamReader = new StreamReader(httpWebResponse.GetResponseStream()))
            {
                json = streamReader.ReadToEnd().ToLowerInvariant();
            }
        }

        // Check the value of the json... etc..
    }

}

And your Moq:

var yourMockedResponseStream = new MemoryStream();
// etc.


var response = new Mock<HttpWebResponse>();
response.Setup(c => c.GetResponseStream()).Returns(yourMockedResponseStream);

var request = new Mock<HttpWebRequest>();
request.Setup(c => c.GetResponse()).Returns(response.Object);

var factory = new Mock<IHttpWebRequestFactory>();
factory.Setup(c => c.Create(It.IsAny<string>()).Returns(request.Object);
share|improve this answer
4  
you can't create mock for HttpWebResponse. You wil get an error like this:"System.ArgumentException: Can not instantiate proxy of class: System.Net.HttpWebResponse. Could not find a parameterless constructor. Parameter name: constructorArguments" – Advard Aug 8 '12 at 16:06

Rather than mocking out the HttpWebResponse is I would wrap the call behind an interface, and mock that interface.

If you are testing does the web response hit the site I want it too, that is a different test than if does class A call the WebResponse interface to get the needed data.

For mocking an interface I prefer Rhino mocks. See here on how to use it.

share|improve this answer
The method (above) is actually an implimented interface. So the class is public class AwesomeClass : IThinkICan. So you're suggestion i just mock that class instead, so i mock the return object? Right now, my test does hit the 3rd party, but i do not want it to do that. (ie. go from integration test to a unit test). – Pure.Krome Mar 22 '12 at 13:27

None of the Microsoft's HTTP stack was developed with unit testing and separation in mind.

You have three options:

  • Make the call to web as small as possible (i.e. send and get back data and pass to other methods) and test the rest. As far as the web call is concerned, there should be much magic happening there and very straightforward.
  • Wrap the HTTP call in another class and pass your mock object while testing.
  • Wrap HttpWebResponse and HttpWebRequest by two other classes. This is what the MVC team did with HttpContext.

Second option:

interface IWebCaller
{
    string CallWeb(string address);
}
share|improve this answer

You can actually return HttpWebResponse without mocking, see my answer here. It does not require any "external" proxying interfaces, only the "standard" WebRequest WebResponse and ICreateWebRequest.

If you don't need access to HttpWebResponse and can deal with just WebResponse it is even easier; we do that in our unit tests to return "prefabricated" content responses for consumption. I had to "go the extra mile" in order to return actual HTTP status codes, to simulate e.g. 404 responses which requires you use HttpWebResponse so you can access the StatusCode property et al.

The other solutions assuming everything is HttpWebXXX ignores everything supported by WebRequest.Create() except HTTP, which can be a handler for any registered prefix you care to use (via WebRequest.RegisterPrefix() and if you are ignoring that, you are missing out, because it is a great way to expose other content streams you otherwise have no way to access, e.g. Embeeded Resource Streams, File streams, etc.

Also, explicitly casting the return of WebRequest.Create() to WebHttpRequest is a path to breakage, since the method return type is WebRequest and again, shows some ignorance of how that API actually works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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