29 references to TestPortHelper
IIS.FunctionalTests (4)
Http2TrailersResetTests.cs (1)
36var port = TestPortHelper.GetNextSSLPort();
Http3Tests.cs (1)
35var port = TestPortHelper.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\Http2Tests.cs (1)
46var port = TestPortHelper.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\HttpsTests.cs (1)
68var port = TestPortHelper.GetNextSSLPort();
IIS.LongTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1306var port = TestPortHelper.GetNextSSLPort(); 1336.SetAttributeValue("bindingInformation", $":{TestPortHelper.GetNextSSLPort()}:localhost"); 1352var port = TestPortHelper.GetNextSSLPort(); 1355deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{TestPortHelper.GetNextPort()}/";
IIS.NewHandler.FunctionalTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1306var port = TestPortHelper.GetNextSSLPort(); 1336.SetAttributeValue("bindingInformation", $":{TestPortHelper.GetNextSSLPort()}:localhost"); 1352var port = TestPortHelper.GetNextSSLPort(); 1355deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{TestPortHelper.GetNextPort()}/";
IIS.NewShim.FunctionalTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1306var port = TestPortHelper.GetNextSSLPort(); 1336.SetAttributeValue("bindingInformation", $":{TestPortHelper.GetNextSSLPort()}:localhost"); 1352var port = TestPortHelper.GetNextSSLPort(); 1355deploymentParameters.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)
46var port = TestPortHelper.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.FunctionalTests\HttpsTests.cs (1)
68var port = TestPortHelper.GetNextSSLPort();
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1306var port = TestPortHelper.GetNextSSLPort(); 1336.SetAttributeValue("bindingInformation", $":{TestPortHelper.GetNextSSLPort()}:localhost"); 1352var port = TestPortHelper.GetNextSSLPort(); 1355deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{TestPortHelper.GetNextPort()}/";
Microsoft.AspNetCore.Server.IntegrationTesting (3)
Common\TestUriHelper.cs (2)
47return new UriBuilder(scheme, "localhost", TestPortHelper.GetNextPort()).Uri; 58return new UriBuilder(uriHint) { Port = TestPortHelper.GetNextPort() }.Uri;
Deployers\NginxDeployer.cs (1)
51builder.Port = TestPortHelper.GetNextPort();
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (2)
IISExpressDeployer.cs (2)
164port = (uri.Scheme == "https") ? TestPortHelper.GetNextSSLPort() : TestPortHelper.GetNextPort();