86 lines
2.6 KiB
C#
86 lines
2.6 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.Diagnostics;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Moq;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Components.Server.Tests
|
|
{
|
|
public class ComponentEndpointRouteBuilderExtensionsTest
|
|
{
|
|
[Fact]
|
|
public void MapBlazorHub_WiresUp_UnderlyingHub()
|
|
{
|
|
// Arrange
|
|
var applicationBuilder = CreateAppBuilder();
|
|
var called = false;
|
|
|
|
// Act
|
|
var app = applicationBuilder
|
|
.UseRouting()
|
|
.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapBlazorHub<MyComponent>("app", dispatchOptions => called = true);
|
|
}).Build();
|
|
|
|
// Assert
|
|
Assert.True(called);
|
|
}
|
|
|
|
[Fact]
|
|
public void MapBlazorHub_MostGeneralOverload_MapsUnderlyingHub()
|
|
{
|
|
// Arrange
|
|
var applicationBuilder = CreateAppBuilder();
|
|
var called = false;
|
|
|
|
// Act
|
|
var app = applicationBuilder
|
|
.UseRouting()
|
|
.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapBlazorHub(Mock.Of<IComponent>().GetType(),"app", "_blazor", dispatchOptions => called = true);
|
|
}).Build();
|
|
|
|
// Assert
|
|
Assert.True(called);
|
|
}
|
|
|
|
private IApplicationBuilder CreateAppBuilder()
|
|
{
|
|
var services = new ServiceCollection();
|
|
services.AddSingleton(Mock.Of<IHostApplicationLifetime>());
|
|
services.AddLogging();
|
|
services.AddOptions();
|
|
var listener = new DiagnosticListener("Microsoft.AspNetCore");
|
|
services.AddSingleton(listener);
|
|
services.AddSingleton<DiagnosticSource>(listener);
|
|
services.AddRouting();
|
|
services.AddSignalR();
|
|
services.AddServerSideBlazor();
|
|
|
|
var serviceProvder = services.BuildServiceProvider();
|
|
|
|
return new ApplicationBuilder(serviceProvder);
|
|
}
|
|
|
|
private class MyComponent : IComponent
|
|
{
|
|
public void Attach(RenderHandle renderHandle)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public Task SetParametersAsync(ParameterView parameters)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
}
|