a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
40 lines
1.7 KiB
C#
40 lines
1.7 KiB
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
using System.Net.Http.Formatting;
|
|
using System.Net.Http.Headers;
|
|
using Moq;
|
|
using Xunit;
|
|
|
|
namespace System.Web.Http.ContentNegotiation
|
|
{
|
|
public class DefaultContentNegotiatorTests : ContentNegotiationTestBase
|
|
{
|
|
[Fact]
|
|
public void Custom_ContentNegotiator_Used_In_Response()
|
|
{
|
|
// Arrange
|
|
configuration.Formatters.Clear();
|
|
MediaTypeWithQualityHeaderValue requestContentType = new MediaTypeWithQualityHeaderValue("application/xml");
|
|
MediaTypeHeaderValue responseContentType = null;
|
|
|
|
Mock<IContentNegotiator> selector = new Mock<IContentNegotiator>();
|
|
selector.Setup(s => s.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(), It.IsAny<IEnumerable<MediaTypeFormatter>>()))
|
|
.Returns(new ContentNegotiationResult(new XmlMediaTypeFormatter(), null));
|
|
|
|
configuration.Services.Replace(typeof(IContentNegotiator), selector.Object);
|
|
|
|
// Act
|
|
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, baseUri);
|
|
request.Headers.Accept.Add(requestContentType);
|
|
HttpResponseMessage response = httpClient.SendAsync(request).Result;
|
|
response.EnsureSuccessStatusCode();
|
|
responseContentType = response.Content.Headers.ContentType;
|
|
|
|
// Assert
|
|
selector.Verify(s => s.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(), It.IsAny<IEnumerable<MediaTypeFormatter>>()), Times.AtLeastOnce());
|
|
}
|
|
}
|
|
}
|