/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Mvc/test/Mvc.FunctionalTests/RazorViewLocationSpecificationTest.cs
123 строки
4 KB
Brennan
Add logging to MVC tests (#55592)
02 июл 2024, 06:34
Не верифицирован
02 июл 2024, 06:34
c790ed5
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Net; using System.Net.Http; using System.Reflection; using Microsoft.AspNetCore.InternalTesting; using Xunit.Abstractions; namespace Microsoft.AspNetCore.Mvc.FunctionalTests; public class RazorViewLocationSpecificationTest : LoggedTest { private const string BaseUrl = "http://localhost/ViewNameSpecification_Home/"; protected override void Initialize(TestContext context, MethodInfo methodInfo, object[] testMethodArguments, ITestOutputHelper testOutputHelper) { base.Initialize(context, methodInfo, testMethodArguments, testOutputHelper); Factory = new MvcTestFixture<RazorWebSite.Startup>(LoggerFactory); Client = Factory.CreateDefaultClient(); } public override void Dispose() { Factory.Dispose(); base.Dispose(); } public MvcTestFixture<RazorWebSite.Startup> Factory { get; private set; } public HttpClient Client { get; private set; } [Theory] [InlineData("LayoutSpecifiedWithPartialPathInViewStart")] [InlineData("LayoutSpecifiedWithPartialPathInViewStart_ForViewSpecifiedWithRelativePath")] [InlineData("LayoutSpecifiedWithPartialPathInViewStart_ForViewSpecifiedWithPartialName")] [InlineData("LayoutSpecifiedWithPartialPathInViewStart_ForViewSpecifiedWithAppRelativePath")] public async Task PartialLayoutPaths_SpecifiedInViewStarts_GetResolvedByViewEngine(string action) { // Arrange var expected = @"<layout> _ViewStart that specifies partial Layout </layout>"; // Act var body = await Client.GetStringAsync(BaseUrl + action); // Assert Assert.Equal(expected, body.Trim(), ignoreLineEndingDifferences: true); } [Theory] [InlineData("LayoutSpecifiedWithPartialPathInPage")] [InlineData("LayoutSpecifiedWithPartialPathInPageWithPartialPath")] [InlineData("LayoutSpecifiedWithPartialPathInPageWithRelativePath")] [InlineData("LayoutSpecifiedWithPartialPathInPageWithAppRelativePath")] public async Task PartialLayoutPaths_SpecifiedInPage_GetResolvedByViewEngine(string actionName) { // Arrange var expected = @"<non-shared>Layout specified in page </non-shared>"; // Act var body = await Client.GetStringAsync(BaseUrl + actionName); // Assert Assert.Equal(expected, body.Trim(), ignoreLineEndingDifferences: true); } [Theory] [InlineData("LayoutSpecifiedWithRelativePath")] [InlineData("LayoutSpecifiedWithAppRelativePath")] public async Task NonPartialLayoutPaths_GetResolvedByViewEngine(string actionName) { // Arrange var expected = @"<non-shared>Page With Non Partial Layout </non-shared>"; // Act var body = await Client.GetStringAsync(BaseUrl + actionName); // Assert Assert.Equal(expected, body.Trim(), ignoreLineEndingDifferences: true); } [Theory] [InlineData("ViewWithPartial_SpecifiedWithPartialName")] [InlineData("ViewWithPartial_SpecifiedWithRelativePath")] [InlineData("ViewWithPartial_SpecifiedWithAppRelativePath")] public async Task PartialsCanBeSpecifiedWithPartialPath(string actionName) { // Arrange var expected = @"<layout> Non Shared Partial </layout>"; // Act var body = await Client.GetStringAsync(BaseUrl + actionName); // Assert Assert.Equal(expected, body.Trim(), ignoreLineEndingDifferences: true); } [Fact] public async Task PartialLayout_ThrowsIfRequiredSectionMissing() { // Arrange var path = "http://localhost/PartialViewEngine/ViewPartialMissingSection"; // Act var content = await (await Client.GetAsync(path)).Content.ReadAsStringAsync(); // Assert Assert.Contains( "The layout page '/Views/Shared/_PartialLayout.cshtml' cannot find the section " + "'section' in the content page '/Views/PartialViewEngine/PartialMissingSection.cshtml'.", WebUtility.HtmlDecode(content)); } }