File: AspireKeycloakExtensionTests.cs
Web Access
Project: src\tests\Aspire.Keycloak.Authentication.Tests\Aspire.Keycloak.Authentication.Tests.csproj (Aspire.Keycloak.Authentication.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Authentication.OpenIdConnect;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Options;
using Xunit;
 
namespace Aspire.Keycloak.Authentication.Tests;
 
public class AspireKeycloakExtensionTests()
{
    internal const string DefaultKeyName = "keycloak";
 
    [Fact]
    public void AddKeycloakJwtBearer_WithDefaults_NoHttps_Throws()
    {
        var builder = Host.CreateEmptyApplicationBuilder(null);
 
        var realm = "myrealm";
 
        builder.Services.AddAuthentication()
                        .AddKeycloakJwtBearer(DefaultKeyName, realm);
 
        using var host = builder.Build();
 
        var exception = Assert.Throws<InvalidOperationException>(() =>
            host.Services.GetRequiredService<IOptionsMonitor<JwtBearerOptions>>()
                         .Get(JwtBearerDefaults.AuthenticationScheme));
 
        Assert.Equal("The MetadataAddress or Authority must use HTTPS unless disabled for development by setting RequireHttpsMetadata=false.", exception.Message);
    }
 
    [Fact]
    public void AddKeycloakJwtBearer_WithScheme_NoHttps_Throws()
    {
        var builder = Host.CreateEmptyApplicationBuilder(null);
 
        var realm = "myrealm";
        var scheme = JwtBearerDefaults.AuthenticationScheme;
 
        builder.Services.AddAuthentication()
                        .AddKeycloakJwtBearer(DefaultKeyName, realm, scheme);
 
        using var host = builder.Build();
 
        var exception = Assert.Throws<InvalidOperationException>(() =>
            host.Services.GetRequiredService<IOptionsMonitor<JwtBearerOptions>>().Get(scheme));
 
        Assert.Equal("The MetadataAddress or Authority must use HTTPS unless disabled for development by setting RequireHttpsMetadata=false.", exception.Message);
    }
 
    [Fact]
    public void AddKeycloakJwtBearer_WithOptions_SetsJwtBearerAuthority()
    {
        var builder = Host.CreateEmptyApplicationBuilder(null);
 
        var realm = "myrealm";
 
        builder.Services.AddAuthentication()
                        .AddKeycloakJwtBearer(DefaultKeyName, realm, options =>
                        {
                            options.RequireHttpsMetadata = false;
                        });
 
        using var host = builder.Build();
 
        var options = host.Services.GetRequiredService<IOptionsMonitor<JwtBearerOptions>>()
                                   .Get(JwtBearerDefaults.AuthenticationScheme);
 
        Assert.Equal(options.Authority, $"https+http://{DefaultKeyName}/realms/{realm}");
    }
 
    [Fact]
    public void AddKeycloakJwtBearer_WithSchemeAndOptions_SetsJwtBearerAuthority()
    {
        var builder = Host.CreateEmptyApplicationBuilder(null);
 
        var realm = "myrealm";
        var scheme = JwtBearerDefaults.AuthenticationScheme;
 
        builder.Services.AddAuthentication()
                        .AddKeycloakJwtBearer(DefaultKeyName, realm, scheme, options =>
                        {
                            options.RequireHttpsMetadata = false;
                        });
 
        using var host = builder.Build();
 
        var options = host.Services.GetRequiredService<IOptionsMonitor<JwtBearerOptions>>()
                                   .Get(scheme);
 
        Assert.Equal(options.Authority, $"https+http://{DefaultKeyName}/realms/{realm}");
    }
 
    [Fact]
    public void AddKeycloakOpenIdConnect_WithDefaults_NoHttps_Throws()
    {
        var builder = Host.CreateEmptyApplicationBuilder(null);
 
        var realm = "myrealm";
 
        builder.Services.AddAuthentication()
                        .AddKeycloakOpenIdConnect(DefaultKeyName, realm);
 
        using var host = builder.Build();
 
        var exception = Assert.Throws<InvalidOperationException>(() =>
            host.Services.GetRequiredService<IOptionsMonitor<OpenIdConnectOptions>>()
                         .Get(OpenIdConnectDefaults.AuthenticationScheme));
 
        Assert.Equal("The MetadataAddress or Authority must use HTTPS unless disabled for development by setting RequireHttpsMetadata=false.", exception.Message);
    }
 
    [Fact]
    public void AddKeycloakOpenIdConnect_WithScheme_NoHttps_Throws()
    {
        var builder = Host.CreateEmptyApplicationBuilder(null);
 
        var realm = "myrealm";
        var scheme = OpenIdConnectDefaults.AuthenticationScheme;
 
        builder.Services.AddAuthentication()
                        .AddKeycloakOpenIdConnect(DefaultKeyName, realm, scheme);
 
        using var host = builder.Build();
 
        var exception = Assert.Throws<InvalidOperationException>(() =>
            host.Services.GetRequiredService<IOptionsMonitor<OpenIdConnectOptions>>().Get(scheme));
 
        Assert.Equal("The MetadataAddress or Authority must use HTTPS unless disabled for development by setting RequireHttpsMetadata=false.", exception.Message);
    }
 
    [Fact]
    public void AddKeycloakOpenIdConnect_WithOptions_SetsOpenIdConnectAuthority()
    {
        var builder = Host.CreateEmptyApplicationBuilder(null);
 
        var realm = "myrealm";
 
        builder.Services.AddAuthentication()
                        .AddKeycloakOpenIdConnect(DefaultKeyName, realm, options =>
                        {
                            options.ClientId = "myclient";
                            options.RequireHttpsMetadata = false;
                        });
 
        using var host = builder.Build();
 
        var options = host.Services.GetRequiredService<IOptionsMonitor<OpenIdConnectOptions>>()
                                   .Get(OpenIdConnectDefaults.AuthenticationScheme);
 
        Assert.Equal(options.Authority, $"https+http://{DefaultKeyName}/realms/{realm}");
    }
 
    [Fact]
    public void AddKeycloakOpenIdConnect_WithSchemeAndOptions_SetsOpenIdConnectAuthority()
    {
        var builder = Host.CreateEmptyApplicationBuilder(null);
 
        var realm = "myrealm";
        var scheme = OpenIdConnectDefaults.AuthenticationScheme;
 
        builder.Services.AddAuthentication()
                        .AddKeycloakOpenIdConnect(DefaultKeyName, realm, scheme, options =>
                        {
                            options.ClientId = "myclient";
                            options.RequireHttpsMetadata = false;
                        });
 
        using var host = builder.Build();
 
        var options = host.Services.GetRequiredService<IOptionsMonitor<OpenIdConnectOptions>>()
                                   .Get(scheme);
 
        Assert.Equal(options.Authority, $"https+http://{DefaultKeyName}/realms/{realm}");
    }
}