218 lines
8.8 KiB
C#
218 lines
8.8 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.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Text.Encodings.Web;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNet.Http;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.PlatformAbstractions;
|
|
using Microsoft.Extensions.WebEncoders.Testing;
|
|
using Moq;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNet.Diagnostics.Tests
|
|
{
|
|
public class RuntimeInfoMiddlewareTest
|
|
{
|
|
private const string DefaultPath = "/runtimeinfo";
|
|
|
|
[Fact]
|
|
public void DefaultPageOptions_HasDefaultPath()
|
|
{
|
|
// Arrange & act
|
|
var options = new RuntimeInfoPageOptions();
|
|
|
|
// Assert
|
|
Assert.Equal(DefaultPath, options.Path.Value);
|
|
}
|
|
|
|
[Fact]
|
|
public void CreateRuntimeInfoModel_GetsTheVersionAndAllPackages()
|
|
{
|
|
// Arrage
|
|
var libraries = new[] {
|
|
new Library("LibInfo1", string.Empty, "Path1", string.Empty, Enumerable.Empty<string>(), Enumerable.Empty<AssemblyName>()),
|
|
new Library("LibInfo2", string.Empty, "Path2", string.Empty, Enumerable.Empty<string>(), Enumerable.Empty<AssemblyName>())
|
|
};
|
|
|
|
var libraryManagerMock = new Mock<ILibraryManager>(MockBehavior.Strict);
|
|
libraryManagerMock.Setup(l => l.GetLibraries()).Returns(libraries);
|
|
|
|
var runtimeEnvironmentMock = new Mock<IRuntimeEnvironment>(MockBehavior.Strict);
|
|
runtimeEnvironmentMock.Setup(r => r.OperatingSystem).Returns("Windows");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeArchitecture).Returns("x64");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeType).Returns("clr");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeVersion).Returns("1.0.0");
|
|
|
|
RequestDelegate next = _ =>
|
|
{
|
|
return Task.FromResult<object>(null);
|
|
};
|
|
|
|
var middleware = new RuntimeInfoMiddleware(
|
|
next,
|
|
new RuntimeInfoPageOptions(),
|
|
libraryManagerMock.Object,
|
|
runtimeEnvironmentMock.Object);
|
|
|
|
// Act
|
|
var model = middleware.CreateRuntimeInfoModel();
|
|
|
|
// Assert
|
|
Assert.Equal("1.0.0", model.Version);
|
|
Assert.Equal("Windows", model.OperatingSystem);
|
|
Assert.Equal("clr", model.RuntimeType);
|
|
Assert.Equal("x64", model.RuntimeArchitecture);
|
|
Assert.Same(libraries, model.References);
|
|
}
|
|
|
|
[Fact]
|
|
public async void Invoke_WithNonMatchingPath_IgnoresRequest()
|
|
{
|
|
// Arrange
|
|
var libraryManagerMock = new Mock<ILibraryManager>(MockBehavior.Strict);
|
|
var runtimeEnvironmentMock = new Mock<IRuntimeEnvironment>(MockBehavior.Strict);
|
|
|
|
RequestDelegate next = _ =>
|
|
{
|
|
return Task.FromResult<object>(null);
|
|
};
|
|
|
|
var middleware = new RuntimeInfoMiddleware(
|
|
next,
|
|
new RuntimeInfoPageOptions(),
|
|
libraryManagerMock.Object,
|
|
runtimeEnvironmentMock.Object);
|
|
|
|
var contextMock = new Mock<HttpContext>(MockBehavior.Strict);
|
|
contextMock
|
|
.SetupGet(c => c.Request.Path)
|
|
.Returns(new PathString("/nonmatchingpath"));
|
|
|
|
// Act
|
|
await middleware.Invoke(contextMock.Object);
|
|
|
|
// Assert
|
|
contextMock.VerifyGet(c => c.Request.Path, Times.Once());
|
|
}
|
|
|
|
[Fact]
|
|
public async void Invoke_WithMatchingPath_ReturnsInfoPage()
|
|
{
|
|
// Arrange
|
|
var libraryManagerMock = new Mock<ILibraryManager>(MockBehavior.Strict);
|
|
libraryManagerMock.Setup(l => l.GetLibraries()).Returns(new[] {
|
|
new Library("LibInfo1", "1.0.0-beta1", "Path1", string.Empty, Enumerable.Empty<string>(), Enumerable.Empty<AssemblyName>()),
|
|
new Library("LibInfo2", "1.0.0-beta2", "Path2", string.Empty, Enumerable.Empty<string>(), Enumerable.Empty<AssemblyName>())
|
|
});
|
|
|
|
var runtimeEnvironmentMock = new Mock<IRuntimeEnvironment>(MockBehavior.Strict);
|
|
runtimeEnvironmentMock.Setup(r => r.OperatingSystem).Returns("Windows");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeArchitecture).Returns("x64");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeType).Returns("clr");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeVersion).Returns("1.0.0");
|
|
|
|
RequestDelegate next = _ =>
|
|
{
|
|
return Task.FromResult<object>(null);
|
|
};
|
|
|
|
var middleware = new RuntimeInfoMiddleware(
|
|
next,
|
|
new RuntimeInfoPageOptions(),
|
|
libraryManagerMock.Object,
|
|
runtimeEnvironmentMock.Object);
|
|
|
|
var buffer = new byte[4096];
|
|
using (var responseStream = new MemoryStream(buffer))
|
|
{
|
|
var contextMock = new Mock<HttpContext>(MockBehavior.Strict);
|
|
contextMock
|
|
.SetupGet(c => c.Request.Path)
|
|
.Returns(new PathString("/runtimeinfo"));
|
|
contextMock
|
|
.SetupGet(c => c.Response.Body)
|
|
.Returns(responseStream);
|
|
contextMock
|
|
.SetupGet(c => c.RequestServices)
|
|
.Returns(() => null);
|
|
|
|
// Act
|
|
await middleware.Invoke(contextMock.Object);
|
|
|
|
// Assert
|
|
string response = Encoding.UTF8.GetString(buffer);
|
|
|
|
Assert.Contains("<p>Runtime Version: 1.0.0</p>", response);
|
|
Assert.Contains("<p>Operating System: Windows</p>", response);
|
|
Assert.Contains("<p>Runtime Architecture: x64</p>", response);
|
|
Assert.Contains("<p>Runtime Type: clr</p>", response);
|
|
Assert.Contains("<td>LibInfo1</td>", response);
|
|
Assert.Contains("<td>1.0.0-beta1</td>", response);
|
|
Assert.Contains("<td>Path1</td>", response);
|
|
Assert.Contains("<td>LibInfo2</td>", response);
|
|
Assert.Contains("<td>1.0.0-beta2</td>", response);
|
|
Assert.Contains("<td>Path2</td>", response);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public async void Invoke_WithMatchingPath_ReturnsInfoPage_UsingCustomHtmlEncoder()
|
|
{
|
|
// Arrange
|
|
var libraryManagerMock = new Mock<ILibraryManager>(MockBehavior.Strict);
|
|
libraryManagerMock.Setup(l => l.GetLibraries()).Returns(new[] {
|
|
new Library("LibInfo1", "1.0.0-beta1", "Path1", string.Empty, Enumerable.Empty<string>(), Enumerable.Empty<AssemblyName>()),
|
|
});
|
|
|
|
var runtimeEnvironmentMock = new Mock<IRuntimeEnvironment>(MockBehavior.Strict);
|
|
runtimeEnvironmentMock.Setup(r => r.OperatingSystem).Returns("Windows");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeArchitecture).Returns("x64");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeType).Returns("clr");
|
|
runtimeEnvironmentMock.Setup(r => r.RuntimeVersion).Returns("1.0.0");
|
|
|
|
RequestDelegate next = _ =>
|
|
{
|
|
return Task.FromResult<object>(null);
|
|
};
|
|
|
|
var middleware = new RuntimeInfoMiddleware(
|
|
next,
|
|
new RuntimeInfoPageOptions(),
|
|
libraryManagerMock.Object,
|
|
runtimeEnvironmentMock.Object);
|
|
|
|
var buffer = new byte[4096];
|
|
using (var responseStream = new MemoryStream(buffer))
|
|
{
|
|
var contextMock = new Mock<HttpContext>(MockBehavior.Strict);
|
|
contextMock
|
|
.SetupGet(c => c.Request.Path)
|
|
.Returns(new PathString("/runtimeinfo"));
|
|
contextMock
|
|
.SetupGet(c => c.Response.Body)
|
|
.Returns(responseStream);
|
|
contextMock
|
|
.SetupGet(c => c.RequestServices)
|
|
.Returns(new ServiceCollection()
|
|
.AddSingleton<HtmlEncoder>(new HtmlTestEncoder())
|
|
.BuildServiceProvider());
|
|
|
|
// Act
|
|
await middleware.Invoke(contextMock.Object);
|
|
|
|
// Assert
|
|
string response = Encoding.UTF8.GetString(buffer);
|
|
|
|
Assert.True(response.Contains("<td>HtmlEncode[[LibInfo1]]</td>"));
|
|
Assert.True(response.Contains("<td>HtmlEncode[[1.0.0-beta1]]</td>"));
|
|
Assert.True(response.Contains("<td>HtmlEncode[[Path1]]</td>"));
|
|
}
|
|
}
|
|
}
|
|
}
|