67 lines
2.5 KiB
C#
67 lines
2.5 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.Collections.Generic;
|
|
using Microsoft.AspNetCore.Hosting.Internal;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Hosting.Tests
|
|
{
|
|
public class WebHostConfigurationTests
|
|
{
|
|
[Fact]
|
|
public void DefaultDoesNotCaptureStartupErrors()
|
|
{
|
|
var config = new WebHostOptions(WebHostConfiguration.GetDefault());
|
|
|
|
Assert.False(config.CaptureStartupErrors);
|
|
}
|
|
|
|
[Fact]
|
|
public void ReadsParametersCorrectly()
|
|
{
|
|
var parameters = new Dictionary<string, string>()
|
|
{
|
|
{ "webroot", "wwwroot"},
|
|
{ "server", "Microsoft.AspNetCore.Server.Kestrel"},
|
|
{ "applicationName", "MyProjectReference"},
|
|
{ "startupAssembly", "MyProjectReference" },
|
|
{ "environment", "Development"},
|
|
{ "detailederrors", "true"},
|
|
{ "captureStartupErrors", "true" }
|
|
};
|
|
|
|
var config = new WebHostOptions(new ConfigurationBuilder().AddInMemoryCollection(parameters).Build());
|
|
|
|
Assert.Equal("wwwroot", config.WebRoot);
|
|
Assert.Equal("Microsoft.AspNetCore.Server.Kestrel", config.ServerAssembly);
|
|
Assert.Equal("MyProjectReference", config.ApplicationName);
|
|
Assert.Equal("MyProjectReference", config.StartupAssembly);
|
|
Assert.Equal("Development", config.Environment);
|
|
Assert.True(config.CaptureStartupErrors);
|
|
Assert.True(config.DetailedErrors);
|
|
}
|
|
|
|
[Fact]
|
|
public void ReadsOldEnvKey()
|
|
{
|
|
var parameters = new Dictionary<string, string>() { { "ENVIRONMENT", "Development" } };
|
|
var config = new WebHostOptions(new ConfigurationBuilder().AddInMemoryCollection(parameters).Build());
|
|
|
|
Assert.Equal("Development", config.Environment);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("1", true)]
|
|
[InlineData("0", false)]
|
|
public void AllowsNumberForDetailedErrors(string value, bool expected)
|
|
{
|
|
var parameters = new Dictionary<string, string>() { { "detailedErrors", value } };
|
|
var config = new WebHostOptions(new ConfigurationBuilder().AddInMemoryCollection(parameters).Build());
|
|
|
|
Assert.Equal(expected, config.DetailedErrors);
|
|
}
|
|
}
|
|
}
|