// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Net; using System.Net.Http; using System.Text; using System.Threading.Tasks; using ActionConstraintsWebSite; using Microsoft.AspNet.Mvc.Infrastructure; using Microsoft.AspNet.Testing.xunit; using Newtonsoft.Json; using Xunit; namespace Microsoft.AspNet.Mvc.FunctionalTests { public class ConsumesAttributeTests : IClassFixture> { public ConsumesAttributeTests(MvcTestFixture fixture) { Client = fixture.Client; } public HttpClient Client { get; } [Fact] public async Task NoRequestContentType_SelectsActionWithoutConstraint() { // Arrange var request = new HttpRequestMessage( HttpMethod.Post, "http://localhost/ConsumesAttribute_Company/CreateProduct"); // Act var response = await Client.SendAsync(request); var product = JsonConvert.DeserializeObject(await response.Content.ReadAsStringAsync()); // Assert Assert.Equal(HttpStatusCode.NoContent, response.StatusCode); Assert.Null(product); } [Fact] public async Task NoRequestContentType_Throws_IfMultipleActionsWithConstraints() { // Arrange var request = new HttpRequestMessage( HttpMethod.Post, "http://localhost/ConsumesAttribute_AmbiguousActions/CreateProduct"); // Act var response = await Client.SendAsync(request); var exception = response.GetServerException(); // Assert Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode); Assert.Equal(typeof(AmbiguousActionException).FullName, exception.ExceptionType); // Mono issue - https://github.com/aspnet/External/issues/19 Assert.Equal( "Multiple actions matched. The following actions matched route data and had all constraints " + "satisfied:" + PlatformNormalizer.GetNewLinesAsUnderscores(2) + "ActionConstraintsWebSite." + "ConsumesAttribute_NoFallBackActionController." + "CreateProduct" + PlatformNormalizer.GetNewLinesAsUnderscores(1) + "ActionConstraintsWebSite." + "ConsumesAttribute_NoFallBackActionController.CreateProduct", exception.ExceptionMessage); } [Fact] public async Task NoRequestContentType_Selects_IfASingleActionWithConstraintIsPresent() { // Arrange var request = new HttpRequestMessage( HttpMethod.Post, "http://localhost/ConsumesAttribute_PassThrough/CreateProduct"); // Act var response = await Client.SendAsync(request); var product = JsonConvert.DeserializeObject(await response.Content.ReadAsStringAsync()); // Assert Assert.Equal(HttpStatusCode.NoContent, response.StatusCode); Assert.Null(product); } [Theory] [InlineData("application/json")] [InlineData("text/json")] public async Task Selects_Action_BasedOnRequestContentType(string requestContentType) { // Arrange var input = "{SampleString:\""+requestContentType+"\"}"; var request = new HttpRequestMessage( HttpMethod.Post, "http://localhost/ConsumesAttribute_AmbiguousActions/CreateProduct"); request.Content = new StringContent(input, Encoding.UTF8, requestContentType); // Act var response = await Client.SendAsync(request); var product = JsonConvert.DeserializeObject(await response.Content.ReadAsStringAsync()); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Equal(requestContentType, product.SampleString); } [Theory] [InlineData("application/json")] [InlineData("text/json")] public async Task ActionLevelAttribute_OveridesClassLevel(string requestContentType) { // Arrange var input = "{SampleString:\"" + requestContentType + "\"}"; var request = new HttpRequestMessage( HttpMethod.Post, "http://localhost/ConsumesAttribute_OverridesBase/CreateProduct"); request.Content = new StringContent(input, Encoding.UTF8, requestContentType); var expectedString = "ConsumesAttribute_OverridesBaseController_" + requestContentType; // Act var response = await Client.SendAsync(request); var product = JsonConvert.DeserializeObject(await response.Content.ReadAsStringAsync()); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Equal(expectedString, product.SampleString); } [ConditionalFact] // Mono issue - https://github.com/aspnet/External/issues/18 [FrameworkSkipCondition(RuntimeFrameworks.Mono)] public async Task DerivedClassLevelAttribute_OveridesBaseClassLevel() { // Arrange var input = "" + "application/xml"; var request = new HttpRequestMessage( HttpMethod.Post, "http://localhost/ConsumesAttribute_Overrides/CreateProduct"); request.Content = new StringContent(input, Encoding.UTF8, "application/xml"); var expectedString = "ConsumesAttribute_OverridesController_application/xml"; // Act var response = await Client.SendAsync(request); var responseString = await response.Content.ReadAsStringAsync(); var product = JsonConvert.DeserializeObject(responseString); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Equal(expectedString, product.SampleString); } } }