Add DefaultScheme, remove single fallback (#891)

This commit is contained in:
Hao Kung 2017-07-07 10:47:54 -07:00 committed by GitHub
parent 0e66e7562a
commit d894584254
6 changed files with 79 additions and 133 deletions

View File

@ -60,6 +60,11 @@ namespace Microsoft.AspNetCore.Authentication
b.HandlerType = typeof(THandler); b.HandlerType = typeof(THandler);
}); });
/// <summary>
/// Used by as the fallback default scheme for all the other defaults."/>.
/// </summary>
public string DefaultScheme { get; set; }
/// <summary> /// <summary>
/// Used by as the default scheme by <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>. /// Used by as the default scheme by <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.
/// </summary> /// </summary>

View File

@ -28,7 +28,7 @@ namespace Microsoft.AspNetCore.Authentication
/// <summary> /// <summary>
/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>. /// Returns the scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.
/// This is typically specified via <see cref="AuthenticationOptions.DefaultAuthenticateScheme"/>. /// This is typically specified via <see cref="AuthenticationOptions.DefaultAuthenticateScheme"/>.
/// Otherwise, if only a single scheme exists, that will be used, if more than one exists, null will be returned. /// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>.
/// </summary> /// </summary>
/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.</returns> /// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.</returns>
Task<AuthenticationScheme> GetDefaultAuthenticateSchemeAsync(); Task<AuthenticationScheme> GetDefaultAuthenticateSchemeAsync();
@ -36,7 +36,7 @@ namespace Microsoft.AspNetCore.Authentication
/// <summary> /// <summary>
/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>. /// Returns the scheme that will be used by default for <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.
/// This is typically specified via <see cref="AuthenticationOptions.DefaultChallengeScheme"/>. /// This is typically specified via <see cref="AuthenticationOptions.DefaultChallengeScheme"/>.
/// Otherwise, if only a single scheme exists, that will be used, if more than one exists, null will be returned. /// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>.
/// </summary> /// </summary>
/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.</returns> /// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.</returns>
Task<AuthenticationScheme> GetDefaultChallengeSchemeAsync(); Task<AuthenticationScheme> GetDefaultChallengeSchemeAsync();
@ -52,7 +52,7 @@ namespace Microsoft.AspNetCore.Authentication
/// <summary> /// <summary>
/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>. /// Returns the scheme that will be used by default for <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.
/// This is typically specified via <see cref="AuthenticationOptions.DefaultSignInScheme"/>. /// This is typically specified via <see cref="AuthenticationOptions.DefaultSignInScheme"/>.
/// Otherwise, if only a single scheme exists, that will be used, if more than one exists, null will be returned. /// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>.
/// </summary> /// </summary>
/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.</returns> /// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.</returns>
Task<AuthenticationScheme> GetDefaultSignInSchemeAsync(); Task<AuthenticationScheme> GetDefaultSignInSchemeAsync();

View File

@ -3,7 +3,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Options; using Microsoft.Extensions.Options;
@ -35,42 +34,33 @@ namespace Microsoft.AspNetCore.Authentication
private IDictionary<string, AuthenticationScheme> _map = new Dictionary<string, AuthenticationScheme>(StringComparer.Ordinal); private IDictionary<string, AuthenticationScheme> _map = new Dictionary<string, AuthenticationScheme>(StringComparer.Ordinal);
private List<AuthenticationScheme> _requestHandlers = new List<AuthenticationScheme>(); private List<AuthenticationScheme> _requestHandlers = new List<AuthenticationScheme>();
private List<AuthenticationScheme> _signOutHandlers = new List<AuthenticationScheme>();
private List<AuthenticationScheme> _signInHandlers = new List<AuthenticationScheme>(); private Task<AuthenticationScheme> GetDefaultSchemeAsync()
=> _options.DefaultScheme != null
? GetSchemeAsync(_options.DefaultScheme)
: Task.FromResult<AuthenticationScheme>(null);
/// <summary> /// <summary>
/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>. /// Returns the scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.
/// This is typically specified via <see cref="AuthenticationOptions.DefaultAuthenticateScheme"/>. /// This is typically specified via <see cref="AuthenticationOptions.DefaultAuthenticateScheme"/>.
/// Otherwise, if only a single scheme exists, that will be used, if more than one exists, null will be returned. /// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>.
/// </summary> /// </summary>
/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.</returns> /// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.</returns>
public virtual Task<AuthenticationScheme> GetDefaultAuthenticateSchemeAsync() public virtual Task<AuthenticationScheme> GetDefaultAuthenticateSchemeAsync()
{ => _options.DefaultAuthenticateScheme != null
if (_options.DefaultAuthenticateScheme != null) ? GetSchemeAsync(_options.DefaultAuthenticateScheme)
{ : GetDefaultSchemeAsync();
return GetSchemeAsync(_options.DefaultAuthenticateScheme);
}
if (_map.Count == 1)
{
return Task.FromResult(_map.Values.First());
}
return Task.FromResult<AuthenticationScheme>(null);
}
/// <summary> /// <summary>
/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>. /// Returns the scheme that will be used by default for <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.
/// This is typically specified via <see cref="AuthenticationOptions.DefaultChallengeScheme"/>. /// This is typically specified via <see cref="AuthenticationOptions.DefaultChallengeScheme"/>.
/// Otherwise, this will fallback to <see cref="GetDefaultAuthenticateSchemeAsync"/>. /// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>.
/// </summary> /// </summary>
/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.</returns> /// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.</returns>
public virtual Task<AuthenticationScheme> GetDefaultChallengeSchemeAsync() public virtual Task<AuthenticationScheme> GetDefaultChallengeSchemeAsync()
{ => _options.DefaultChallengeScheme != null
if (_options.DefaultChallengeScheme != null) ? GetSchemeAsync(_options.DefaultChallengeScheme)
{ : GetDefaultSchemeAsync();
return GetSchemeAsync(_options.DefaultChallengeScheme);
}
return GetDefaultAuthenticateSchemeAsync();
}
/// <summary> /// <summary>
/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.ForbidAsync(HttpContext, string, AuthenticationProperties)"/>. /// Returns the scheme that will be used by default for <see cref="IAuthenticationService.ForbidAsync(HttpContext, string, AuthenticationProperties)"/>.
@ -79,53 +69,31 @@ namespace Microsoft.AspNetCore.Authentication
/// </summary> /// </summary>
/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.ForbidAsync(HttpContext, string, AuthenticationProperties)"/>.</returns> /// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.ForbidAsync(HttpContext, string, AuthenticationProperties)"/>.</returns>
public virtual Task<AuthenticationScheme> GetDefaultForbidSchemeAsync() public virtual Task<AuthenticationScheme> GetDefaultForbidSchemeAsync()
{ => _options.DefaultForbidScheme != null
if (_options.DefaultForbidScheme != null) ? GetSchemeAsync(_options.DefaultForbidScheme)
{ : GetDefaultChallengeSchemeAsync();
return GetSchemeAsync(_options.DefaultForbidScheme);
}
return GetDefaultChallengeSchemeAsync();
}
/// <summary> /// <summary>
/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>. /// Returns the scheme that will be used by default for <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.
/// This is typically specified via <see cref="AuthenticationOptions.DefaultSignInScheme"/>. /// This is typically specified via <see cref="AuthenticationOptions.DefaultSignInScheme"/>.
/// If only a single sign in handler scheme exists, that will be used, if more than one exists, /// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>.
/// this will fallback to <see cref="GetDefaultAuthenticateSchemeAsync"/>.
/// </summary> /// </summary>
/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.</returns> /// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.</returns>
public virtual Task<AuthenticationScheme> GetDefaultSignInSchemeAsync() public virtual Task<AuthenticationScheme> GetDefaultSignInSchemeAsync()
{ => _options.DefaultSignInScheme != null
if (_options.DefaultSignInScheme != null) ? GetSchemeAsync(_options.DefaultSignInScheme)
{ : GetDefaultSchemeAsync();
return GetSchemeAsync(_options.DefaultSignInScheme);
}
if (_signInHandlers.Count == 1)
{
return Task.FromResult(_signInHandlers[0]);
}
return GetDefaultAuthenticateSchemeAsync();
}
/// <summary> /// <summary>
/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.SignOutAsync(HttpContext, string, AuthenticationProperties)"/>. /// Returns the scheme that will be used by default for <see cref="IAuthenticationService.SignOutAsync(HttpContext, string, AuthenticationProperties)"/>.
/// This is typically specified via <see cref="AuthenticationOptions.DefaultSignOutScheme"/>. /// This is typically specified via <see cref="AuthenticationOptions.DefaultSignOutScheme"/>.
/// If only a single sign out handler scheme exists, that will be used, if more than one exists, /// Otherwise this will fallback to <see cref="GetDefaultSignInSchemeAsync"/> if that supoorts sign out.
/// this will fallback to <see cref="GetDefaultSignInSchemeAsync"/> if that supoorts sign out.
/// </summary> /// </summary>
/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.SignOutAsync(HttpContext, string, AuthenticationProperties)"/>.</returns> /// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.SignOutAsync(HttpContext, string, AuthenticationProperties)"/>.</returns>
public virtual Task<AuthenticationScheme> GetDefaultSignOutSchemeAsync() public virtual Task<AuthenticationScheme> GetDefaultSignOutSchemeAsync()
{ => _options.DefaultSignOutScheme != null
if (_options.DefaultSignOutScheme != null) ? GetSchemeAsync(_options.DefaultSignOutScheme)
{ : GetDefaultSignInSchemeAsync();
return GetSchemeAsync(_options.DefaultSignOutScheme);
}
if (_signOutHandlers.Count == 1)
{
return Task.FromResult(_signOutHandlers[0]);
}
return GetDefaultSignInSchemeAsync();
}
/// <summary> /// <summary>
/// Returns the <see cref="AuthenticationScheme"/> matching the name, or null. /// Returns the <see cref="AuthenticationScheme"/> matching the name, or null.
@ -133,22 +101,14 @@ namespace Microsoft.AspNetCore.Authentication
/// <param name="name">The name of the authenticationScheme.</param> /// <param name="name">The name of the authenticationScheme.</param>
/// <returns>The scheme or null if not found.</returns> /// <returns>The scheme or null if not found.</returns>
public virtual Task<AuthenticationScheme> GetSchemeAsync(string name) public virtual Task<AuthenticationScheme> GetSchemeAsync(string name)
{ => Task.FromResult(_map.ContainsKey(name) ? _map[name] : null);
if (_map.ContainsKey(name))
{
return Task.FromResult(_map[name]);
}
return Task.FromResult<AuthenticationScheme>(null);
}
/// <summary> /// <summary>
/// Returns the schemes in priority order for request handling. /// Returns the schemes in priority order for request handling.
/// </summary> /// </summary>
/// <returns>The schemes in priority order for request handling</returns> /// <returns>The schemes in priority order for request handling</returns>
public virtual Task<IEnumerable<AuthenticationScheme>> GetRequestHandlerSchemesAsync() public virtual Task<IEnumerable<AuthenticationScheme>> GetRequestHandlerSchemesAsync()
{ => Task.FromResult<IEnumerable<AuthenticationScheme>>(_requestHandlers);
return Task.FromResult<IEnumerable<AuthenticationScheme>>(_requestHandlers);
}
/// <summary> /// <summary>
/// Registers a scheme for use by <see cref="IAuthenticationService"/>. /// Registers a scheme for use by <see cref="IAuthenticationService"/>.
@ -170,14 +130,6 @@ namespace Microsoft.AspNetCore.Authentication
{ {
_requestHandlers.Add(scheme); _requestHandlers.Add(scheme);
} }
if (typeof(IAuthenticationSignInHandler).IsAssignableFrom(scheme.HandlerType))
{
_signInHandlers.Add(scheme);
}
if (typeof(IAuthenticationSignOutHandler).IsAssignableFrom(scheme.HandlerType))
{
_signOutHandlers.Add(scheme);
}
_map[scheme.Name] = scheme; _map[scheme.Name] = scheme;
} }
} }
@ -198,8 +150,6 @@ namespace Microsoft.AspNetCore.Authentication
{ {
var scheme = _map[name]; var scheme = _map[name];
_requestHandlers.Remove(scheme); _requestHandlers.Remove(scheme);
_signInHandlers.Remove(scheme);
_signOutHandlers.Remove(scheme);
_map.Remove(name); _map.Remove(name);
} }
} }

View File

@ -13,6 +13,40 @@ namespace Microsoft.AspNetCore.Authentication
{ {
public class AuthenticationSchemeProviderTests public class AuthenticationSchemeProviderTests
{ {
[Fact]
public async Task NoDefaultsByDefault()
{
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{
o.AddScheme<SignInHandler>("B", "whatever");
}).BuildServiceProvider();
var provider = services.GetRequiredService<IAuthenticationSchemeProvider>();
Assert.Null(await provider.GetDefaultForbidSchemeAsync());
Assert.Null(await provider.GetDefaultAuthenticateSchemeAsync());
Assert.Null(await provider.GetDefaultChallengeSchemeAsync());
Assert.Null(await provider.GetDefaultSignInSchemeAsync());
Assert.Null(await provider.GetDefaultSignOutSchemeAsync());
}
[Fact]
public async Task DefaultSchemesFallbackToDefaultScheme()
{
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{
o.DefaultScheme = "B";
o.AddScheme<SignInHandler>("B", "whatever");
}).BuildServiceProvider();
var provider = services.GetRequiredService<IAuthenticationSchemeProvider>();
Assert.Equal("B", (await provider.GetDefaultForbidSchemeAsync()).Name);
Assert.Equal("B", (await provider.GetDefaultAuthenticateSchemeAsync()).Name);
Assert.Equal("B", (await provider.GetDefaultChallengeSchemeAsync()).Name);
Assert.Equal("B", (await provider.GetDefaultSignInSchemeAsync()).Name);
Assert.Equal("B", (await provider.GetDefaultSignOutSchemeAsync()).Name);
}
[Fact] [Fact]
public async Task DefaultSignOutFallsbackToSignIn() public async Task DefaultSignOutFallsbackToSignIn()
{ {
@ -45,40 +79,6 @@ namespace Microsoft.AspNetCore.Authentication
Assert.Equal("challenge", scheme.Name); Assert.Equal("challenge", scheme.Name);
} }
[Fact]
public async Task DefaultSchemesFallbackToOnlyScheme()
{
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{
o.AddScheme<SignInHandler>("single", "whatever");
}).BuildServiceProvider();
var provider = services.GetRequiredService<IAuthenticationSchemeProvider>();
Assert.Equal("single", (await provider.GetDefaultForbidSchemeAsync()).Name);
Assert.Equal("single", (await provider.GetDefaultAuthenticateSchemeAsync()).Name);
Assert.Equal("single", (await provider.GetDefaultChallengeSchemeAsync()).Name);
Assert.Equal("single", (await provider.GetDefaultSignInSchemeAsync()).Name);
Assert.Equal("single", (await provider.GetDefaultSignOutSchemeAsync()).Name);
}
[Fact]
public async Task DefaultSchemesFallbackToAuthenticateScheme()
{
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{
o.DefaultAuthenticateScheme = "B";
o.AddScheme<Handler>("A", "whatever");
o.AddScheme<SignInHandler>("B", "whatever");
}).BuildServiceProvider();
var provider = services.GetRequiredService<IAuthenticationSchemeProvider>();
Assert.Equal("B", (await provider.GetDefaultForbidSchemeAsync()).Name);
Assert.Equal("B", (await provider.GetDefaultAuthenticateSchemeAsync()).Name);
Assert.Equal("B", (await provider.GetDefaultChallengeSchemeAsync()).Name);
Assert.Equal("B", (await provider.GetDefaultSignInSchemeAsync()).Name);
Assert.Equal("B", (await provider.GetDefaultSignOutSchemeAsync()).Name);
}
[Fact] [Fact]
public async Task DefaultSchemesAreSet() public async Task DefaultSchemesAreSet()
{ {
@ -87,6 +87,8 @@ namespace Microsoft.AspNetCore.Authentication
o.AddScheme<SignInHandler>("A", "whatever"); o.AddScheme<SignInHandler>("A", "whatever");
o.AddScheme<SignInHandler>("B", "whatever"); o.AddScheme<SignInHandler>("B", "whatever");
o.AddScheme<SignInHandler>("C", "whatever"); o.AddScheme<SignInHandler>("C", "whatever");
o.AddScheme<SignInHandler>("Def", "whatever");
o.DefaultScheme = "Def";
o.DefaultChallengeScheme = "A"; o.DefaultChallengeScheme = "A";
o.DefaultForbidScheme = "B"; o.DefaultForbidScheme = "B";
o.DefaultSignInScheme = "C"; o.DefaultSignInScheme = "C";
@ -102,25 +104,6 @@ namespace Microsoft.AspNetCore.Authentication
Assert.Equal("A", (await provider.GetDefaultSignOutSchemeAsync()).Name); Assert.Equal("A", (await provider.GetDefaultSignOutSchemeAsync()).Name);
} }
[Fact]
public async Task SignInSignOutDefaultsToOnlyOne()
{
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{
o.AddScheme<Handler>("basic", "whatever");
o.AddScheme<SignOutHandler>("signout", "whatever");
o.AddScheme<SignInHandler>("signin", "whatever");
o.DefaultAuthenticateScheme = "basic";
}).BuildServiceProvider();
var provider = services.GetRequiredService<IAuthenticationSchemeProvider>();
Assert.Equal("basic", (await provider.GetDefaultForbidSchemeAsync()).Name);
Assert.Equal("basic", (await provider.GetDefaultAuthenticateSchemeAsync()).Name);
Assert.Equal("basic", (await provider.GetDefaultChallengeSchemeAsync()).Name);
Assert.Equal("signin", (await provider.GetDefaultSignInSchemeAsync()).Name);
Assert.Equal("signin", (await provider.GetDefaultSignOutSchemeAsync()).Name); // Defaults to single sign in scheme
}
[Fact] [Fact]
public async Task SignOutWillDefaultsToSignInThatDoesNotSignOut() public async Task SignOutWillDefaultsToSignInThatDoesNotSignOut()
{ {

View File

@ -56,6 +56,7 @@ namespace Microsoft.AspNetCore.Authentication
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o => var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{ {
o.AddScheme<BaseHandler>("base", "whatever"); o.AddScheme<BaseHandler>("base", "whatever");
o.DefaultScheme = "base";
}).BuildServiceProvider(); }).BuildServiceProvider();
var context = new DefaultHttpContext(); var context = new DefaultHttpContext();
context.RequestServices = services; context.RequestServices = services;
@ -73,6 +74,7 @@ namespace Microsoft.AspNetCore.Authentication
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o => var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{ {
o.AddScheme<UberHandler>("base", "whatever"); o.AddScheme<UberHandler>("base", "whatever");
o.DefaultScheme = "base";
}).BuildServiceProvider(); }).BuildServiceProvider();
var context = new DefaultHttpContext(); var context = new DefaultHttpContext();
context.RequestServices = services; context.RequestServices = services;
@ -90,6 +92,7 @@ namespace Microsoft.AspNetCore.Authentication
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o => var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{ {
o.AddScheme<SignInHandler>("base", "whatever"); o.AddScheme<SignInHandler>("base", "whatever");
o.DefaultScheme = "base";
}).BuildServiceProvider(); }).BuildServiceProvider();
var context = new DefaultHttpContext(); var context = new DefaultHttpContext();
context.RequestServices = services; context.RequestServices = services;
@ -107,6 +110,7 @@ namespace Microsoft.AspNetCore.Authentication
var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o => var services = new ServiceCollection().AddOptions().AddAuthenticationCore(o =>
{ {
o.AddScheme<SignOutHandler>("base", "whatever"); o.AddScheme<SignOutHandler>("base", "whatever");
o.DefaultScheme = "base";
}).BuildServiceProvider(); }).BuildServiceProvider();
var context = new DefaultHttpContext(); var context = new DefaultHttpContext();
context.RequestServices = services; context.RequestServices = services;

View File

@ -129,7 +129,11 @@ namespace Microsoft.AspNetCore.Authentication
{ {
var context = new DefaultHttpContext(); var context = new DefaultHttpContext();
var services = new ServiceCollection().AddOptions() var services = new ServiceCollection().AddOptions()
.AddAuthenticationCore(o => o.AddScheme("simple", s => s.HandlerType = typeof(SimpleAuth))); .AddAuthenticationCore(o =>
{
o.DefaultScheme = "simple";
o.AddScheme("simple", s => s.HandlerType = typeof(SimpleAuth));
});
context.RequestServices = services.BuildServiceProvider(); context.RequestServices = services.BuildServiceProvider();
Assert.Equal("1", await context.GetTokenAsync("One")); Assert.Equal("1", await context.GetTokenAsync("One"));