Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public KustoFunctionalTests(ITestOutputHelper testOutputHelper)
[Fact]
[RequiresFeature(TestFeature.Docker)]
[ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))]
[ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))]
public async Task KustoEmulator_Starts()
{
using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan);
Expand Down Expand Up @@ -91,6 +92,7 @@ public async Task KustoEmulator_Starts()
[Fact]
[RequiresFeature(TestFeature.Docker)]
[ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))]
[ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))]
public async Task KustoEmulator_WithDatabase_CanReadIngestedData()
{
using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan);
Expand Down Expand Up @@ -169,6 +171,7 @@ static async Task<List<object[]>> ReadDataAsync(ICslQueryProvider client, Cancel
[Fact]
[RequiresFeature(TestFeature.Docker)]
[ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))]
[ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))]
public async Task KustoEmulator_WithDatabaseThatAlreadyExists_ErrorIsIgnored()
{
using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan);
Expand Down Expand Up @@ -196,6 +199,7 @@ public async Task KustoEmulator_WithDatabaseThatAlreadyExists_ErrorIsIgnored()
[Fact]
[RequiresFeature(TestFeature.Docker)]
[ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))]
[ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))]
public async Task KustoEmulator_WithInvalidDatabase_LogsErrorAndContinues()
{
using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan);
Expand Down Expand Up @@ -227,6 +231,7 @@ public async Task KustoEmulator_WithInvalidDatabase_LogsErrorAndContinues()
[Fact]
[RequiresFeature(TestFeature.Docker)]
[ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))]
[ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))]
public async Task KustoEmulator_WithBindMount_IsUsedForPersistence()
{
using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan);
Expand Down
Loading