Fix Open ID test case
This commit is contained in:
parent
4277bb75b1
commit
7da71fc5ee
|
|
@ -11,22 +11,22 @@ namespace E2ETests
|
||||||
{
|
{
|
||||||
[ConditionalTheory]
|
[ConditionalTheory]
|
||||||
[FrameworkSkipCondition(RuntimeFrameworks.Mono)]
|
[FrameworkSkipCondition(RuntimeFrameworks.Mono)]
|
||||||
[InlineData(ServerType.IISExpress, DotnetFlavor.DesktopClr, DotnetArchitecture.x86, "http://localhost:5001/")]
|
[InlineData(ServerType.IISExpress, RuntimeFlavor.DesktopClr, RuntimeArchitecture.x86, "http://localhost:5001/")]
|
||||||
public void OpenIdConnect_OnX86(ServerType serverType, DotnetFlavor dotnetFlavor, DotnetArchitecture architecture, string applicationBaseUrl)
|
public void OpenIdConnect_OnX86(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl)
|
||||||
{
|
{
|
||||||
OpenIdConnectTestSuite(serverType, dotnetFlavor, architecture, applicationBaseUrl);
|
OpenIdConnectTestSuite(serverType, runtimeFlavor, architecture, applicationBaseUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalTheory]
|
[ConditionalTheory]
|
||||||
[FrameworkSkipCondition(RuntimeFrameworks.DotNet)]
|
[FrameworkSkipCondition(RuntimeFrameworks.DotNet)]
|
||||||
// Fails due to https://github.com/aspnet/XRE/issues/1129.
|
// Fails due to https://github.com/aspnet/XRE/issues/1129.
|
||||||
[InlineData(ServerType.Kestrel, DotnetFlavor.Mono, DotnetArchitecture.x86, "http://localhost:5004/")]
|
[InlineData(ServerType.Kestrel, RuntimeFlavor.Mono, RuntimeArchitecture.x86, "http://localhost:5004/")]
|
||||||
public void OpenIdConnect_OnMono(ServerType serverType, DotnetFlavor dotnetFlavor, DotnetArchitecture architecture, string applicationBaseUrl)
|
public void OpenIdConnect_OnMono(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl)
|
||||||
{
|
{
|
||||||
OpenIdConnectTestSuite(serverType, dotnetFlavor, architecture, applicationBaseUrl);
|
OpenIdConnectTestSuite(serverType, runtimeFlavor, architecture, applicationBaseUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OpenIdConnectTestSuite(ServerType serverType, DotnetFlavor donetFlavor, DotnetArchitecture architecture, string applicationBaseUrl)
|
private void OpenIdConnectTestSuite(ServerType serverType, RuntimeFlavor donetFlavor, RuntimeArchitecture architecture, string applicationBaseUrl)
|
||||||
{
|
{
|
||||||
using (_logger.BeginScope("OpenIdConnectTestSuite"))
|
using (_logger.BeginScope("OpenIdConnectTestSuite"))
|
||||||
{
|
{
|
||||||
|
|
@ -36,8 +36,8 @@ namespace E2ETests
|
||||||
_startParameters = new StartParameters
|
_startParameters = new StartParameters
|
||||||
{
|
{
|
||||||
ServerType = serverType,
|
ServerType = serverType,
|
||||||
DotnetFlavor = donetFlavor,
|
RuntimeFlavor = donetFlavor,
|
||||||
DotnetArchitecture = architecture,
|
RuntimeArchitecture = architecture,
|
||||||
EnvironmentName = "OpenIdConnectTesting"
|
EnvironmentName = "OpenIdConnectTesting"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue