25 references to TestPortHelper
IIS.FunctionalTests (4)
Http2TrailersResetTests.cs (1)
35
var port =
TestPortHelper
.GetNextSSLPort();
Http3Tests.cs (1)
34
var port =
TestPortHelper
.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\Http2Tests.cs (1)
45
var port =
TestPortHelper
.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\HttpsTests.cs (1)
67
var port =
TestPortHelper
.GetNextSSLPort();
IIS.LongTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1307
var port =
TestPortHelper
.GetNextSSLPort();
1337
.SetAttributeValue("bindingInformation", $":{
TestPortHelper
.GetNextSSLPort()}:localhost");
1353
var port =
TestPortHelper
.GetNextSSLPort();
1356
deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{
TestPortHelper
.GetNextPort()}/";
IIS.NewHandler.FunctionalTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1307
var port =
TestPortHelper
.GetNextSSLPort();
1337
.SetAttributeValue("bindingInformation", $":{
TestPortHelper
.GetNextSSLPort()}:localhost");
1353
var port =
TestPortHelper
.GetNextSSLPort();
1356
deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{
TestPortHelper
.GetNextPort()}/";
IIS.Tests (2)
Utilities\TestServer.cs (2)
105
_currentPort = _isHttps ?
TestPortHelper
.GetNextSSLPort() :
TestPortHelper
.GetNextPort();
IISExpress.FunctionalTests (6)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Http2Tests.cs (1)
45
var port =
TestPortHelper
.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\HttpsTests.cs (1)
67
var port =
TestPortHelper
.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1307
var port =
TestPortHelper
.GetNextSSLPort();
1337
.SetAttributeValue("bindingInformation", $":{
TestPortHelper
.GetNextSSLPort()}:localhost");
1353
var port =
TestPortHelper
.GetNextSSLPort();
1356
deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{
TestPortHelper
.GetNextPort()}/";
Microsoft.AspNetCore.Server.IntegrationTesting (3)
Common\TestUriHelper.cs (2)
47
return new UriBuilder(scheme, "localhost",
TestPortHelper
.GetNextPort()).Uri;
58
return new UriBuilder(uriHint) { Port =
TestPortHelper
.GetNextPort() }.Uri;
Deployers\NginxDeployer.cs (1)
51
builder.Port =
TestPortHelper
.GetNextPort();
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (2)
IISExpressDeployer.cs (2)
164
port = (uri.Scheme == "https") ?
TestPortHelper
.GetNextSSLPort() :
TestPortHelper
.GetNextPort();