File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/Servers/Kestrel/test/FunctionalTests Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ async Task EchoServer(ConnectionContext connection)
129
129
130
130
#if LIBUV
131
131
[ OSSkipCondition ( OperatingSystems . Windows , SkipReason = "Libuv does not support unix domain sockets on Windows." ) ]
132
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/28067" ) ]
132
133
#else
133
134
[ MinimumOSVersion ( OperatingSystems . Windows , WindowsVersions . Win10_RS4 ) ]
134
135
#endif
@@ -186,7 +187,9 @@ public async Task TestUnixDomainSocketWithUrl()
186
187
187
188
var httpResponse = Encoding . ASCII . GetString ( readBuffer , 0 , read ) ;
188
189
int httpStatusStart = httpResponse . IndexOf ( ' ' ) + 1 ;
190
+ Assert . False ( httpStatusStart == 0 , $ "Space not found in '{ httpResponse } '.") ;
189
191
int httpStatusEnd = httpResponse . IndexOf ( ' ' , httpStatusStart ) ;
192
+ Assert . False ( httpStatusEnd == - 1 , $ "Second space not found in '{ httpResponse } '.") ;
190
193
191
194
var httpStatus = int . Parse ( httpResponse . Substring ( httpStatusStart , httpStatusEnd - httpStatusStart ) , CultureInfo . InvariantCulture ) ;
192
195
Assert . Equal ( httpStatus , StatusCodes . Status200OK ) ;
You can’t perform that action at this time.
0 commit comments