73 lines
3.1 KiB
C#
73 lines
3.1 KiB
C#
// 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.Net.Http.Headers;
|
|
using System.Threading.Tasks;
|
|
#if !NETCOREAPP1_0
|
|
using Microsoft.AspNetCore.Testing.xunit;
|
|
#endif
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc.FunctionalTests
|
|
{
|
|
/// <summary>
|
|
/// Functional test to verify the error reporting of Razor compilation by diagnostic middleware.
|
|
/// </summary>
|
|
public class ErrorPageTests : IClassFixture<MvcTestFixture<ErrorPageMiddlewareWebSite.Startup>>
|
|
{
|
|
public ErrorPageTests(MvcTestFixture<ErrorPageMiddlewareWebSite.Startup> fixture)
|
|
{
|
|
Client = fixture.Client;
|
|
}
|
|
|
|
public HttpClient Client { get; }
|
|
|
|
#if NETCOREAPP1_0
|
|
[Theory]
|
|
#else
|
|
[ConditionalTheory]
|
|
[OSSkipCondition(OperatingSystems.MacOSX, SkipReason = "aspnet/Mvc#3587")]
|
|
#endif
|
|
[InlineData("CompilationFailure", "Cannot implicitly convert type 'int' to 'string'")]
|
|
[InlineData("ParserError", "The code block is missing a closing "}" character. Make sure you " +
|
|
"have a matching "}" character for all the "{" characters " +
|
|
"within this block, and that none of the "}" characters are being " +
|
|
"interpreted as markup.")]
|
|
public async Task CompilationFailuresAreListedByErrorPageMiddleware(string action, string expected)
|
|
{
|
|
// Arrange
|
|
var expectedMediaType = MediaTypeHeaderValue.Parse("text/html; charset=utf-8");
|
|
|
|
// Act
|
|
var response = await Client.GetAsync("http://localhost/" + action);
|
|
|
|
// Assert
|
|
Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode);
|
|
Assert.Equal(expectedMediaType, response.Content.Headers.ContentType);
|
|
var content = await response.Content.ReadAsStringAsync();
|
|
Assert.Contains($"/Views/ErrorPageMiddleware/{action}.cshtml", content);
|
|
Assert.Contains(expected, content);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task CompilationFailuresFromViewImportsAreListed()
|
|
{
|
|
// Arrange
|
|
var expectedMessage = "The type or namespace name 'NamespaceDoesNotExist' could not be found ("
|
|
+ "are you missing a using directive or an assembly reference?)";
|
|
var expectedMediaType = MediaTypeHeaderValue.Parse("text/html; charset=utf-8");
|
|
|
|
// Act
|
|
var response = await Client.GetAsync("http://localhost/ErrorFromViewImports");
|
|
|
|
// Assert
|
|
Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode);
|
|
Assert.Equal(expectedMediaType, response.Content.Headers.ContentType);
|
|
var content = await response.Content.ReadAsStringAsync();
|
|
Assert.Contains("/Views/ErrorFromViewImports/_ViewImports.cshtml", content);
|
|
Assert.Contains(expectedMessage, content);
|
|
}
|
|
}
|
|
} |