| File: AspireRedisOutputCacheExtensionsTests.cs | Web Access |
| Project: src\tests\Aspire.StackExchange.Redis.OutputCaching.Tests\Aspire.StackExchange.Redis.OutputCaching.Tests.csproj (Aspire.StackExchange.Redis.OutputCaching.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.OutputCaching; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Xunit; namespace Aspire.StackExchange.Redis.OutputCaching.Tests; public class AspireRedisOutputCacheExtensionsTests { [Fact] public void AddsRedisOutputCacheCorrectly() { var builder = Host.CreateEmptyApplicationBuilder(null); builder.AddRedisOutputCache("redis"); using var host = builder.Build(); var cacheStore = host.Services.GetRequiredService<IOutputCacheStore>(); // note the RedisOutputCacheStore is internal Assert.StartsWith("Redis", cacheStore.GetType().Name); } [Fact] public void AddsRedisBuilderOutputCacheCorrectly() { var builder = Host.CreateEmptyApplicationBuilder(null); builder.AddRedisClientBuilder("redis").WithOutputCache(); using var host = builder.Build(); var cacheStore = host.Services.GetRequiredService<IOutputCacheStore>(); // note the RedisOutputCacheStore is internal Assert.StartsWith("Redis", cacheStore.GetType().Name); } }