patterncsharpMinor
Unit testing HTTP requests
Viewed 0 times
httptestingunitrequests
Problem
I would like to unit test my web requests, so on top of my head I came up with the solution below.
Since it seems to be working fine, I'm posting it on this site. Though it doesn't feel very dynamic, I would like your input. For example, this solution can't simulate response headers, which I'm also interested in mocking:
"Real" usage example:
Unit test usage example:
Since it seems to be working fine, I'm posting it on this site. Though it doesn't feel very dynamic, I would like your input. For example, this solution can't simulate response headers, which I'm also interested in mocking:
public interface IWebRequest
{
Task DownloadString();
}
public class RealWebRequest : IWebRequest
{
private readonly string url;
public RealWebRequest(string url)
{
this.url = url;
}
public Task DownloadString()
{
using (WebClient client = new WebClient())
{
return client.DownloadStringTaskAsync(new Uri(url));
}
}
}
public class FakeWebRequest : IWebRequest
{
private readonly string fakeReponse;
public FakeWebRequest(string fakeReponse)
{
this.fakeReponse = fakeReponse;
}
public Task DownloadString()
{
return Task.Factory.StartNew(() => fakeReponse);
}
}
public class TestClass
{
private readonly IWebRequest request;
public TestClass(IWebRequest request)
{
this.request = request;
}
public async Task DoStuff()
{
return await request.DownloadString();
}
}"Real" usage example:
IWebRequest realRequest = new RealWebRequest("http://www.test.com");
TestClass test = new TestClass(realRequest);
string realResult = await test.DoStuff();Unit test usage example:
IWebRequest fakeRequest = new FakeWebRequest("fake response string");
TestClass test = new TestClass(fakeRequest);
string fakeResponse = await test.DoStuff();Solution
I really rather think you have the right idea with the interface and your real class. I do heartily endorse your use of
readonly which doesn't get a lot of exposure. However, there are many good mocking frameworks out there that you don't need to write your own fake class to unit test with. For instance, we use Moq where I work and your unit test example would look like this:Mock fakeRequest = new Mock();
fakeRequest
.Setup(request => request.DownloadString(It.IsAny())
.Returns("fake response string");
TestClass test = new TestClass(fakeRequest.Object);
string fakeResponse = await test.DoStuff();Code Snippets
Mock<IWebRequest> fakeRequest = new Mock<IWebRequest>();
fakeRequest
.Setup(request => request.DownloadString(It.IsAny<string>())
.Returns("fake response string");
TestClass test = new TestClass(fakeRequest.Object);
string fakeResponse = await test.DoStuff();Context
StackExchange Code Review Q#85321, answer score: 7
Revisions (0)
No revisions yet.