Remove HttpEndpoint_ExtremelyLongPath_HandlesGracefully test per reviewer feedback

Co-authored-by: sfmskywalker <938393+sfmskywalker@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-12-02 17:23:04 +00:00
parent 1f5c3351be
commit 0a337fe251

View file

@ -43,24 +43,6 @@ public class HttpEndpointSecurityAndEdgeCasesTests(App app) : AppComponentTest(a
Assert.Equal("File upload successful", responseContent);
}
[Fact]
public async Task HttpEndpoint_ExtremelyLongPath_HandlesGracefully()
{
// Arrange
var client = WorkflowServer.CreateHttpWorkflowClient();
var longUserId = new string('a', 1000); // Very long user ID
var longOrderId = new string('b', 1000); // Very long order ID
// Act & Assert - Should not crash, might return 404 or handle gracefully
var response = await client.GetAsync($"test/users/{longUserId}/orders/{longOrderId}");
// The exact response depends on server configuration, but it shouldn't crash
Assert.True(response.StatusCode == HttpStatusCode.NotFound ||
response.StatusCode == HttpStatusCode.BadRequest ||
response.StatusCode == HttpStatusCode.RequestUriTooLong ||
response.StatusCode == HttpStatusCode.OK);
}
[Fact]
public async Task HttpEndpoint_MalformedMultipartData_HandlesGracefully()
{