Awesome
<img src="/src/icon.png" height="30px"> Verify.Http
Extends Verify to allow verification of Http bits.
See Milestones for release notes.
NuGet package
https://nuget.org/packages/Verify.Http/
Enable
Enable at any point in a test using VerifyTests.Recording.Start()
.
Converters
Includes converters for the following
HttpMethod
Uri
HttpHeaders
HttpContent
HttpRequestMessage
HttpResponseMessage
For example:
<!-- snippet: HttpResponse --><a id='snippet-HttpResponse'></a>
[Fact]
public async Task HttpResponse()
{
using var client = new HttpClient();
var result = await client.GetAsync("https://raw.githubusercontent.com/VerifyTests/Verify/main/license.txt");
await Verify(result);
}
<sup><a href='/src/Tests/Tests.cs#L249-L261' title='Snippet source file'>snippet source</a> | <a href='#snippet-HttpResponse' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: Tests.HttpResponse.verified.txt --><a id='snippet-Tests.HttpResponse.verified.txt'></a>
{
Status: 200 OK,
Headers: {
Accept-Ranges: bytes,
Access-Control-Allow-Origin: *,
Cache-Control: max-age=300,
Connection: keep-alive,
Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox,
Cross-Origin-Resource-Policy: cross-origin,
Strict-Transport-Security: max-age=31536000,
Vary: Authorization,Accept-Encoding,Origin,
Via: 1.1 varnish,
X-Content-Type-Options: nosniff,
X-Frame-Options: deny,
X-XSS-Protection: 1; mode=block
},
Content: {
Headers: {
Content-Type: text/plain; charset=utf-8,
Expires: DateTime_1
},
Value:
MIT License
Copyright (c) .NET Foundation and Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
}
}
<sup><a href='/src/Tests/Tests.HttpResponse.verified.txt#L1-L46' title='Snippet source file'>snippet source</a> | <a href='#snippet-Tests.HttpResponse.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Ignoring Headers
Headers are treated as properties, and hence can be ignored using IgnoreMember
:
<a id='snippet-IgnoreHeader'></a>
[Fact]
public async Task IgnoreHeader()
{
using var client = new HttpClient();
var result = await client.GetAsync("https://raw.githubusercontent.com/VerifyTests/Verify/main/license.txt");
await Verify(result)
.IgnoreMembers("Server");
}
<sup><a href='/src/Tests/Tests.cs#L7-L20' title='Snippet source file'>snippet source</a> | <a href='#snippet-IgnoreHeader' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->HttpClient recording via Service
For code that does web calls via HttpClient, these calls can be recorded and verified.
Service that does http
Given a class that does some Http calls:
<!-- snippet: ServiceThatDoesHttp --><a id='snippet-ServiceThatDoesHttp'></a>
// Resolve a HttpClient. All http calls done at any
// resolved client will be added to `recording.Sends`
public class MyService(HttpClient client)
{
public Task MethodThatDoesHttp() =>
// Some code that does some http calls
client.GetAsync("https://raw.githubusercontent.com/VerifyTests/Verify/main/license.txt");
}
<sup><a href='/src/Tests/Tests.cs#L60-L71' title='Snippet source file'>snippet source</a> | <a href='#snippet-ServiceThatDoesHttp' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Add to IHttpClientBuilder
Http recording can be added to a IHttpClientBuilder
:
<a id='snippet-HttpClientRecording'></a>
var collection = new ServiceCollection();
collection.AddScoped<MyService>();
var httpBuilder = collection.AddHttpClient<MyService>();
// Adds a AddHttpClient and adds a RecordingHandler using AddHttpMessageHandler
var recording = httpBuilder.AddRecording();
await using var provider = collection.BuildServiceProvider();
var myService = provider.GetRequiredService<MyService>();
await myService.MethodThatDoesHttp();
await Verify(recording.Sends);
<sup><a href='/src/Tests/Tests.cs#L188-L205' title='Snippet source file'>snippet source</a> | <a href='#snippet-HttpClientRecording' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Add globally
Http can also be added globally IHttpClientBuilder
:
<a id='snippet-HttpClientRecordingGlobal'></a>
var collection = new ServiceCollection();
collection.AddScoped<MyService>();
// Adds a AddHttpClient and adds a RecordingHandler using AddHttpMessageHandler
var (builder, recording) = collection.AddRecordingHttpClient();
await using var provider = collection.BuildServiceProvider();
var myService = provider.GetRequiredService<MyService>();
await myService.MethodThatDoesHttp();
await Verify(recording.Sends);
<sup><a href='/src/Tests/Tests.cs#L166-L182' title='Snippet source file'>snippet source</a> | <a href='#snippet-HttpClientRecordingGlobal' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: Tests.HttpClientRecording.verified.txt --><a id='snippet-Tests.HttpClientRecording.verified.txt'></a>
[
{
RequestUri: https://raw.githubusercontent.com/VerifyTests/Verify/main/license.txt,
RequestMethod: GET,
ResponseStatus: OK 200,
ResponseHeaders: {
Accept-Ranges: bytes,
Access-Control-Allow-Origin: *,
Cache-Control: max-age=300,
Connection: keep-alive,
Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox,
Cross-Origin-Resource-Policy: cross-origin,
Strict-Transport-Security: max-age=31536000,
Vary: Authorization|Accept-Encoding|Origin,
Via: 1.1 varnish,
X-Content-Type-Options: nosniff,
X-Frame-Options: deny,
X-XSS-Protection: 1; mode=block
},
ResponseContent:
MIT License
Copyright (c) .NET Foundation and Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
}
]
<sup><a href='/src/Tests/Tests.HttpClientRecording.verified.txt#L1-L44' title='Snippet source file'>snippet source</a> | <a href='#snippet-Tests.HttpClientRecording.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->There a Pause/Resume semantics:
<!-- snippet: HttpClientPauseResume --><a id='snippet-HttpClientPauseResume'></a>
var collection = new ServiceCollection();
collection.AddScoped<MyService>();
var httpBuilder = collection.AddHttpClient<MyService>();
// Adds a AddHttpClient and adds a RecordingHandler using AddHttpMessageHandler
var recording = httpBuilder.AddRecording();
await using var provider = collection.BuildServiceProvider();
var myService = provider.GetRequiredService<MyService>();
// Recording is enabled by default. So Pause to stop recording
recording.Pause();
await myService.MethodThatDoesHttp();
// Resume recording
recording.Resume();
await myService.MethodThatDoesHttp();
await Verify(recording.Sends);
<sup><a href='/src/Tests/Tests.cs#L271-L294' title='Snippet source file'>snippet source</a> | <a href='#snippet-HttpClientPauseResume' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->If the AddRecordingHttpClient
helper method does not meet requirements, the RecordingHandler
can be explicitly added:
<a id='snippet-HttpClientRecordingExplicit'></a>
var collection = new ServiceCollection();
var builder = collection.AddHttpClient("name");
// Change to not recording at startup
var recording = new RecordingHandler(recording: false);
builder.AddHttpMessageHandler(() => recording);
await using var provider = collection.BuildServiceProvider();
var factory = provider.GetRequiredService<IHttpClientFactory>();
var client = factory.CreateClient("name");
await client.GetAsync("https://www.google.com/");
recording.Resume();
await client.GetAsync("https://raw.githubusercontent.com/VerifyTests/Verify/main/license.txt");
await Verify(recording.Sends);
<sup><a href='/src/Tests/Tests.cs#L300-L324' title='Snippet source file'>snippet source</a> | <a href='#snippet-HttpClientRecordingExplicit' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Http Recording via listener
Http Recording allows, when a method is being tested, for any http requests made as part of that method call to be recorded and verified.
Usage
Call HttpRecording.StartRecording();
before the method being tested is called.
The perform the verification as usual:
<!-- snippet: HttpRecording --><a id='snippet-HttpRecording'></a>
[Fact]
public async Task TestHttpRecording()
{
Recording.Start();
var sizeOfResponse = await MethodThatDoesHttpCalls();
await Verify(
new
{
sizeOfResponse
});
}
static async Task<int> MethodThatDoesHttpCalls()
{
using var client = new HttpClient();
var jsonResult = await client.GetStringAsync("https://github.com/VerifyTests/Verify.Http/raw/main/src/global.json");
var ymlResult = await client.GetStringAsync("https://github.com/VerifyTests/Verify.Http/raw/main/src/appveyor.yml");
return jsonResult.Length + ymlResult.Length;
}
<sup><a href='/src/Tests/Tests.cs#L102-L127' title='Snippet source file'>snippet source</a> | <a href='#snippet-HttpRecording' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
The requests/response pairs will be appended to the verified file.
<!-- snippet: Tests.TestHttpRecording.verified.txt --><a id='snippet-Tests.TestHttpRecording.verified.txt'></a>
{
target: {
sizeOfResponse: 785
},
httpCall: [
{
Status: Created,
Request: {
Uri: https://github.com/VerifyTests/Verify.Http/raw/main/src/global.json,
Headers: {}
},
Response: {
Status: 302 Found,
Headers: {
Access-Control-Allow-Origin: ,
Cache-Control: no-cache,
Content-Security-Policy: default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ github.com/webpack/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ github.com/webpack/ github.com/assets/ gist.github.com/assets-cdn/worker/,
Location: https://raw.githubusercontent.com/VerifyTests/Verify.Http/main/src/global.json,
Referrer-Policy: no-referrer-when-downgrade,
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload,
Vary: X-PJAX,X-PJAX-Container,Turbo-Visit,Turbo-Frame,Accept-Encoding,Accept,X-Requested-With,
X-Content-Type-Options: nosniff,
X-Frame-Options: deny,
X-XSS-Protection: 0
},
ContentHeaders: {
Content-Type: text/html; charset=utf-8
},
ContentString:
}
},
{
Status: Created,
Request: {
Uri: https://raw.githubusercontent.com/VerifyTests/Verify.Http/main/src/global.json,
Headers: {}
},
Response: {
Status: 200 OK,
Headers: {
Accept-Ranges: bytes,
Access-Control-Allow-Origin: *,
Cache-Control: max-age=300,
Connection: keep-alive,
Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox,
Cross-Origin-Resource-Policy: cross-origin,
Strict-Transport-Security: max-age=31536000,
Vary: Authorization,Accept-Encoding,Origin,
Via: 1.1 varnish,
X-Content-Type-Options: nosniff,
X-Frame-Options: deny,
X-XSS-Protection: 1; mode=block
},
ContentHeaders: {
Content-Type: text/plain; charset=utf-8,
Expires: DateTime_1
},
ContentString:
{
"sdk": {
"version": "9.0.100-rc.2.24474.11",
"allowPrerelease": true,
"rollForward": "latestFeature"
}
}
}
},
{
Status: Created,
Request: {
Uri: https://github.com/VerifyTests/Verify.Http/raw/main/src/appveyor.yml,
Headers: {}
},
Response: {
Status: 302 Found,
Headers: {
Access-Control-Allow-Origin: ,
Cache-Control: no-cache,
Content-Security-Policy: default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ github.com/webpack/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ github.com/webpack/ github.com/assets/ gist.github.com/assets-cdn/worker/,
Location: https://raw.githubusercontent.com/VerifyTests/Verify.Http/main/src/appveyor.yml,
Referrer-Policy: no-referrer-when-downgrade,
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload,
Vary: X-PJAX,X-PJAX-Container,Turbo-Visit,Turbo-Frame,Accept-Encoding,Accept,X-Requested-With,
X-Content-Type-Options: nosniff,
X-Frame-Options: deny,
X-XSS-Protection: 0
},
ContentHeaders: {
Content-Type: text/html; charset=utf-8
},
ContentString:
}
},
{
Status: Created,
Request: {
Uri: https://raw.githubusercontent.com/VerifyTests/Verify.Http/main/src/appveyor.yml,
Headers: {}
},
Response: {
Status: 200 OK,
Headers: {
Accept-Ranges: bytes,
Access-Control-Allow-Origin: *,
Cache-Control: max-age=300,
Connection: keep-alive,
Content-Security-Policy: default-src 'none'; style-src 'unsafe-inline'; sandbox,
Cross-Origin-Resource-Policy: cross-origin,
Strict-Transport-Security: max-age=31536000,
Vary: Authorization,Accept-Encoding,Origin,
Via: 1.1 varnish,
X-Content-Type-Options: nosniff,
X-Frame-Options: deny,
X-XSS-Protection: 1; mode=block
},
ContentHeaders: {
Content-Type: text/plain; charset=utf-8,
Expires: DateTime_1
},
ContentString:
image: Visual Studio 2022
environment:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
build_script:
- pwsh: |
Invoke-WebRequest "https://dot.net/v1/dotnet-install.ps1" -OutFile "./dotnet-install.ps1"
./dotnet-install.ps1 -JSonFile src/global.json -Architecture x64 -InstallDir 'C:\Program Files\dotnet'
- dotnet build src --configuration Release
- dotnet test src --configuration Release --no-build --no-restore --filter Category!=Integration
test: off
on_failure:
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
artifacts:
- path: nugets\*.nupkg
}
}
]
}
<sup><a href='/src/Tests/Tests.TestHttpRecording.verified.txt#L1-L140' title='Snippet source file'>snippet source</a> | <a href='#snippet-Tests.TestHttpRecording.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Explicit Usage
The above usage results in the http calls being automatically added snapshot file. Calls can also be explicitly read and recorded using HttpRecording.FinishRecording()
. This enables:
- Filtering what http calls are included in the snapshot.
- Only verifying a subset of information for each http call.
- Performing additional asserts on http calls.
For example:
<!-- snippet: HttpRecordingExplicit --><a id='snippet-HttpRecordingExplicit'></a>
[Fact]
public async Task TestHttpRecordingExplicit()
{
Recording.Start();
var responseSize = await MethodThatDoesHttpCalls();
var httpCalls = Recording.Stop()
.Select(_ => _.Data)
.OfType<HttpCall>()
.ToList();
// Ensure all calls finished in under 5 seconds
var threshold = TimeSpan.FromSeconds(5);
foreach (var call in httpCalls)
{
Assert.True(call.Duration < threshold);
}
await Verify(
new
{
responseSize,
// Only use the Uri in the snapshot
httpCalls = httpCalls.Select(_ => _.Request.Uri)
});
}
<sup><a href='/src/Tests/Tests.cs#L130-L160' title='Snippet source file'>snippet source</a> | <a href='#snippet-HttpRecordingExplicit' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: Tests.TestHttpRecordingExplicit.verified.txt --><a id='snippet-Tests.TestHttpRecordingExplicit.verified.txt'></a>
{
responseSize: 785,
httpCalls: [
https://github.com/VerifyTests/Verify.Http/raw/main/src/global.json,
https://raw.githubusercontent.com/VerifyTests/Verify.Http/main/src/global.json,
https://github.com/VerifyTests/Verify.Http/raw/main/src/appveyor.yml,
https://raw.githubusercontent.com/VerifyTests/Verify.Http/main/src/appveyor.yml
]
}
<sup><a href='/src/Tests/Tests.TestHttpRecordingExplicit.verified.txt#L1-L9' title='Snippet source file'>snippet source</a> | <a href='#snippet-Tests.TestHttpRecordingExplicit.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Mocking
MockHttpClient
allows mocking of http responses and recording of http requests.
Default Response
The default behavior is to return a HttpResponseMessage
with a status code of 200 OK
.
<a id='snippet-DefaultContent'></a>
[Fact]
public async Task DefaultContent()
{
using var client = new MockHttpClient();
var result = await client.GetAsync("https://fake/get");
await Verify(result);
}
<sup><a href='/src/Tests/MockHttpClientTests.cs#L37-L49' title='Snippet source file'>snippet source</a> | <a href='#snippet-DefaultContent' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: MockHttpClientTests.DefaultContent.verified.txt --><a id='snippet-MockHttpClientTests.DefaultContent.verified.txt'></a>
{
Version: 1.1,
Status: 200 OK
}
<sup><a href='/src/Tests/MockHttpClientTests.DefaultContent.verified.txt#L1-L4' title='Snippet source file'>snippet source</a> | <a href='#snippet-MockHttpClientTests.DefaultContent.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Verifying Calls
Request-Response pairs can be verified using MockHttpClient.Calls
<a id='snippet-RecordedCalls'></a>
[Fact]
public async Task RecordedCalls()
{
using var client = new MockHttpClient();
await client.GetAsync("https://fake/get1");
await client.GetAsync("https://fake/get2");
await Verify(client.Calls);
}
<sup><a href='/src/Tests/MockHttpClientTests.cs#L51-L64' title='Snippet source file'>snippet source</a> | <a href='#snippet-RecordedCalls' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: MockHttpClientTests.RecordedCalls.verified.txt --><a id='snippet-MockHttpClientTests.RecordedCalls.verified.txt'></a>
[
{
Request: https://fake/get1,
Response: 200 Ok
},
{
Request: https://fake/get2,
Response: 200 Ok
}
]
<sup><a href='/src/Tests/MockHttpClientTests.RecordedCalls.verified.txt#L1-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-MockHttpClientTests.RecordedCalls.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Explicit Content Response
Always return an explicit StringContent
and media-type:
<a id='snippet-ExplicitContent'></a>
[Fact]
public async Task ExplicitContent()
{
using var client = new MockHttpClient(
content: """{ "a": "b" }""",
mediaType: "application/json");
var result = await client.GetAsync("https://fake/get");
await Verify(result);
}
<sup><a href='/src/Tests/MockHttpClientTests.cs#L21-L35' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExplicitContent' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: MockHttpClientTests.ExplicitContent.verified.txt --><a id='snippet-MockHttpClientTests.ExplicitContent.verified.txt'></a>
{
Status: 200 OK,
Content: {
Headers: {
Content-Type: application/json; charset=utf-8
},
Value: {
a: b
}
}
}
<sup><a href='/src/Tests/MockHttpClientTests.ExplicitContent.verified.txt#L1-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-MockHttpClientTests.ExplicitContent.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Explicit HttpStatusCode Response
Always return an explicit HttpStatusCode
:
<a id='snippet-ExplicitStatusCode'></a>
[Fact]
public async Task ExplicitStatusCode()
{
using var client = new MockHttpClient(HttpStatusCode.Ambiguous);
var result = await client.GetAsync("https://fake/get");
await Verify(result);
}
<sup><a href='/src/Tests/MockHttpClientTests.cs#L66-L78' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExplicitStatusCode' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: MockHttpClientTests.ExplicitStatusCode.verified.txt --><a id='snippet-MockHttpClientTests.ExplicitStatusCode.verified.txt'></a>
{
Version: 1.1,
Status: 300 Multiple Choices
}
<sup><a href='/src/Tests/MockHttpClientTests.ExplicitStatusCode.verified.txt#L1-L4' title='Snippet source file'>snippet source</a> | <a href='#snippet-MockHttpClientTests.ExplicitStatusCode.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Explicit HttpResponseMessage
Alwars return an explicit HttpResponseMessage
:
<a id='snippet-ExplicitResponse'></a>
[Fact]
public async Task ExplicitResponse()
{
var response = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent("Hello")
};
using var client = new MockHttpClient(response);
var result = await client.GetAsync("https://fake/get");
await Verify(result);
}
<sup><a href='/src/Tests/MockHttpClientTests.cs#L80-L96' title='Snippet source file'>snippet source</a> | <a href='#snippet-ExplicitResponse' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: MockHttpClientTests.ExplicitResponse.verified.txt --><a id='snippet-MockHttpClientTests.ExplicitResponse.verified.txt'></a>
{
Status: 200 OK,
Content: {
Headers: {
Content-Type: text/plain; charset=utf-8
},
Value: Hello
}
}
<sup><a href='/src/Tests/MockHttpClientTests.ExplicitResponse.verified.txt#L1-L9' title='Snippet source file'>snippet source</a> | <a href='#snippet-MockHttpClientTests.ExplicitResponse.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->HttpResponseMessage builder
Use custom code to create a HttpResponseMessage
base on a HttpRequestMessage
:
<a id='snippet-ResponseBuilder'></a>
[Fact]
public async Task ResponseBuilder()
{
using var client = new MockHttpClient(
request =>
{
var content = $"Hello to {request.RequestUri}";
var response = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent(content),
};
return response;
});
var result1 = await client.GetAsync("https://fake/get1");
var result2 = await client.GetAsync("https://fake/get2");
await Verify(new
{
result1,
result2
});
}
<sup><a href='/src/Tests/MockHttpClientTests.cs#L125-L151' title='Snippet source file'>snippet source</a> | <a href='#snippet-ResponseBuilder' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: MockHttpClientTests.ResponseBuilder.verified.txt --><a id='snippet-MockHttpClientTests.ResponseBuilder.verified.txt'></a>
{
result1: {
Status: 200 OK,
Content: {
Headers: {
Content-Type: text/plain; charset=utf-8
},
Value: Hello to https://fake/get1
}
},
result2: {
Status: 200 OK,
Content: {
Headers: {
Content-Type: text/plain; charset=utf-8
},
Value: Hello to https://fake/get2
}
}
}
<sup><a href='/src/Tests/MockHttpClientTests.ResponseBuilder.verified.txt#L1-L20' title='Snippet source file'>snippet source</a> | <a href='#snippet-MockHttpClientTests.ResponseBuilder.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Enumeration of HttpResponseMessage
Use a sequence of HttpResponseMessage
to return a sequence of requests:
<a id='snippet-EnumerableResponses'></a>
[Fact]
public async Task EnumerableResponses()
{
using var client = new MockHttpClient(
new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent("Hello")
},
new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StringContent("World")
});
var result1 = await client.GetAsync("https://fake/get1");
var result2 = await client.GetAsync("https://fake/get2");
await Verify(new
{
result1,
result2
});
}
<sup><a href='/src/Tests/MockHttpClientTests.cs#L98-L123' title='Snippet source file'>snippet source</a> | <a href='#snippet-EnumerableResponses' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Resulting verified file
<!-- snippet: MockHttpClientTests.EnumerableResponses.verified.txt --><a id='snippet-MockHttpClientTests.EnumerableResponses.verified.txt'></a>
{
result1: {
Status: 200 OK,
Content: {
Headers: {
Content-Type: text/plain; charset=utf-8
},
Value: Hello
}
},
result2: {
Status: 200 OK,
Content: {
Headers: {
Content-Type: text/plain; charset=utf-8
},
Value: World
}
}
}
<sup><a href='/src/Tests/MockHttpClientTests.EnumerableResponses.verified.txt#L1-L20' title='Snippet source file'>snippet source</a> | <a href='#snippet-MockHttpClientTests.EnumerableResponses.verified.txt' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->Icon
Spider designed by marialuisa iborra from The Noun Project.