Merge branch 'release/2.2' => 'release/3.0' (#13100)
This commit is contained in:
commit
cb298f16e9
|
|
@ -50,6 +50,7 @@ namespace Microsoft.AspNetCore.Server.IIS.FunctionalTests.InProcess
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalTheory]
|
[ConditionalTheory]
|
||||||
|
[RequiresNewHandler]
|
||||||
[InlineData("/RequestPath/a/b/../c", "/a/c")]
|
[InlineData("/RequestPath/a/b/../c", "/a/c")]
|
||||||
[InlineData("/RequestPath/a/b/./c", "/a/b/c")]
|
[InlineData("/RequestPath/a/b/./c", "/a/b/c")]
|
||||||
public async Task Request_WithNavigation_Removed(string input, string expectedPath)
|
public async Task Request_WithNavigation_Removed(string input, string expectedPath)
|
||||||
|
|
@ -60,6 +61,7 @@ namespace Microsoft.AspNetCore.Server.IIS.FunctionalTests.InProcess
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalTheory]
|
[ConditionalTheory]
|
||||||
|
[RequiresNewHandler]
|
||||||
[InlineData("/RequestPath/a/b/%2E%2E/c", "/a/c")]
|
[InlineData("/RequestPath/a/b/%2E%2E/c", "/a/c")]
|
||||||
[InlineData("/RequestPath/a/b/%2E/c", "/a/b/c")]
|
[InlineData("/RequestPath/a/b/%2E/c", "/a/b/c")]
|
||||||
public async Task Request_WithEscapedNavigation_Removed(string input, string expectedPath)
|
public async Task Request_WithEscapedNavigation_Removed(string input, string expectedPath)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue