More quarantining (#18698)
* quarantine more * actually quarantine signalr test * more quarantining
This commit is contained in:
parent
9ce01623c7
commit
36267e8baf
|
|
@ -520,6 +520,7 @@ namespace Microsoft.AspNetCore.SignalR.Client.FunctionalTests
|
||||||
[Theory]
|
[Theory]
|
||||||
[MemberData(nameof(HubProtocolsAndTransportsAndHubPaths))]
|
[MemberData(nameof(HubProtocolsAndTransportsAndHubPaths))]
|
||||||
[LogLevel(LogLevel.Trace)]
|
[LogLevel(LogLevel.Trace)]
|
||||||
|
[Flaky("<No longer used; tracked in Kusto>", FlakyOn.All)]
|
||||||
public async Task StreamAsyncTest(string protocolName, HttpTransportType transportType, string path)
|
public async Task StreamAsyncTest(string protocolName, HttpTransportType transportType, string path)
|
||||||
{
|
{
|
||||||
var protocol = HubProtocols[protocolName];
|
var protocol = HubProtocols[protocolName];
|
||||||
|
|
|
||||||
|
|
@ -99,6 +99,7 @@ namespace Microsoft.AspNetCore.SignalR.Client.FunctionalTests
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[MemberData(nameof(TransportTypes))]
|
[MemberData(nameof(TransportTypes))]
|
||||||
|
[Flaky("<No longer used; tracked in Kusto>", FlakyOn.All)]
|
||||||
public async Task ClientUsingNewCallWithNewProtocol(HttpTransportType transportType)
|
public async Task ClientUsingNewCallWithNewProtocol(HttpTransportType transportType)
|
||||||
{
|
{
|
||||||
using (var server = await StartServer<VersionStartup>())
|
using (var server = await StartServer<VersionStartup>())
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,8 @@ namespace Microsoft.AspNetCore.SignalR.Tests
|
||||||
messages.Add(message);
|
messages.Add(message);
|
||||||
return messages;
|
return messages;
|
||||||
default:
|
default:
|
||||||
throw new NotSupportedException("TestClient does not support receiving invocations!");
|
// Message implement ToString so this should be helpful.
|
||||||
|
throw new NotSupportedException($"TestClient recieved an unexpected message: {message}.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -161,7 +162,8 @@ namespace Microsoft.AspNetCore.SignalR.Tests
|
||||||
// Pings are ignored
|
// Pings are ignored
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw new NotSupportedException("TestClient does not support receiving invocations!");
|
// Message implement ToString so this should be helpful.
|
||||||
|
throw new NotSupportedException($"TestClient recieved an unexpected message: {message}.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ using Microsoft.AspNetCore.Http.Connections.Features;
|
||||||
using Microsoft.AspNetCore.Http.Connections.Internal;
|
using Microsoft.AspNetCore.Http.Connections.Internal;
|
||||||
using Microsoft.AspNetCore.SignalR.Internal;
|
using Microsoft.AspNetCore.SignalR.Internal;
|
||||||
using Microsoft.AspNetCore.SignalR.Protocol;
|
using Microsoft.AspNetCore.SignalR.Protocol;
|
||||||
|
using Microsoft.AspNetCore.Testing;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Microsoft.Extensions.Logging.Testing;
|
using Microsoft.Extensions.Logging.Testing;
|
||||||
|
|
@ -1037,6 +1038,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[Flaky("<No longer used; tracked in Kusto>", FlakyOn.All)]
|
||||||
public async Task HubMethodCanBeRenamedWithAttribute()
|
public async Task HubMethodCanBeRenamedWithAttribute()
|
||||||
{
|
{
|
||||||
using (StartVerifiableLog())
|
using (StartVerifiableLog())
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,7 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
|
||||||
[Theory]
|
[Theory]
|
||||||
[InlineData(null)]
|
[InlineData(null)]
|
||||||
[InlineData("")]
|
[InlineData("")]
|
||||||
|
[Flaky("<No longer used; tracked in Kusto>", FlakyOn.All)]
|
||||||
public void Error_MissingId(string id)
|
public void Error_MissingId(string id)
|
||||||
{
|
{
|
||||||
var project = Path.Combine(_fixture.CreateProject(id), "TestProject.csproj");
|
var project = Path.Combine(_fixture.CreateProject(id), "TestProject.csproj");
|
||||||
|
|
@ -84,6 +85,7 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
|
||||||
[Theory]
|
[Theory]
|
||||||
[InlineData(true)]
|
[InlineData(true)]
|
||||||
[InlineData(false)]
|
[InlineData(false)]
|
||||||
|
[Flaky("<No longer used; tracked in Kusto>", FlakyOn.All)]
|
||||||
public void SetSecrets(bool fromCurrentDirectory)
|
public void SetSecrets(bool fromCurrentDirectory)
|
||||||
{
|
{
|
||||||
var secrets = new KeyValuePair<string, string>[]
|
var secrets = new KeyValuePair<string, string>[]
|
||||||
|
|
@ -209,6 +211,7 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[Flaky("<No longer used; tracked in Kusto>", FlakyOn.All)]
|
||||||
public void List_Flattens_Nested_Objects()
|
public void List_Flattens_Nested_Objects()
|
||||||
{
|
{
|
||||||
string secretId;
|
string secretId;
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ namespace Microsoft.DotNet.Watcher.Tools.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[Flaky("<No longer required; Tracked in Kusto>", FlakyOn.All)]
|
||||||
public async Task ConsoleCancelKey()
|
public async Task ConsoleCancelKey()
|
||||||
{
|
{
|
||||||
_tempDir
|
_tempDir
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue