Remove `WaitService`
- use `MvcTestFixture` instead of `TestHelper` - part of #3139 - continue to test e2e interaction of `FlushAsync()` with sections, partials, et cetera - remove `FlushPointTest.FlushBeforeCallingLayout()` - `RazorPageTest.FlushAsync_ThrowsIfTheLayoutHasBeenSet()` unit test covers the scenario
This commit is contained in:
parent
b4eb423e07
commit
ff19702db5
|
|
@ -1,90 +1,58 @@
|
|||
// 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;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Net.Http;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNet.Builder;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using RazorWebSite;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.AspNet.Mvc.FunctionalTests
|
||||
{
|
||||
public class FlushPointTest
|
||||
public class FlushPointTest : IClassFixture<MvcTestFixture<RazorWebSite.Startup>>
|
||||
{
|
||||
private const string SiteName = nameof(RazorWebSite);
|
||||
private readonly Action<IApplicationBuilder> _app = new Startup().Configure;
|
||||
private readonly Action<IServiceCollection> _configureServices = new Startup().ConfigureServices;
|
||||
public FlushPointTest(MvcTestFixture<RazorWebSite.Startup> fixture)
|
||||
{
|
||||
Client = fixture.Client;
|
||||
}
|
||||
|
||||
public HttpClient Client { get; }
|
||||
|
||||
[Fact]
|
||||
public async Task FlushPointsAreExecutedForPagesWithLayouts()
|
||||
{
|
||||
var waitService = new WaitService();
|
||||
var server = TestHelper.CreateServer(_app, SiteName,
|
||||
services =>
|
||||
{
|
||||
_configureServices(services);
|
||||
services.AddInstance(waitService);
|
||||
});
|
||||
var client = server.CreateClient();
|
||||
var expected = @"<title>Page With Layout</title>
|
||||
|
||||
RenderBody content
|
||||
|
||||
|
||||
<span>Content that takes time to produce</span>
|
||||
|
||||
";
|
||||
|
||||
// Act
|
||||
var stream = await client.GetStreamAsync("http://localhost/FlushPoint/PageWithLayout");
|
||||
var body = await Client.GetStringAsync("http://localhost/FlushPoint/PageWithLayout");
|
||||
|
||||
// Assert - 1
|
||||
Assert.Equal(@"<title>Page With Layout</title>", GetTrimmedString(stream));
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 2
|
||||
Assert.Equal(@"RenderBody content", GetTrimmedString(stream));
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 3
|
||||
Assert.Equal(@"<span>Content that takes time to produce</span>",
|
||||
GetTrimmedString(stream));
|
||||
// Assert
|
||||
Assert.Equal(expected, body, ignoreLineEndingDifferences: true);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task FlushPointsAreExecutedForPagesWithoutLayouts()
|
||||
{
|
||||
var waitService = new WaitService();
|
||||
var server = TestHelper.CreateServer(_app, SiteName,
|
||||
services =>
|
||||
{
|
||||
_configureServices(services);
|
||||
services.AddInstance(waitService);
|
||||
});
|
||||
var client = server.CreateClient();
|
||||
var expected = @"Initial content
|
||||
|
||||
Secondary content
|
||||
|
||||
Inside partial
|
||||
|
||||
After flush inside partial<form action=""/FlushPoint/PageWithoutLayout"" method=""post"">" +
|
||||
@"<input id=""Name1"" name=""Name1"" type=""text"" value="""" />" +
|
||||
@"<input id=""Name2"" name=""Name2"" type=""text"" value="""" /></form>";
|
||||
|
||||
// Act
|
||||
var stream = await client.GetStreamAsync("http://localhost/FlushPoint/PageWithoutLayout");
|
||||
var body = await Client.GetStringAsync("http://localhost/FlushPoint/PageWithoutLayout");
|
||||
|
||||
// Assert - 1
|
||||
Assert.Equal("Initial content", GetTrimmedString(stream));
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 2
|
||||
Assert.Equal("Secondary content", GetTrimmedString(stream));
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 3
|
||||
Assert.Equal("Inside partial", GetTrimmedString(stream));
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 4
|
||||
Assert.Equal(
|
||||
@"After flush inside partial<form action=""/FlushPoint/PageWithoutLayout"" method=""post"">" +
|
||||
@"<input id=""Name1"" name=""Name1"" type=""text"" value="""" />",
|
||||
GetTrimmedString(stream),
|
||||
ignoreLineEndingDifferences: true);
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 5
|
||||
Assert.Equal(
|
||||
@"<input id=""Name2"" name=""Name2"" type=""text"" value="""" /></form>",
|
||||
GetTrimmedString(stream));
|
||||
// Assert
|
||||
Assert.Equal(expected, body, ignoreLineEndingDifferences: true);
|
||||
}
|
||||
|
||||
[Theory]
|
||||
|
|
@ -92,112 +60,44 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests
|
|||
[InlineData("PageWithRenderSectionAsync", "FlushAsync invoked inside RenderSectionAsync")]
|
||||
public async Task FlushPointsAreExecutedForPagesWithComponentsPartialsAndSections(string action, string title)
|
||||
{
|
||||
var waitService = new WaitService();
|
||||
var server = TestHelper.CreateServer(_app, SiteName,
|
||||
services =>
|
||||
{
|
||||
_configureServices(services);
|
||||
services.AddInstance(waitService);
|
||||
});
|
||||
var client = server.CreateClient();
|
||||
var expected = $@"<title>{ title }</title>
|
||||
RenderBody content
|
||||
|
||||
// Act
|
||||
var stream = await client.GetStreamAsync("http://localhost/FlushPoint/" + action);
|
||||
|
||||
// Assert - 1
|
||||
Assert.Equal(
|
||||
$@"<title>{ title }</title>
|
||||
RenderBody content",
|
||||
GetTrimmedString(stream),
|
||||
ignoreLineEndingDifferences: true);
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 2
|
||||
Assert.Equal(
|
||||
@"partial-content
|
||||
partial-content
|
||||
|
||||
Value from TaskReturningString
|
||||
<p>section-content</p>",
|
||||
GetTrimmedString(stream),
|
||||
ignoreLineEndingDifferences: true);
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 3
|
||||
Assert.Equal(
|
||||
@"component-content
|
||||
<p>section-content</p>
|
||||
component-content
|
||||
<span>Content that takes time to produce</span>
|
||||
|
||||
More content from layout",
|
||||
GetTrimmedString(stream),
|
||||
ignoreLineEndingDifferences: true);
|
||||
More content from layout
|
||||
";
|
||||
|
||||
// Act
|
||||
var body = await Client.GetStringAsync("http://localhost/FlushPoint/" + action);
|
||||
|
||||
// Assert
|
||||
Assert.Equal(expected, body, ignoreLineEndingDifferences: true);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task FlushPointsNestedLayout()
|
||||
{
|
||||
// Arrange
|
||||
var waitService = new WaitService();
|
||||
var server = TestHelper.CreateServer(_app, SiteName,
|
||||
services =>
|
||||
{
|
||||
_configureServices(services);
|
||||
services.AddInstance(waitService);
|
||||
});
|
||||
var client = server.CreateClient();
|
||||
var expected = @"Inside Nested Layout
|
||||
<title>Nested Page With Layout</title>
|
||||
|
||||
|
||||
|
||||
<span>Nested content that takes time to produce</span>
|
||||
";
|
||||
|
||||
// Act
|
||||
var stream = await client.GetStreamAsync("http://localhost/FlushPoint/PageWithNestedLayout");
|
||||
var body = await Client.GetStringAsync("http://localhost/FlushPoint/PageWithNestedLayout");
|
||||
|
||||
// Assert - 1
|
||||
Assert.Equal(
|
||||
@"Inside Nested Layout
|
||||
<title>Nested Page With Layout</title>",
|
||||
GetTrimmedString(stream),
|
||||
ignoreLineEndingDifferences: true);
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 2
|
||||
Assert.Equal("<span>Nested content that takes time to produce</span>", GetTrimmedString(stream));
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task FlushBeforeCallingLayout()
|
||||
{
|
||||
var waitService = new WaitService();
|
||||
var server = TestHelper.CreateServer(_app, SiteName,
|
||||
services =>
|
||||
{
|
||||
_configureServices(services);
|
||||
services.AddInstance(waitService);
|
||||
});
|
||||
var client = server.CreateClient();
|
||||
|
||||
var expectedMessage = "Layout page '/Views/FlushPoint/PageWithFlushBeforeLayout.cshtml'" +
|
||||
" cannot be rendered after 'FlushAsync' has been invoked.";
|
||||
|
||||
// Act
|
||||
var stream = await client.GetStreamAsync("http://localhost/FlushPoint/PageWithFlushBeforeLayout");
|
||||
|
||||
// Assert - 1
|
||||
Assert.Equal("Initial content", GetTrimmedString(stream));
|
||||
waitService.WaitForServer();
|
||||
|
||||
// Assert - 2
|
||||
try
|
||||
{
|
||||
GetTrimmedString(stream);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Assert.Equal(expectedMessage, ex.InnerException.Message);
|
||||
}
|
||||
}
|
||||
|
||||
private string GetTrimmedString(Stream stream)
|
||||
{
|
||||
var buffer = new byte[1024];
|
||||
var count = stream.Read(buffer, 0, buffer.Length);
|
||||
return Encoding.UTF8.GetString(buffer, 0, count).Trim();
|
||||
// Assert
|
||||
Assert.Equal(expected, body, ignoreLineEndingDifferences: true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,44 +0,0 @@
|
|||
// 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;
|
||||
using System.Threading;
|
||||
|
||||
namespace RazorWebSite
|
||||
{
|
||||
public class WaitService
|
||||
{
|
||||
private static readonly TimeSpan _waitTime = TimeSpan.FromSeconds(60);
|
||||
private readonly ManualResetEventSlim _serverResetEvent = new ManualResetEventSlim();
|
||||
private readonly ManualResetEventSlim _clientResetEvent = new ManualResetEventSlim();
|
||||
|
||||
public void NotifyClient()
|
||||
{
|
||||
_clientResetEvent.Set();
|
||||
}
|
||||
|
||||
public void WaitForClient()
|
||||
{
|
||||
_clientResetEvent.Set();
|
||||
|
||||
if (!_serverResetEvent.Wait(_waitTime))
|
||||
{
|
||||
throw new InvalidOperationException("Timeout exceeded");
|
||||
}
|
||||
|
||||
_serverResetEvent.Reset();
|
||||
}
|
||||
|
||||
public void WaitForServer()
|
||||
{
|
||||
_serverResetEvent.Set();
|
||||
|
||||
if (!_clientResetEvent.Wait(_waitTime))
|
||||
{
|
||||
throw new InvalidOperationException("Timeout exceeded");
|
||||
}
|
||||
|
||||
_clientResetEvent.Reset();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,9 +1,5 @@
|
|||
@inject WaitService WaitService
|
||||
Initial content
|
||||
Initial content
|
||||
@await FlushAsync()
|
||||
@{
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
|
||||
@{
|
||||
Layout = "/Views/Shared/_LayoutWithFlush.cshtml";
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
@inject WaitService WaitService
|
||||
@{
|
||||
@{
|
||||
Layout = "/Views/Shared/_LayoutWithFlush.cshtml";
|
||||
ViewBag.Title = "Page With Layout";
|
||||
}
|
||||
|
|
@ -8,7 +7,6 @@ RenderBody content
|
|||
{
|
||||
@{
|
||||
await FlushAsync();
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
<span>Content that takes time to produce</span>
|
||||
}
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
@inject WaitService WaitService
|
||||
@{
|
||||
@{
|
||||
Layout = "/Views/Shared/_NestedLayoutWithFlush.cshtml";
|
||||
ViewBag.Title = "Nested Page With Layout";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
@inject WaitService WaitService
|
||||
@inject TaskReturningService TaskReturningService
|
||||
@inject TaskReturningService TaskReturningService
|
||||
|
||||
@{
|
||||
Layout = "/Views/Shared/_LayoutWithPartialAndFlush.cshtml";
|
||||
|
|
@ -12,7 +11,6 @@ RenderBody content
|
|||
<p>section-content</p>
|
||||
@{
|
||||
await FlushAsync();
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
@await Component.InvokeAsync("ComponentThatSetsTitle")
|
||||
<span>Content that takes time to produce</span>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
@inject WaitService WaitService
|
||||
@inject TaskReturningService TaskReturningService
|
||||
@inject TaskReturningService TaskReturningService
|
||||
|
||||
@{
|
||||
Layout = "/Views/Shared/_LayoutWithRenderSectionAsync.cshtml";
|
||||
|
|
@ -12,7 +11,6 @@ RenderBody content
|
|||
<p>section-content</p>
|
||||
@{
|
||||
await FlushAsync();
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
@await Component.InvokeAsync("ComponentThatSetsTitle")
|
||||
<span>Content that takes time to produce</span>
|
||||
|
|
|
|||
|
|
@ -1,14 +1,7 @@
|
|||
@inject WaitService WaitService
|
||||
Initial content
|
||||
Initial content
|
||||
@await FlushAsync()
|
||||
@{
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
Secondary content
|
||||
@await FlushAsync()
|
||||
@{
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
@{
|
||||
await Html.RenderPartialAsync("_PartialWithFlush");
|
||||
}
|
||||
|
|
@ -16,9 +9,5 @@ Secondary content
|
|||
{
|
||||
@Html.TextBox("Name1")
|
||||
@await FlushAsync()
|
||||
WaitService.WaitForClient();
|
||||
@Html.TextBox("Name2")
|
||||
}
|
||||
@{
|
||||
WaitService.NotifyClient();
|
||||
}
|
||||
|
|
@ -1,11 +1,4 @@
|
|||
@inject WaitService WaitService
|
||||
<title>@ViewBag.Title</title>
|
||||
<title>@ViewBag.Title</title>
|
||||
@await FlushAsync()
|
||||
@{
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
@RenderBody()
|
||||
@await RenderSectionAsync("content")
|
||||
@{
|
||||
WaitService.NotifyClient();
|
||||
}
|
||||
|
|
@ -1,13 +1,6 @@
|
|||
@inject WaitService WaitService
|
||||
<title>@ViewBag.Title</title>
|
||||
<title>@ViewBag.Title</title>
|
||||
@RenderBody()
|
||||
@await FlushAsync()
|
||||
@{
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
@await Html.PartialAsync("_PartialThatSetsTitle")
|
||||
@await RenderSectionAsync("content")
|
||||
@RenderSection("content")
|
||||
More content from layout
|
||||
@{
|
||||
WaitService.NotifyClient();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,6 @@
|
|||
@inject WaitService WaitService
|
||||
<title>@ViewBag.Title</title>
|
||||
<title>@ViewBag.Title</title>
|
||||
@RenderBody()
|
||||
@{
|
||||
await FlushAsync();
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
@await FlushAsync()
|
||||
@await Html.PartialAsync("_PartialThatSetsTitle")
|
||||
@await RenderSectionAsync("content")
|
||||
More content from layout
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
@inject WaitService WaitService
|
||||
@{
|
||||
@{
|
||||
Layout = "/Views/Shared/_LayoutWithRenderSectionOnly.cshtml";
|
||||
ViewBag.Title = "Page With Layout";
|
||||
}
|
||||
|
|
@ -9,7 +8,6 @@ Inside Nested Layout
|
|||
{
|
||||
@{
|
||||
await FlushAsync();
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
<span>Nested content that takes time to produce</span>
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,3 @@
|
|||
@inject WaitService WaitService
|
||||
Inside partial
|
||||
Inside partial
|
||||
@await FlushAsync()
|
||||
@{
|
||||
WaitService.WaitForClient();
|
||||
}
|
||||
After flush inside partial
|
||||
Loading…
Reference in New Issue